/**
 * Eslint GraphQL extends.
 *
 * @see [Eslint GraphQL extends](https://the-guild.dev/graphql/eslint/docs/configs)
 */
export type GraphqlExtends =
  | 'plugin:@graphql-eslint/operations-all'
  | 'plugin:@graphql-eslint/operations-recommended'
  | 'plugin:@graphql-eslint/relay'
  | 'plugin:@graphql-eslint/schema-all'
  | 'plugin:@graphql-eslint/schema-recommended';
