github.com/animeshon/gqlgen@v0.13.1-0.20210304133704-3a770431bb6d/codegen/testserver/mutation_with_custom_scalar.graphql (about)

     1  extend type Mutation {
     2      updateSomething(input: SpecialInput!): String!
     3  }
     4  
     5  scalar Email
     6  
     7  input SpecialInput {
     8      nesting: NestedInput!
     9  }
    10  
    11  input NestedInput {
    12      field: Email!
    13  }