Skip to content

inputName

Property Value
Config name inputName
Default severity
Context Schema
In recommended No

Require configurable suffix on input types.

# ❌ Bad — input type without "Input" suffix
input CreateUser {
name: String!
}
# ✅ Good — input type with "Input" suffix
input CreateUserInput {
name: String!
}
extensions:
graphql-analyzer:
lint:
rules:
inputName: warn