github.com/Capventis/gqlgen@v0.7.2/codegen/model.go (about)

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