github.com/codyleyhan/gqlgen@v0.4.4/codegen/testserver/models-gen.go (about) 1 // Code generated by github.com/99designs/gqlgen, DO NOT EDIT. 2 3 package testserver 4 5 type InnerInput struct { 6 ID int `json:"id"` 7 } 8 type InnerObject struct { 9 ID int `json:"id"` 10 } 11 type Keywords struct { 12 Break string `json:"break"` 13 Default string `json:"default"` 14 Func string `json:"func"` 15 Interface string `json:"interface"` 16 Select string `json:"select"` 17 Case string `json:"case"` 18 Defer string `json:"defer"` 19 Go string `json:"go"` 20 Map string `json:"map"` 21 Struct string `json:"struct"` 22 Chan string `json:"chan"` 23 Else string `json:"else"` 24 Goto string `json:"goto"` 25 Package string `json:"package"` 26 Switch string `json:"switch"` 27 Const string `json:"const"` 28 Fallthrough string `json:"fallthrough"` 29 If string `json:"if"` 30 Range string `json:"range"` 31 Type string `json:"type"` 32 Continue string `json:"continue"` 33 For string `json:"for"` 34 Import string `json:"import"` 35 Return string `json:"return"` 36 Var string `json:"var"` 37 } 38 type OuterInput struct { 39 Inner InnerInput `json:"inner"` 40 } 41 type OuterObject struct { 42 Inner InnerObject `json:"inner"` 43 }