-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain-4.go
285 lines (266 loc) · 5.34 KB
/
main-4.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package main
import (
"context"
"encoding/json"
"fmt"
"reflect"
graphql "github.com/graph-gophers/graphql-go"
)
// This schema defines a note-taking application with two
// simple graphs: users and notes.
const schemaString = `
schema {
query: Query
}
# Define users:
type User {
userID: ID!
username: String!
emoji: String!
notes: [Note!]!
}
# Define notes:
type Note {
noteID: ID!
data: String!
}
type Query {
# List users:
users: [User!]!
# Get user:
user(userID: ID!): User!
# List notes:
notes(userID: ID!): [Note!]!
# Get note:
note(noteID: ID!): Note!
}
`
type User struct {
UserID graphql.ID
Username string
Emoji string
Notes []Note
}
type Note struct {
NoteID graphql.ID
Data string
}
// Define mock data:
var users = []User{
{
UserID: graphql.ID("u-001"),
Username: "nyxerys",
Emoji: "🇵🇹",
Notes: []Note{
{NoteID: "n-001", Data: "Olá Mundo!"},
{NoteID: "n-002", Data: "Olá novamente, mundo!"},
{NoteID: "n-003", Data: "Olá, escuridão!"},
},
}, {
UserID: graphql.ID("u-002"),
Username: "rdnkta",
Emoji: "🇺🇦",
Notes: []Note{
{NoteID: "n-004", Data: "Привіт Світ!"},
{NoteID: "n-005", Data: "Привіт ще раз, світ!"},
{NoteID: "n-006", Data: "Привіт, темрява!"},
},
}, {
UserID: graphql.ID("u-003"),
Username: "username_ZAYDEK",
Emoji: "🇺🇸",
Notes: []Note{
{NoteID: "n-007", Data: "Hello, world!"},
{NoteID: "n-008", Data: "Hello again, world!"},
{NoteID: "n-009", Data: "Hello, darkness!"},
},
},
}
type RootResolver struct{}
func (r *RootResolver) Users() ([]User, error) {
return users, nil
}
func (r *RootResolver) User(args struct{ UserID graphql.ID }) (User, error) {
// Find user:
for _, user := range users {
if args.UserID == user.UserID {
// Found user:
return user, nil
}
}
// Didn’t find user:
return User{}, nil
}
func (r *RootResolver) Notes(args struct{ UserID graphql.ID }) ([]Note, error) {
// Find user to find notes:
user, err := r.User(args) // We can reuse resolvers.
if reflect.ValueOf(user).IsZero() || err != nil {
// Didn’t find user:
return nil, err
}
// Found user; return notes:
return user.Notes, nil
}
func (r *RootResolver) Note(args struct{ NoteID graphql.ID }) (Note, error) {
// Find note:
for _, user := range users {
for _, note := range user.Notes {
if args.NoteID == note.NoteID {
// Found note:
return note, nil
}
}
}
// Didn’t find note:
return Note{}, nil
}
var (
// We can pass an option to the schema so we don’t need to
// write a method to access each type’s field:
opts = []graphql.SchemaOpt{graphql.UseFieldResolvers()}
Schema = graphql.MustParseSchema(schemaString, &RootResolver{}, opts...)
)
func main() {
ctx := context.Background()
type ClientQuery struct {
OpName string
Query string
Variables map[string]interface{}
}
q1 := ClientQuery{
OpName: "Users",
Query: `query Users {
users {
userID
username
emoji
}
}`,
Variables: nil,
}
resp1 := Schema.Exec(ctx, q1.Query, q1.OpName, q1.Variables)
json1, err := json.MarshalIndent(resp1, "", "\t")
if err != nil {
panic(err)
}
fmt.Println(string(json1))
// Expected output:
//
// {
// "data": {
// "users": [
// {
// "userID": "u-001",
// "username": "nyxerys",
// "emoji": "🇵🇹"
// },
// {
// "userID": "u-002",
// "username": "rdnkta",
// "emoji": "🇺🇦"
// },
// {
// "userID": "u-003",
// "username": "username_ZAYDEK",
// "emoji": "🇺🇸"
// }
// ]
// }
// }
q2 := ClientQuery{
OpName: "User",
Query: `query User($userID: ID!) {
user(userID: $userID) {
userID
username
emoji
}
}`,
Variables: map[string]interface{}{
"userID": "u-001",
},
}
resp2 := Schema.Exec(ctx, q2.Query, q2.OpName, q2.Variables)
json2, err := json.MarshalIndent(resp2, "", "\t")
if err != nil {
panic(err)
}
fmt.Println(string(json2))
// Expected output:
//
// {
// "data": {
// "user": {
// "userID": "u-001",
// "username": "nyxerys",
// "emoji": "🇵🇹"
// }
// }
// }
q3 := ClientQuery{
OpName: "Notes",
Query: `query Notes($userID: ID!) {
notes(userID: $userID) {
noteID
data
}
}`,
Variables: map[string]interface{}{
"userID": "u-001",
},
}
resp3 := Schema.Exec(ctx, q3.Query, q3.OpName, q3.Variables)
json3, err := json.MarshalIndent(resp3, "", "\t")
if err != nil {
panic(err)
}
fmt.Println(string(json3))
// Expected output:
//
// {
// "data": {
// "notes": [
// {
// "noteID": "n-001",
// "data": "Olá Mundo!"
// },
// {
// "noteID": "n-002",
// "data": "Olá novamente, mundo!"
// },
// {
// "noteID": "n-003",
// "data": "Olá, escuridão!"
// }
// ]
// }
// }
q4 := ClientQuery{
OpName: "Note",
Query: `query Note($noteID: ID!) {
note(noteID: $noteID) {
noteID
data
}
}`,
Variables: map[string]interface{}{
"noteID": "n-001",
},
}
resp4 := Schema.Exec(ctx, q4.Query, q4.OpName, q4.Variables)
json4, err := json.MarshalIndent(resp4, "", "\t")
if err != nil {
panic(err)
}
fmt.Println(string(json4))
// Expected output:
//
// {
// "data": {
// "note": {
// "noteID": "n-001",
// "data": "Olá Mundo!"
// }
// }
// }
}