@@ -312,7 +312,7 @@ types which implement this Interface are guaranteed to implement those fields.
312
312
Whenever a field claims it will return an Interface type , it will return a valid
313
313
implementing Object type during execution .
314
314
315
- A `Union ` defines a list of possible types ; similar to interfaces , whenever the
315
+ A `Union ` defines a set of possible types ; similar to interfaces , whenever the
316
316
type system claims a union will be returned , one of the possible types will be
317
317
returned .
318
318
@@ -1409,7 +1409,7 @@ A valid operation includes typed fragments (in this example, inline fragments):
1409
1409
```
1410
1410
1411
1411
Union members may be defined with an optional leading `|` character to aid
1412
- formatting when representing a longer list of possible types :
1412
+ formatting when representing a longer set of possible types :
1413
1413
1414
1414
```raw graphql example
1415
1415
union SearchResult =
@@ -1474,7 +1474,7 @@ EnumValuesDefinition : { EnumValueDefinition+ }
1474
1474
EnumValueDefinition : Description ? EnumValue Directives [Const ]?
1475
1475
1476
1476
GraphQL Enum types , like Scalar types , also represent leaf values in a GraphQL
1477
- type system . However Enum types describe the list of possible values .
1477
+ type system . However Enum types describe the set of possible values .
1478
1478
1479
1479
Enums are not references for a numeric value , but are unique values in their own
1480
1480
right . They may serialize as a string : the name of the represented value .
@@ -1492,7 +1492,7 @@ enum Direction {
1492
1492
1493
1493
**Result Coercion **
1494
1494
1495
- GraphQL services must return one of the defined list of possible values . If a
1495
+ GraphQL services must return one of the defined set of possible values . If a
1496
1496
reasonable coercion is not possible they must raise a _field error_ .
1497
1497
1498
1498
**Input Coercion **
@@ -1988,7 +1988,7 @@ fragment SomeFragment on SomeType {
1988
1988
```
1989
1989
1990
1990
Directive locations may be defined with an optional leading `|` character to aid
1991
- formatting when representing a longer list of possible locations :
1991
+ formatting when representing a longer set of possible locations :
1992
1992
1993
1993
```raw graphql example
1994
1994
directive @example on
0 commit comments