Skip to content

inputName

PropertyValue
Config nameinputName
Default severity
ContextSchema
In recommendedNo

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