-
Notifications
You must be signed in to change notification settings - Fork 0
/
ast.go
378 lines (297 loc) · 5.74 KB
/
ast.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
package ast
type Location struct {
Column int
Line int
}
type Document struct {
Operations []*Operation
Fragments []*Fragment
}
func NewDocument() *Document {
return &Document{
Operations: []*Operation{},
Fragments: []*Fragment{},
}
}
type Fragment struct {
Name string
TypeCondition string
Directives []*Directive
SelectionSet []Selection
Location Location
}
type OperationType int
const (
Query OperationType = iota
Mutation
Subscription
)
type Operation struct {
OperationType OperationType
Name string
Variables []*Variable
Directives []*Directive
SelectionSet []Selection
Location Location
}
func NewOperation(ot OperationType) *Operation {
return &Operation{
OperationType: ot,
}
}
type Variable struct {
Name string
Type Type
DefaultValue Value
Location Location
}
type Argument struct {
Name string
Value Value
Location Location
}
type Directive struct {
Name string
Arguments []*Argument
Location Location
}
type TypeKind int
const (
Named TypeKind = iota
List
NonNull
)
type Type interface {
Kind() TypeKind
GetValue() interface{}
}
type NamedType struct {
Name string
Location Location
}
func (t *NamedType) Kind() TypeKind {
return Named
}
func (t *NamedType) GetValue() interface{} {
return t.Name
}
type ListType struct {
Type
Location Location
}
func (t *ListType) Kind() TypeKind {
return List
}
func (t *ListType) GetValue() interface{} {
return t.Type
}
type NonNullType struct {
Type
Location Location
}
func (t *NonNullType) Kind() TypeKind {
return NonNull
}
func (t *NonNullType) GetValue() interface{} {
return t.Type
}
// SELECTIONSET
type SelectionKind int
const (
FieldSelectionKind SelectionKind = iota
FragmentSpreadSelectionKind
InlineFragmentSelectionKind
)
type Selection interface {
Kind() SelectionKind
GetDirectives() []*Directive
}
type Fields []*Field
type Field struct {
Alias string
Name string
ParentType string
Arguments []*Argument
Directives []*Directive
SelectionSet []Selection
Location Location
}
func (f *Field) Kind() SelectionKind {
return FieldSelectionKind
}
func (f *Field) GetDirectives() []*Directive {
return f.Directives
}
type FragmentSpread struct {
Name string
Directives []*Directive
Location Location
}
func (fs *FragmentSpread) Kind() SelectionKind {
return FragmentSpreadSelectionKind
}
func (fs *FragmentSpread) GetDirectives() []*Directive {
return fs.Directives
}
type InlineFragment struct {
TypeCondition string
Directives []*Directive
SelectionSet []Selection
Location Location
}
func (inf *InlineFragment) Kind() SelectionKind {
return InlineFragmentSelectionKind
}
func (inf *InlineFragment) GetDirectives() []*Directive {
return inf.Directives
}
// VALUES
type ValueKind int
const (
VariableValueKind ValueKind = iota
IntValueKind
FloatValueKind
BooleanValueKind
StringValueKind
NullValueKind
EnumValueKind
ListValueKind
ObjectValueKind
ObjectFieldValueKind
)
type Value interface {
GetValue() interface{}
Kind() ValueKind
GetLocation() Location
}
type VariableValue struct {
Name string
Location Location
}
func (v *VariableValue) GetValue() interface{} {
return v.Name
}
func (v *VariableValue) Kind() ValueKind {
return VariableValueKind
}
func (v *VariableValue) GetLocation() Location {
return v.Location
}
type IntValue struct {
Value string
Location Location
}
func (v *IntValue) GetValue() interface{} {
return v.Value
}
func (v *IntValue) Kind() ValueKind {
return IntValueKind
}
func (v *IntValue) GetLocation() Location {
return v.Location
}
type FloatValue struct {
Value string
Location Location
}
func (v *FloatValue) GetValue() interface{} {
return v.Value
}
func (v *FloatValue) Kind() ValueKind {
return FloatValueKind
}
func (v *FloatValue) GetLocation() Location {
return v.Location
}
type StringValue struct {
Value string
Location Location
}
func (v *StringValue) GetValue() interface{} {
return v.Value
}
func (v *StringValue) Kind() ValueKind {
return StringValueKind
}
func (v *StringValue) GetLocation() Location {
return v.Location
}
type BooleanValue struct {
Value string
Location Location
}
func (v *BooleanValue) GetValue() interface{} {
return v.Value
}
func (v *BooleanValue) Kind() ValueKind {
return BooleanValueKind
}
func (v *BooleanValue) GetLocation() Location {
return v.Location
}
type NullValue struct {
Value string
Location Location
}
func (v *NullValue) GetValue() interface{} {
return v.Value
}
func (v *NullValue) Kind() ValueKind {
return NullValueKind
}
func (v *NullValue) GetLocation() Location {
return v.Location
}
type EnumValue struct {
Value string
Location Location
}
func (v *EnumValue) GetValue() interface{} {
return v.Value
}
func (v *EnumValue) Kind() ValueKind {
return EnumValueKind
}
func (v *EnumValue) GetLocation() Location {
return v.Location
}
type ListValue struct {
Values []Value
Location Location
}
func (v *ListValue) GetValue() interface{} {
return v.Values
}
func (v *ListValue) Kind() ValueKind {
return ListValueKind
}
func (v *ListValue) GetLocation() Location {
return v.Location
}
type ObjectValue struct {
Fields []*ObjectFieldValue
Location Location
}
func (v *ObjectValue) GetValue() interface{} {
return v.Fields
}
func (v *ObjectValue) Kind() ValueKind {
return ObjectValueKind
}
func (v *ObjectValue) GetLocation() Location {
return v.Location
}
type ObjectFieldValue struct {
Name string
Value Value
Location Location
}
func (v *ObjectFieldValue) GetValue() interface{} {
return v.Value
}
func (v *ObjectFieldValue) Kind() ValueKind {
return ObjectFieldValueKind
}
func (v *ObjectFieldValue) GetLocation() Location {
return v.Location
}