From b1787ce652a08a47ed972e6a2cda70ffd2bbd628 Mon Sep 17 00:00:00 2001 From: Paulius Dambrauskas Date: Tue, 8 Oct 2024 09:44:53 +0300 Subject: [PATCH] Update docs for version 8 --- .../version-7.x.x/schema-generator/writing-schemas/arguments.md | 2 -- .../version-8.x.x/schema-generator/writing-schemas/arguments.md | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/versioned_docs/version-7.x.x/schema-generator/writing-schemas/arguments.md b/website/versioned_docs/version-7.x.x/schema-generator/writing-schemas/arguments.md index 83ca4456fa..175eb5f744 100644 --- a/website/versioned_docs/version-7.x.x/schema-generator/writing-schemas/arguments.md +++ b/website/versioned_docs/version-7.x.x/schema-generator/writing-schemas/arguments.md @@ -61,8 +61,6 @@ input WidgetInput { } ``` -If you want to disable this behaviour for one of your types, you can add `@GraphQLSkipInputSuffix` to your type. - Note that only fields are exposed in the input objects. Functions will only be available on the GraphQL output types. :::caution diff --git a/website/versioned_docs/version-8.x.x/schema-generator/writing-schemas/arguments.md b/website/versioned_docs/version-8.x.x/schema-generator/writing-schemas/arguments.md index 175eb5f744..83ca4456fa 100644 --- a/website/versioned_docs/version-8.x.x/schema-generator/writing-schemas/arguments.md +++ b/website/versioned_docs/version-8.x.x/schema-generator/writing-schemas/arguments.md @@ -61,6 +61,8 @@ input WidgetInput { } ``` +If you want to disable this behaviour for one of your types, you can add `@GraphQLSkipInputSuffix` to your type. + Note that only fields are exposed in the input objects. Functions will only be available on the GraphQL output types. :::caution