-
|
Hello! I need to write textual documentation for custom queries/mutations, but did not found a way to do in in config, passed to keystone.extendGraphQLSchema. I’m expecting an option like Finally, i need it to be reflected in GraphiQL UI for custom query or mutation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Where you write descriptions for queries and mutations in schema extensions depends on how you're extending your schema. If you're using the |
Beta Was this translation helpful? Give feedback.
Where you write descriptions for queries and mutations in schema extensions depends on how you're extending your schema. If you're using the
graphQLSchemaExtensionfunction that accepts SDL strings - see this example:keystone/examples/extend-graphql-schema/custom-schema.ts
Line 7 in f0e9193