git-bug/vendor/github.com/vektah/gqlgen/codegen/model.go

16 lines
180 B
Go
Raw Normal View History

package codegen
type Model struct {
*NamedType
Fields []ModelField
}
type ModelField struct {
*Type
GQLName string
GoVarName string
GoFKName string
GoFKType string
}