codegen/testserver/followschema/mutation_with_custom_scalar.graphql (10 lines of code) (raw):

extend type Mutation { updateSomething(input: SpecialInput!): String! } scalar Email input SpecialInput { nesting: NestedInput! } input NestedInput { field: Email! }