-
Notifications
You must be signed in to change notification settings - Fork 13
/
level.go
121 lines (111 loc) · 2.77 KB
/
level.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package opslevel
import (
"fmt"
"github.com/hasura/go-graphql-client"
)
type Level struct {
Alias string
Description string `json:"description,omitempty"`
Id ID `json:"id"`
Index int
Name string
}
type LevelConnection struct {
Nodes []Level
PageInfo PageInfo
TotalCount int
}
func (conn *LevelConnection) Hydrate(client *Client) error {
var q struct {
Account struct {
Rubric struct {
Levels LevelConnection `graphql:"levels(after: $after, first: $first)"`
}
}
}
v := PayloadVariables{
"first": client.pageSize,
}
q.Account.Rubric.Levels.PageInfo = conn.PageInfo
for q.Account.Rubric.Levels.PageInfo.HasNextPage {
v["after"] = q.Account.Rubric.Levels.PageInfo.End
if err := client.Query(&q, v); err != nil {
return err
}
conn.Nodes = append(conn.Nodes, q.Account.Rubric.Levels.Nodes...)
}
return nil
}
func (client *Client) CreateLevel(input LevelCreateInput) (*Level, error) {
var m struct {
Payload struct {
Level Level
Errors []OpsLevelErrors
} `graphql:"levelCreate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("LevelCreate"))
return &m.Payload.Level, HandleErrors(err, m.Payload.Errors)
}
func (client *Client) GetLevel(id ID) (*Level, error) {
var q struct {
Account struct {
Level Level `graphql:"level(id: $id)"`
}
}
v := PayloadVariables{
"id": id,
}
err := client.Query(&q, v, WithName("LevelGet"))
if q.Account.Level.Id == "" {
err = graphql.Errors{graphql.Error{
Message: fmt.Sprintf("level with ID '%s' not found", id),
Path: []any{"account", "level"},
}}
}
return &q.Account.Level, HandleErrors(err, nil)
}
func (client *Client) ListLevels() ([]Level, error) {
var q struct {
Account struct {
Rubric struct {
Levels LevelConnection
}
}
}
if err := client.Query(&q, nil); err != nil {
return q.Account.Rubric.Levels.Nodes, err
}
if err := q.Account.Rubric.Levels.Hydrate(client); err != nil {
return q.Account.Rubric.Levels.Nodes, err
}
return q.Account.Rubric.Levels.Nodes, nil
}
func (client *Client) UpdateLevel(input LevelUpdateInput) (*Level, error) {
var m struct {
Payload struct {
Level Level
Errors []OpsLevelErrors
} `graphql:"levelUpdate(input: $input)"`
}
v := PayloadVariables{
"input": input,
}
err := client.Mutate(&m, v, WithName("LevelUpdate"))
return &m.Payload.Level, HandleErrors(err, m.Payload.Errors)
}
func (client *Client) DeleteLevel(id ID) error {
var m struct {
Payload struct {
Id ID `graphql:"deletedLevelId"`
Errors []OpsLevelErrors
} `graphql:"levelDelete(input: $input)"`
}
v := PayloadVariables{
"input": LevelDeleteInput{Id: id},
}
err := client.Mutate(&m, v, WithName("LevelDelete"))
return HandleErrors(err, m.Payload.Errors)
}