github.com/operandinc/gqlgen@v0.16.1/codegen/testserver/singlefile/scalar_default.graphql (about)

     1  extend type Query {
     2      defaultScalar(arg: DefaultScalarImplementation! = "default"): DefaultScalarImplementation!
     3  }
     4  
     5  """ This doesnt have an implementation in the typemap, so it should act like a string """
     6  scalar DefaultScalarImplementation
     7  
     8  type EmbeddedDefaultScalar {
     9      value: DefaultScalarImplementation
    10  }