-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExample.expected.graphql
167 lines (144 loc) · 2.54 KB
/
Example.expected.graphql
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
"""
Use Input as Sort Conditions for the current Builder.
"""
directive @sortBy
on
| ARGUMENT_DEFINITION
directive @sortByOperatorChild
on
| INPUT_FIELD_DEFINITION
| SCALAR
directive @sortByOperatorField
on
| INPUT_FIELD_DEFINITION
| SCALAR
directive @sortByOperatorNullsFirst
on
| INPUT_FIELD_DEFINITION
| SCALAR
directive @sortByOperatorNullsLast
on
| INPUT_FIELD_DEFINITION
| SCALAR
directive @sortByOperatorSort
on
| INPUT_FIELD_DEFINITION
"""
Sort direction.
"""
enum SortByTypeDirection {
Asc
Desc
}
"""
Sort clause for `type Comment` (only one field allowed at a time).
"""
input SortByClauseComment {
"""
Field clause.
"""
text: SortByTypeDirection
@sortByOperatorSort
"""
Field clause.
"""
user: SortByClauseUser
@sortByOperatorChild
}
"""
Sort clause for `type User` (only one field allowed at a time).
"""
input SortByClauseUser {
"""
Field clause.
"""
id: SortByTypeDirection
@sortByOperatorSort
"""
Field clause.
"""
name: SortByTypeDirection
@sortByOperatorSort
}
"""
Sort clause for `input UsersSort` (only one field allowed at a time).
"""
input SortByClauseUsersSort {
"""
Field clause.
"""
id: SortByTypeDirection
@sortByOperatorSort
"""
Field clause.
"""
name: SortByTypeDirection
@sortByOperatorSort
}
"""
Sort clause for `type Comment` (only one field allowed at a time).
"""
input SortByRootComment {
"""
Field.
"""
field: SortByClauseComment
@sortByOperatorField
"""
NULLs first
"""
nullsFirst: SortByClauseComment
@sortByOperatorNullsFirst
"""
NULLs last
"""
nullsLast: SortByClauseComment
@sortByOperatorNullsLast
}
"""
Sort clause for `input UsersSort` (only one field allowed at a time).
"""
input SortByRootUsersSort {
"""
Field.
"""
field: SortByClauseUsersSort
@sortByOperatorField
"""
NULLs first
"""
nullsFirst: SortByClauseUsersSort
@sortByOperatorNullsFirst
"""
NULLs last
"""
nullsLast: SortByClauseUsersSort
@sortByOperatorNullsLast
}
type Comment {
text: String
user: User
@belongsTo
}
type Query {
"""
or `_` to generate type automatically 😛
"""
comments(
order: [SortByRootComment!]
@sortBy
): [Comment!]!
@all
"""
You can use normal input type
"""
users(
order: [SortByRootUsersSort!]
@sortBy
): ID!
@all
}
type User {
id: ID!
name: String!
}