diff --git a/docs/operators/index.md b/docs/operators/index.md index 9b610c4364..78c1f45020 100644 --- a/docs/operators/index.md +++ b/docs/operators/index.md @@ -7,9 +7,14 @@ Tailcall DSL builds on your existing GraphQL knowledge by allowing the addition Here is a list of all the custom operators supported by Tailcall: -- [@server](server.md) The `@server` directive, when applied at the schema level, offers a comprehensive set of server configurations. It dictates how the server behaves and helps tune tailcall for various use-cases. -- [@upstream](upstream.md) The `upstream` directive allows you to control various aspects of the upstream server connection. This includes settings like connection timeouts, keep-alive intervals, and more. If not specified, default values are used. -- [@http](http.md) The `@http` operator indicates that a field or node is backed by a REST API. -- [@modify](modify.md) The `@modify` operator in GraphQL allows you to change field or node attributes in your schema. -- [@addField](add-field.md) The @addField operator simplifies data structures and queries by adding a field that inlines or flattens a nested field or node within your schema. -- [@const](const.md) The `@const` operators allows us to embed a constant response for the schema. +Certainly! Here's the table with hyperlinks added back to the operator names: + +| Operator Name | Description | +| ------------------------- | ------------------------------------------------------------------------------------------------------------ | +| [@addField](add-field.md) | Simplifies data structures and queries by adding, inlining, or flattening fields or nodes within the schema. | +| [@const](const.md) | Allows embedding of a constant response within the schema. | +| [@http](http.md) | Resolves a field or node by a REST API. | +| [@graphQL](graphql.md) | Resolves a field or node by a GraphQL API. | +| [@modify](modify.md) | Enables changes to attributes of fields or nodes in the schema. | +| [@server](server.md) | Provides server configurations for behavior tuning and tailcall optimization in various use-cases. | +| [@upstream](upstream.md) | Controls aspects of the upstream server connection, including timeouts and keep-alive settings. |