From 5de1c62ab4ece933dc9d0574a1b51f3ddab870fd Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Mon, 3 Oct 2022 07:33:22 -0400 Subject: [PATCH] update argument names, fixes #4123 --- guides/fields/arguments.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guides/fields/arguments.md b/guides/fields/arguments.md index 1bf46e9ec3b..a68fe0d8406 100644 --- a/guides/fields/arguments.md +++ b/guides/fields/arguments.md @@ -171,8 +171,8 @@ end Only certain types are valid for arguments: -- {{ "GraphQL::ScalarType" | api_doc }}, including built-in scalars (string, int, float, boolean, ID) -- {{ "GraphQL::EnumType" | api_doc }} -- {{ "GraphQL::InputObjectType" | api_doc }}, which allows key-value pairs as input -- {{ "GraphQL::ListType" | api_doc }}s of a valid input type -- {{ "GraphQL::NonNullType" | api_doc }}s of a valid input type +- {{ "GraphQL::Schema::Scalar" | api_doc }}, including built-in scalars (string, int, float, boolean, ID) +- {{ "GraphQL::Schema::Enum" | api_doc }} +- {{ "GraphQL::Schema::InputObject" | api_doc }}, which allows key-value pairs as input +- {{ "GraphQL::Schema::List" | api_doc }}s of a valid input type, configured using `[...]` +- {{ "GraphQL::Schema::NonNull" | api_doc }}s of a valid input type (arguments are non-null by default; use `required: false` to make optional arguments)