@@ -5,7 +5,7 @@ exports[` 1`] = `
5
5
2 | type User {
6
6
3 | password : String
7
7
> 4 | firstName : String !
8
- | ^ " firstName" should be before " password" .
8
+ | ^^^^^^^^^ " firstName" should be before " password"
9
9
5 | age : Int
10
10
6 | lastName : String !
11
11
7 | }
@@ -18,7 +18,7 @@ exports[` 2`] = `
18
18
3 | password : String
19
19
4 | firstName : String !
20
20
> 5 | age : Int
21
- | ^ " age" should be before " firstName" .
21
+ | ^^^ " age" should be before " firstName"
22
22
6 | lastName : String !
23
23
7 | }
24
24
8 |
@@ -31,29 +31,29 @@ exports[` 3`] = `
31
31
4 | firstName : String !
32
32
5 | password : String
33
33
> 6 | lastName : String !
34
- | ^ " lastName" should be before " password" .
34
+ | ^^^^^^^^ " lastName" should be before " password"
35
35
7 | }
36
36
8 |
37
37
` ;
38
38
39
39
exports [` 4` ] = `
40
40
1 |
41
41
2 | interface Test {
42
- 3 | c : Int
43
- > 4 | b : Int
44
- | ^ " b " should be before " c " .
45
- 5 | a : Int
42
+ 3 | cc : Int
43
+ > 4 | bb : Int
44
+ | ^^ " bb " should be before " cc "
45
+ 5 | aa : Int
46
46
6 | }
47
47
7 |
48
48
` ;
49
49
50
50
exports [` 5` ] = `
51
51
1 |
52
52
2 | interface Test {
53
- 3 | c : Int
54
- 4 | b : Int
55
- > 5 | a : Int
56
- | ^ " a " should be before " b " .
53
+ 3 | cc : Int
54
+ 4 | bb : Int
55
+ > 5 | aa : Int
56
+ | ^^ " aa " should be before " bb "
57
57
6 | }
58
58
7 |
59
59
` ;
@@ -63,7 +63,7 @@ exports[` 6`] = `
63
63
2 | input UserInput {
64
64
3 | password : String
65
65
> 4 | firstName : String !
66
- | ^ " firstName" should be before " password" .
66
+ | ^^^^^^^^^ " firstName" should be before " password"
67
67
5 | age : Int
68
68
6 | lastName : String !
69
69
7 | }
@@ -76,7 +76,7 @@ exports[` 7`] = `
76
76
3 | password : String
77
77
4 | firstName : String !
78
78
> 5 | age : Int
79
- | ^ " age" should be before " firstName" .
79
+ | ^^^ " age" should be before " firstName"
80
80
6 | lastName : String !
81
81
7 | }
82
82
8 |
@@ -89,7 +89,7 @@ exports[` 8`] = `
89
89
4 | firstName : String !
90
90
5 | password : String
91
91
> 6 | lastName : String !
92
- | ^ " lastName" should be before " password" .
92
+ | ^^^^^^^^ " lastName" should be before " password"
93
93
7 | }
94
94
8 |
95
95
` ;
@@ -99,7 +99,7 @@ exports[` 9`] = `
99
99
2 | enum Role {
100
100
3 | SUPER_ADMIN
101
101
> 4 | ADMIN
102
- | ^ " ADMIN" should be before " SUPER_ADMIN" .
102
+ | ^^^^^ " ADMIN" should be before " SUPER_ADMIN"
103
103
5 | USER
104
104
6 | GOD
105
105
7 | }
@@ -113,7 +113,7 @@ exports[` 10`] = `
113
113
4 | ADMIN
114
114
5 | USER
115
115
> 6 | GOD
116
- | ^ " GOD" should be before " USER" .
116
+ | ^^^ " GOD" should be before " USER"
117
117
7 | }
118
118
8 |
119
119
` ;
@@ -124,62 +124,62 @@ exports[` 11`] = `
124
124
3 | ADMIN
125
125
4 | SUPER_ADMIN
126
126
> 5 | GOD
127
- | ^ " GOD" should be before " SUPER_ADMIN" .
127
+ | ^^^ " GOD" should be before " SUPER_ADMIN"
128
128
6 | USER
129
129
7 | }
130
130
8 |
131
131
` ;
132
132
133
133
exports [` 12` ] = `
134
134
1 |
135
- > 2 | directive @test(c : Int, b : Int, a : Int) on FIELD_DEFINITION
136
- | ^ "b " should be before "c".
135
+ > 2 | directive @test(cc : Int, bb : Int, aa : Int) on FIELD_DEFINITION
136
+ | ^^ "bb " should be before "cc"
137
137
3 |
138
138
` ;
139
139
140
140
exports [` 13` ] = `
141
141
1 |
142
- > 2 | directive @test(c : Int, b : Int, a : Int) on FIELD_DEFINITION
143
- | ^ "a " should be before "b".
142
+ > 2 | directive @test(cc : Int, bb : Int, aa : Int) on FIELD_DEFINITION
143
+ | ^^ "aa " should be before "bb"
144
144
3 |
145
145
` ;
146
146
147
147
exports [` 14` ] = `
148
148
1 |
149
149
2 | type Query {
150
- > 3 | test (c : Int , b : Int , a : Int ): Int
151
- | ^ " b " should be before " c " .
150
+ > 3 | test (cc : Int , bb : Int , aa : Int ): Int
151
+ | ^^ " bb " should be before " cc "
152
152
4 | }
153
153
5 |
154
154
` ;
155
155
156
156
exports [` 15` ] = `
157
157
1 |
158
158
2 | type Query {
159
- > 3 | test (c : Int , b : Int , a : Int ): Int
160
- | ^ " a " should be before " b " .
159
+ > 3 | test (cc : Int , bb : Int , aa : Int ): Int
160
+ | ^^ " aa " should be before " bb "
161
161
4 | }
162
162
5 |
163
163
` ;
164
164
165
165
exports [` 16` ] = `
166
166
1 |
167
167
2 | fragment TestFields on Test {
168
- 3 | c
169
- > 4 | b
170
- | ^ " b " should be before " c " .
171
- 5 | a
168
+ 3 | cc
169
+ > 4 | bb
170
+ | ^^ " bb " should be before " cc "
171
+ 5 | aa
172
172
6 | }
173
173
7 |
174
174
` ;
175
175
176
176
exports [` 17` ] = `
177
177
1 |
178
178
2 | fragment TestFields on Test {
179
- 3 | c
180
- 4 | b
181
- > 5 | a
182
- | ^ " a " should be before " b " .
179
+ 3 | cc
180
+ 4 | bb
181
+ > 5 | aa
182
+ | ^^ " aa " should be before " bb "
183
183
6 | }
184
184
7 |
185
185
` ;
@@ -188,14 +188,14 @@ exports[` 18`] = `
188
188
1 |
189
189
2 | query {
190
190
3 | test {
191
- 4 | c
192
- > 5 | b
193
- | ^ "b " should be before "c".
194
- 6 | a
191
+ 4 | cc
192
+ > 5 | bb
193
+ | ^^ "bb " should be before "cc"
194
+ 6 | aa
195
195
7 | ... on Test {
196
- 8 | cc
197
- 9 | bb
198
- 10 | aa
196
+ 8 | ccc
197
+ 9 | bbb
198
+ 10 | aaa
199
199
11 | }
200
200
12 | }
201
201
13 | }
@@ -206,14 +206,14 @@ exports[` 19`] = `
206
206
1 |
207
207
2 | query {
208
208
3 | test {
209
- 4 | c
210
- 5 | b
211
- > 6 | a
212
- | ^ "a " should be before "b".
209
+ 4 | cc
210
+ 5 | bb
211
+ > 6 | aa
212
+ | ^^ "aa " should be before "bb"
213
213
7 | ... on Test {
214
- 8 | cc
215
- 9 | bb
216
- 10 | aa
214
+ 8 | ccc
215
+ 9 | bbb
216
+ 10 | aaa
217
217
11 | }
218
218
12 | }
219
219
13 | }
@@ -224,14 +224,14 @@ exports[` 20`] = `
224
224
1 |
225
225
2 | query {
226
226
3 | test {
227
- 4 | c
228
- 5 | b
229
- 6 | a
227
+ 4 | cc
228
+ 5 | bb
229
+ 6 | aa
230
230
7 | ... on Test {
231
- 8 | cc
232
- > 9 | bb
233
- | ^ "bb " should be before "cc".
234
- 10 | aa
231
+ 8 | ccc
232
+ > 9 | bbb
233
+ | ^^^ "bbb " should be before "ccc"
234
+ 10 | aaa
235
235
11 | }
236
236
12 | }
237
237
13 | }
@@ -242,14 +242,14 @@ exports[` 21`] = `
242
242
1 |
243
243
2 | query {
244
244
3 | test {
245
- 4 | c
246
- 5 | b
247
- 6 | a
245
+ 4 | cc
246
+ 5 | bb
247
+ 6 | aa
248
248
7 | ... on Test {
249
- 8 | cc
250
- 9 | bb
251
- > 10 | aa
252
- | ^ "aa " should be before "bb".
249
+ 8 | ccc
250
+ 9 | bbb
251
+ > 10 | aaa
252
+ | ^^^ "aaa " should be before "bbb"
253
253
11 | }
254
254
12 | }
255
255
13 | }
@@ -258,9 +258,9 @@ exports[` 21`] = `
258
258
259
259
exports [` 22` ] = `
260
260
1 |
261
- > 2 | mutation ($c : Int, $b : Int, $a : Int) {
262
- | ^^ " $b " should be before " $c " .
263
- 3 | test (cc : $c , bb : $b , aa : $a ) {
261
+ > 2 | mutation ($cc : Int, $bb : Int, $aa : Int) {
262
+ | ^^^ " $bb " should be before " $cc "
263
+ 3 | test (ccc : $cc , bbb : $bb , aaa : $aa ) {
264
264
4 | something
265
265
5 | }
266
266
6 | }
@@ -269,9 +269,9 @@ exports[` 22`] = `
269
269
270
270
exports [` 23` ] = `
271
271
1 |
272
- > 2 | mutation ($c : Int, $b : Int, $a : Int) {
273
- | ^^ " $a " should be before " $b " .
274
- 3 | test (cc : $c , bb : $b , aa : $a ) {
272
+ > 2 | mutation ($cc : Int, $bb : Int, $aa : Int) {
273
+ | ^^^ " $aa " should be before " $bb "
274
+ 3 | test (ccc : $cc , bbb : $bb , aaa : $aa ) {
275
275
4 | something
276
276
5 | }
277
277
6 | }
@@ -280,9 +280,9 @@ exports[` 23`] = `
280
280
281
281
exports [` 24` ] = `
282
282
1 |
283
- 2 | mutation ($c : Int, $b : Int, $a : Int) {
284
- > 3 | test (cc : $c , bb : $b , aa : $a ) {
285
- | ^ "bb " should be before "cc".
283
+ 2 | mutation ($cc : Int, $bb : Int, $aa : Int) {
284
+ > 3 | test (ccc : $cc , bbb : $bb , aaa : $aa ) {
285
+ | ^^^ "bbb " should be before "ccc"
286
286
4 | something
287
287
5 | }
288
288
6 | }
@@ -291,9 +291,9 @@ exports[` 24`] = `
291
291
292
292
exports [` 25` ] = `
293
293
1 |
294
- 2 | mutation ($c : Int, $b : Int, $a : Int) {
295
- > 3 | test (cc : $c , bb : $b , aa : $a ) {
296
- | ^ "aa " should be before "bb".
294
+ 2 | mutation ($cc : Int, $bb : Int, $aa : Int) {
295
+ > 3 | test (ccc : $cc , bbb : $bb , aaa : $aa ) {
296
+ | ^^^ "aaa " should be before "bbb"
297
297
4 | something
298
298
5 | }
299
299
6 | }
0 commit comments