require-type-pattern-with-oneof
- Category: 
Schema - Rule name: 
@graphql-eslint/require-type-pattern-with-oneof - Requires GraphQL Schema: 
falseℹ️ - Requires GraphQL Operations: 
falseℹ️ 
Usage Examples
Correct
# eslint @graphql-eslint/require-type-pattern-with-oneof: 'error'
 
type Mutation {
  doSomething: DoSomethingMutationResult!
}
 
interface Error {
  message: String!
}
 
type DoSomethingMutationResult @oneOf {
  ok: DoSomethingSuccess
  error: Error
}
 
type DoSomethingSuccess {
  # ...
}Resources
Last updated on