From 18ff5d29b0dcfb647b760d7053ac199de59a5c55 Mon Sep 17 00:00:00 2001 From: Elliot Lintz <45725915+Elliot67@users.noreply.github.com> Date: Tue, 30 Aug 2022 22:41:00 +0200 Subject: [PATCH] docs: fix graphql `disable` property explanation --- docs/graphql/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/graphql/overview.mdx b/docs/graphql/overview.mdx index cbc31b8c19..9b626bab25 100644 --- a/docs/graphql/overview.mdx +++ b/docs/graphql/overview.mdx @@ -22,7 +22,7 @@ At the top of your Payload config you can define all the options to manage Graph | `queries` | Any custom Queries to be added in addition to what Payload provides. [More](/docs/graphql/extending) | | `maxComplexity` | A number used to set the maximum allowed complexity allowed by requests [More](/docs/graphql/overview#query-complexity-limits) | | `disablePlaygroundInProduction` | A boolean that if false will enable the graphQL playground, defaults to true. [More](/docs/graphql/overview#graphql-playground) | -| `disable` | A boolean that if false will disable the graphQL entirely, defaults to false. | +| `disable` | A boolean that if true will disable the graphQL entirely, defaults to false. | | `schemaOutputFile` | A string for the file path used by the generate schema command. Defaults to `graphql.schema` next to `payload.config.ts` [More](/docs/graphql/graphql-schema) | ## Collections