inputName
| Property | Value |
|---|---|
| Config name | inputName |
| Default severity | — |
| Context | Schema |
| In recommended | No |
What it checks
Section titled “What it checks”Require configurable suffix on input types.
Examples
Section titled “Examples”# ❌ Bad — input type without "Input" suffixinput CreateUser { name: String!}# ✅ Good — input type with "Input" suffixinput CreateUserInput { name: String!}Configuration
Section titled “Configuration”extensions: graphql-analyzer: lint: rules: inputName: warn