codegen/testserver/followschema/scalar_default.graphql (8 lines of code) (raw):
extend type Query {
defaultScalar(arg: DefaultScalarImplementation! = "default"): DefaultScalarImplementation!
}
""" This doesnt have an implementation in the typemap, so it should act like a string """
scalar DefaultScalarImplementation
type EmbeddedDefaultScalar {
value: DefaultScalarImplementation
}