model.go

 1package codegen
 2
 3type Model struct {
 4	*NamedType
 5	Description string
 6	Fields      []ModelField
 7}
 8
 9type ModelField struct {
10	*Type
11	GQLName     string
12	GoFieldName string
13	GoFKName    string
14	GoFKType    string
15	Description string
16}