Skip to Content
This is documentation for v4 of the plugin. For v3 click here.
ESLGraphQL-ESLint
Rulesunique-fragment-name

unique-fragment-name

✅ The "extends": "plugin:@graphql-eslint/operations-recommended" property in a configuration file enables this rule.

  • Category: Operations
  • Rule name: @graphql-eslint/unique-fragment-name
  • Requires GraphQL Schema: false ℹ️
  • Requires GraphQL Operations: true ℹ️
Enforce unique fragment names across your project.

Usage Examples

Incorrect

# eslint @graphql-eslint/unique-fragment-name: 'error' # user.fragment.graphql fragment UserFields on User { id name fullName } # user-fields.graphql fragment UserFields on User { id }

Correct

# eslint @graphql-eslint/unique-fragment-name: 'error' # user.fragment.graphql fragment AllUserFields on User { id name fullName } # user-fields.graphql fragment UserFields on User { id }

Resources

Last updated on