model.go

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