forked from 99designs/gqlgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models_gen.go
51 lines (41 loc) · 815 Bytes
/
models_gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package todo
import (
fmt "fmt"
io "io"
strconv "strconv"
)
// Passed to createTodo to create a new todo
type TodoInput struct {
Text string `json:"text"`
Done *bool `json:"done"`
}
type Role string
const (
RoleAdmin Role = "ADMIN"
RoleOwner Role = "OWNER"
)
func (e Role) IsValid() bool {
switch e {
case RoleAdmin, RoleOwner:
return true
}
return false
}
func (e Role) String() string {
return string(e)
}
func (e *Role) UnmarshalGQL(v interface{}) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = Role(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid Role", str)
}
return nil
}
func (e Role) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}