aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/github.com/99designs/gqlgen/codegen/model.go
blob: bcdc8703a6c49fa87c955c9b142811f10c202da9 (plain) (tree)
1
2
3
4
5
6
7





                                
                                









                          
package codegen

type Model struct {
	*NamedType
	Description string
	Fields      []ModelField
	Implements  []*NamedType
}

type ModelField struct {
	*Type
	GQLName     string
	GoFieldName string
	GoFKName    string
	GoFKType    string
	Description string
}