...

Text file src/github.com/99designs/gqlgen/codegen/testserver/followschema/mutation_with_custom_scalar.graphql

Documentation: github.com/99designs/gqlgen/codegen/testserver/followschema

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

View as plain text