Files
genqlient/generate/testdata/QueryWithEnums.graphql.go
T
2020-07-15 17:35:47 -07:00

12 lines
176 B
Go

type Response struct {
User *struct {
Roles []role `json:"roles"`
} `json:"user"`
}
type role string
const (
studentRole role = "STUDENT"
teacherRole role = "TEACHER"
)