1extend 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 """ 6scalar DefaultScalarImplementation 7 8type EmbeddedDefaultScalar { 9 value: DefaultScalarImplementation 10}