github.com/mstephano/gqlgen-schemagen@v0.0.0-20230113041936-dd2cd4ea46aa/integration/testomitempty.graphql (about) 1 type RemoteModelWithOmitempty { 2 newDesc: String 3 } 4 5 type DummyUserWithRemoteNamedBasics { 6 newString: String! 7 newInt: Int! 8 newInt32: Int! 9 newInt64: Int! 10 newBool: Boolean! 11 newFloat64: Float! 12 newID: ID! 13 14 ### BELOW ARE NOT SUPPORTED AS BASIC - MUST CREATE SCALAR WITH MARSHALFUNC AND UNMARSHARLFUNC ### 15 #newInt8: Int! 16 #newInt16: Int! 17 #newFloat32: Float! 18 newUint: Uint! # scalar created for uint 19 #newUint8: Int! 20 #newUint16: Int! 21 #newUint32: Int! 22 #newUint64: Int! 23 } 24 25 scalar Uint