github.com/xzyfer/gqlgen@v0.7.2/codegen/enum.go (about)

     1  package codegen
     2  
     3  type Enum struct {
     4  	*NamedType
     5  	Description string
     6  	Values      []EnumValue
     7  }
     8  
     9  type EnumValue struct {
    10  	Name        string
    11  	Description string
    12  }