File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -130,14 +130,14 @@ Value[Const] :
130
130
- StringValue
131
131
- BooleanValue
132
132
- EnumValue
133
- - ArrayValue [ ?Const]
133
+ - ListValue [ ?Const]
134
134
- ObjectValue[ ?Const]
135
135
136
136
BooleanValue : one of ` true ` ` false `
137
137
138
138
EnumValue : Name but not ` true ` , ` false ` or ` null `
139
139
140
- ArrayValue [ Const] :
140
+ ListValue [ Const] :
141
141
- [ ]
142
142
- [ Value[ ?Const] + ]
143
143
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ Value[Const] :
582
582
- StringValue
583
583
- BooleanValue
584
584
- EnumValue
585
- - ArrayValue [ ?Const]
585
+ - ListValue [ ?Const]
586
586
- ObjectValue[ ?Const]
587
587
588
588
Field and directive arguments accept input values of various literal primitives;
@@ -664,7 +664,7 @@ does not supply a value literal to represent the concept {null}.
664
664
665
665
#### List Value
666
666
667
- ArrayValue [ Const] :
667
+ ListValue [ Const] :
668
668
- [ ]
669
669
- [ Value[ ?Const] + ]
670
670
@@ -676,11 +676,11 @@ commas do not represent missing values.
676
676
677
677
** Semantics**
678
678
679
- ArrayValue : [ ]
679
+ ListValue : [ ]
680
680
681
681
* Return a new empty list value.
682
682
683
- ArrayValue : [ Value+ ]
683
+ ListValue : [ Value+ ]
684
684
685
685
* Let {inputList} be a new empty list value.
686
686
* For each {Value+}
Original file line number Diff line number Diff line change @@ -662,7 +662,7 @@ type declared by the input field.
662
662
663
663
A GraphQL list is a special collection type which declares the type of each
664
664
item in the List (referred to as the * item type* of the list). List values are
665
- serialized as ordered lists, where each item in the array is serialized as per
665
+ serialized as ordered lists, where each item in the list is serialized as per
666
666
the item type. To denote that a field uses a List type the item type is wrapped
667
667
in square brackets like this: ` pets: [Pet] ` .
668
668
You can’t perform that action at this time.
0 commit comments