no-root-type
💡 This rule provides suggestions
- Category: 
Schema - Rule name: 
@graphql-eslint/no-root-type - Requires GraphQL Schema: 
trueℹ️ - Requires GraphQL Operations: 
falseℹ️ 
Usage Examples
Incorrect
# eslint @graphql-eslint/no-root-type: ['error', { disallow: ['mutation', 'subscription'] }]
 
type Mutation {
  createUser(input: CreateUserInput!): User!
}Correct
# eslint @graphql-eslint/no-root-type: ['error', { disallow: ['mutation', 'subscription'] }]
 
type Query {
  users: [User!]!
}Config Schema
The schema defines the following properties:
disallow (array, required)
The elements of the array can contain the following enum values:
mutationsubscription
Additional restrictions:
- Minimum items: 
1 - Unique items: 
true 
Resources
Last updated on