File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1539,7 +1539,7 @@ input UserUniqueCondition @oneOf {
1539
1539
}
1540
1540
```
1541
1541
1542
- In schema introspection , the `__Type .oneOf ` field will return {true } for OneOf
1542
+ In schema introspection , the `__Type .isOneOf ` field will return {true } for OneOf
1543
1543
Input Objects , and {false } for all other Input Objects .
1544
1544
1545
1545
**Circular References **
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ type __Type {
151
151
# may be non-null for custom SCALAR, otherwise null.
152
152
specifiedByURL : String
153
153
# should be non-null for INPUT_OBJECT only
154
- oneOf : Boolean
154
+ isOneOf : Boolean
155
155
}
156
156
157
157
enum __TypeKind {
@@ -369,7 +369,7 @@ Fields\:
369
369
- `name ` must return a String .
370
370
- `description ` may return a String or {null }.
371
371
- `inputFields ` must return the set of input fields as a list of `__InputValue `.
372
- - `oneOf ` must return {true } when representing a OneOf Input Object , {false }
372
+ - `isOneOf ` must return {true } when representing a OneOf Input Object , {false }
373
373
otherwise .
374
374
- All other fields must return {null }.
375
375
You can’t perform that action at this time.
0 commit comments