require-nullable-fields-with-oneof
- Category:
Schema
- Rule name:
@graphql-eslint/require-nullable-fields-with-oneof
- Requires GraphQL Schema:
false
âšī¸ - Requires GraphQL Operations:
false
âšī¸
Require input
or type
fields to be non-nullable with @oneOf
directive.
Usage Examples
Incorrect
# eslint @graphql-eslint/require-nullable-fields-with-oneof: 'error'
input Input @oneOf {
foo: String!
b: Int
}
Correct
# eslint @graphql-eslint/require-nullable-fields-with-oneof: 'error'
input Input @oneOf {
foo: String
bar: Int
}