@@ -818,6 +818,9 @@ of rules must be adhered to by every Object type in a GraphQL schema.
818
818
characters {"__ "} (two underscores).
819
819
2 . The argument must accept a type where {IsInputType(argumentType)}
820
820
returns {true}.
821
+ 3 . If the field is a Oneof Field:
822
+ 1 . The field must be nullable.
823
+ 2 . The field must not have a default value.
821
824
3 . An object type may declare that it implements one or more unique interfaces.
822
825
4 . An object type must be a super-set of all interfaces it implements:
823
826
1 . Let this object type be {objectType}.
@@ -845,6 +848,8 @@ IsValidImplementation(type, implementedType):
845
848
2 . Let {implementedFieldType} be the return type of {implementedField}.
846
849
3 . {IsValidImplementationFieldType(fieldType, implementedFieldType)}
847
850
must be {true}.
851
+ 6 . {field} must be a Oneof Field if and only if {implementedField} is a
852
+ Oneof Field.
848
853
849
854
IsValidImplementationFieldType(fieldType, implementedFieldType):
850
855
1 . If {fieldType} is a Non-Null type:
@@ -917,6 +922,30 @@ May yield the result:
917
922
The type of an object field argument must be an input type (any type except an
918
923
Object, Interface, or Union type).
919
924
925
+ ** Oneof Fields**
926
+
927
+ Oneof Fields are a special variant of Object Type fields where the type system
928
+ asserts that exactly one of the field's arguments must be set and non-null, all
929
+ others being omitted. This is useful for representing situations where an input
930
+ may be one of many different options.
931
+
932
+ When using the type system definition language, the ` @oneOf ` directive is used
933
+ to indicate that a Field is a Oneof Field (and thus requires exactly one of its
934
+ arguments be provided):
935
+
936
+ ``` graphql
937
+ type Query {
938
+ findUser (
939
+ byID : ID
940
+ byUsername : String
941
+ byEmail : String
942
+ byRegistrationNumber : Int
943
+ ): User @oneOf
944
+ }
945
+ ```
946
+
947
+ In schema introspection, the `__Field.oneArgument` field will return {true} for
948
+ Oneof Fields , and {false } for all other Fields .
920
949
921
950
### Field Deprecation
922
951
@@ -1160,6 +1189,9 @@ Interface types have the potential to be invalid if incorrectly defined.
1160
1189
characters {"__" } (two underscores).
1161
1190
2. The argument must accept a type where {IsInputType (argumentType)}
1162
1191
returns {true }.
1192
+ 3. If the field is a Oneof Field :
1193
+ 1. The field must be nullable .
1194
+ 2. The field must not have a default value .
1163
1195
3. An interface type may declare that it implements one or more unique
1164
1196
interfaces , but may not implement itself .
1165
1197
4. An interface type must be a super -set of all interfaces it implements :
@@ -1880,7 +1912,8 @@ provide:
1880
1912
- the ` @deprecated ` directive if representing deprecated portions of the
1881
1913
schema;
1882
1914
- the ` @oneOf ` directive if representing types that require exactly one field
1883
- (i.e. Oneof Input Objects).
1915
+ (i.e. Oneof Input Objects) or fields that require exactly one argument (i.e.
1916
+ Oneof Fields).
1884
1917
1885
1918
** Custom Directives**
1886
1919
@@ -2048,11 +2081,14 @@ type ExampleType {
2048
2081
### @oneOf
2049
2082
2050
2083
``` graphql
2051
- directive @oneOf on INPUT_OBJECT
2084
+ directive @oneOf on INPUT_OBJECT | FIELD_DEFINITION
2052
2085
```
2053
2086
2054
2087
The `@oneOf ` directive is used within the type system definition language
2055
- to indicate an Input Object is a Oneof Input Object .
2088
+ to indicate :
2089
+
2090
+ - an Input Object is a Oneof Input Object , or
2091
+ - an Object Type 's Field is a Oneof Field .
2056
2092
2057
2093
```graphql example
2058
2094
input UserUniqueCondition @oneOf {
@@ -2061,3 +2097,14 @@ input UserUniqueCondition @oneOf {
2061
2097
organizationAndEmail : OrganizationAndEmailInput
2062
2098
}
2063
2099
```
2100
+
2101
+ ```graphql example
2102
+ type Query {
2103
+ findUser (
2104
+ byID : ID
2105
+ byUsername : String
2106
+ byEmail : String
2107
+ byRegistrationNumber : Int
2108
+ ): User @oneOf
2109
+ }
2110
+ ```
0 commit comments