Skip to content

Commit 5de1c62

Browse files
committed
update argument names, fixes rmosolgo#4123
1 parent e05dcbd commit 5de1c62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

guides/fields/arguments.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ end
171171

172172
Only certain types are valid for arguments:
173173

174-
- {{ "GraphQL::ScalarType" | api_doc }}, including built-in scalars (string, int, float, boolean, ID)
175-
- {{ "GraphQL::EnumType" | api_doc }}
176-
- {{ "GraphQL::InputObjectType" | api_doc }}, which allows key-value pairs as input
177-
- {{ "GraphQL::ListType" | api_doc }}s of a valid input type
178-
- {{ "GraphQL::NonNullType" | api_doc }}s of a valid input type
174+
- {{ "GraphQL::Schema::Scalar" | api_doc }}, including built-in scalars (string, int, float, boolean, ID)
175+
- {{ "GraphQL::Schema::Enum" | api_doc }}
176+
- {{ "GraphQL::Schema::InputObject" | api_doc }}, which allows key-value pairs as input
177+
- {{ "GraphQL::Schema::List" | api_doc }}s of a valid input type, configured using `[...]`
178+
- {{ "GraphQL::Schema::NonNull" | api_doc }}s of a valid input type (arguments are non-null by default; use `required: false` to make optional arguments)

0 commit comments

Comments
 (0)