Skip to content

Commit

Permalink
update table
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Dec 25, 2023
1 parent 3b350ed commit 18561ec
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions docs/operators/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |

0 comments on commit 18561ec

Please sign in to comment.