github.com/mstephano/gqlgen-schemagen@v0.0.0-20230113041936-dd2cd4ea46aa/integration/testomitempty/testmodel.go (about) 1 package testomitempty 2 3 type ( 4 NamedString string 5 NamedInt int 6 NamedInt8 int8 7 NamedInt16 int16 8 NamedInt32 int32 9 NamedInt64 int64 10 NamedBool bool 11 NamedFloat32 float32 12 NamedFloat64 float64 13 NamedUint uint 14 NamedUint8 uint8 15 NamedUint16 uint16 16 NamedUint32 uint32 17 NamedUint64 uint64 18 NamedID int 19 ) 20 21 type RemoteModelWithOmitempty struct { 22 Description string `json:"newDesc,omitempty"` 23 }