File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -944,8 +944,8 @@ type Query {
944
944
}
945
945
```
946
946
947
- In schema introspection, the `__Field.oneArgument ` field will return {true} for
948
- Oneof Fields , and {false } for all other Fields .
947
+ In schema introspection, the `__Field.oneOf ` field will return {true} for Oneof
948
+ Fields , and {false } for all other Fields .
949
949
950
950
### Field Deprecation
951
951
@@ -1499,7 +1499,7 @@ input UserUniqueCondition @oneOf {
1499
1499
}
1500
1500
```
1501
1501
1502
- In schema introspection, the `__Type.oneField ` field will return {true} for
1502
+ In schema introspection, the `__Type.oneOf ` field will return {true} for
1503
1503
Oneof Input Objects , and {false } for all other Input Objects .
1504
1504
1505
1505
**Circular References **
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ type __Type {
149
149
ofType : __Type
150
150
151
151
# should be non-null for INPUT_OBJECT only
152
- oneField : Boolean
152
+ oneOf : Boolean
153
153
}
154
154
155
155
type __Field {
@@ -159,7 +159,7 @@ type __Field {
159
159
type : __Type !
160
160
isDeprecated : Boolean !
161
161
deprecationReason : String
162
- oneArgument : Boolean !
162
+ oneOf : Boolean !
163
163
}
164
164
165
165
type __InputValue {
@@ -340,7 +340,7 @@ Fields
340
340
* `name ` must return a String .
341
341
* `description ` may return a String or {null }.
342
342
* `inputFields `: a list of `InputValue `.
343
- * `oneField ` must return {true } for Oneof Input Objects , {false } for all other
343
+ * `oneOf ` must return {true } for Oneof Input Objects , {false } for all other
344
344
Input Objects .
345
345
* All other fields must return {null }.
346
346
@@ -386,8 +386,7 @@ Fields
386
386
* `isDeprecated ` returns {true } if this field should no longer be used ,
387
387
otherwise {false }.
388
388
* `deprecationReason ` optionally provides a reason why this field is deprecated .
389
- * `oneArgument ` must return {true } for Oneof Fields , {false } for all other
390
- Fields .
389
+ * `oneOf ` must return {true } for Oneof Fields , {false } for all other Fields .
391
390
392
391
393
392
### The __InputValue Type
You can’t perform that action at this time.
0 commit comments