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