@@ -18,6 +18,7 @@ describe("graphQLFilterType", () => {
18
18
GT : { value : "$gt" } ,
19
19
GTE : { value : "$gte" } ,
20
20
IN : { value : "$in" } ,
21
+ ALL : { value : "$all" } ,
21
22
LT : { value : "$lt" } ,
22
23
LTE : { value : "$lte" } ,
23
24
NE : { value : "$ne" } ,
@@ -43,6 +44,7 @@ describe("graphQLFilterType", () => {
43
44
GT : { type : GraphQLID , description : "$gt" } ,
44
45
GTE : { type : GraphQLID , description : "$gte" } ,
45
46
IN : { type : new GraphQLList ( GraphQLID ) , description : "$in" } ,
47
+ ALL : { type : new GraphQLList ( GraphQLID ) , description : "$all" } ,
46
48
LT : { type : GraphQLID , description : "$lt" } ,
47
49
LTE : { type : GraphQLID , description : "$lte" } ,
48
50
NE : { type : GraphQLID , description : "$ne" } ,
@@ -58,6 +60,7 @@ describe("graphQLFilterType", () => {
58
60
GT : { type : GraphQLID , description : "$gt" } ,
59
61
GTE : { type : GraphQLID , description : "$gte" } ,
60
62
IN : { type : new GraphQLList ( GraphQLID ) , description : "$in" } ,
63
+ ALL : { type : new GraphQLList ( GraphQLID ) , description : "$all" } ,
61
64
LT : { type : GraphQLID , description : "$lt" } ,
62
65
LTE : { type : GraphQLID , description : "$lte" } ,
63
66
NE : { type : GraphQLID , description : "$ne" } ,
@@ -80,6 +83,7 @@ describe("graphQLFilterType", () => {
80
83
GT : { type : GraphQLString , description : "$gt" } ,
81
84
GTE : { type : GraphQLString , description : "$gte" } ,
82
85
IN : { type : new GraphQLList ( GraphQLString ) , description : "$in" } ,
86
+ ALL : { type : new GraphQLList ( GraphQLString ) , description : "$all" } ,
83
87
LT : { type : GraphQLString , description : "$lt" } ,
84
88
LTE : { type : GraphQLString , description : "$lte" } ,
85
89
NE : { type : GraphQLString , description : "$ne" } ,
@@ -98,6 +102,7 @@ describe("graphQLFilterType", () => {
98
102
GT : { type : GraphQLString , description : "$gt" } ,
99
103
GTE : { type : GraphQLString , description : "$gte" } ,
100
104
IN : { type : new GraphQLList ( GraphQLString ) , description : "$in" } ,
105
+ ALL : { type : new GraphQLList ( GraphQLString ) , description : "$all" } ,
101
106
LT : { type : GraphQLString , description : "$lt" } ,
102
107
LTE : { type : GraphQLString , description : "$lte" } ,
103
108
NE : { type : GraphQLString , description : "$ne" } ,
@@ -123,6 +128,7 @@ describe("graphQLFilterType", () => {
123
128
GT : { type : GraphQLInt , description : "$gt" } ,
124
129
GTE : { type : GraphQLInt , description : "$gte" } ,
125
130
IN : { type : new GraphQLList ( GraphQLInt ) , description : "$in" } ,
131
+ ALL : { type : new GraphQLList ( GraphQLInt ) , description : "$all" } ,
126
132
LT : { type : GraphQLInt , description : "$lt" } ,
127
133
LTE : { type : GraphQLInt , description : "$lte" } ,
128
134
NE : { type : GraphQLInt , description : "$ne" } ,
@@ -138,6 +144,7 @@ describe("graphQLFilterType", () => {
138
144
GT : { type : GraphQLInt , description : "$gt" } ,
139
145
GTE : { type : GraphQLInt , description : "$gte" } ,
140
146
IN : { type : new GraphQLList ( GraphQLInt ) , description : "$in" } ,
147
+ ALL : { type : new GraphQLList ( GraphQLInt ) , description : "$all" } ,
141
148
LT : { type : GraphQLInt , description : "$lt" } ,
142
149
LTE : { type : GraphQLInt , description : "$lte" } ,
143
150
NE : { type : GraphQLInt , description : "$ne" } ,
@@ -160,6 +167,7 @@ describe("graphQLFilterType", () => {
160
167
GT : { type : GraphQLFloat , description : "$gt" } ,
161
168
GTE : { type : GraphQLFloat , description : "$gte" } ,
162
169
IN : { type : new GraphQLList ( GraphQLFloat ) , description : "$in" } ,
170
+ ALL : { type : new GraphQLList ( GraphQLFloat ) , description : "$all" } ,
163
171
LT : { type : GraphQLFloat , description : "$lt" } ,
164
172
LTE : { type : GraphQLFloat , description : "$lte" } ,
165
173
NE : { type : GraphQLFloat , description : "$ne" } ,
@@ -175,6 +183,7 @@ describe("graphQLFilterType", () => {
175
183
GT : { type : GraphQLFloat , description : "$gt" } ,
176
184
GTE : { type : GraphQLFloat , description : "$gte" } ,
177
185
IN : { type : new GraphQLList ( GraphQLFloat ) , description : "$in" } ,
186
+ ALL : { type : new GraphQLList ( GraphQLFloat ) , description : "$all" } ,
178
187
LT : { type : GraphQLFloat , description : "$lt" } ,
179
188
LTE : { type : GraphQLFloat , description : "$lte" } ,
180
189
NE : { type : GraphQLFloat , description : "$ne" } ,
@@ -197,6 +206,7 @@ describe("graphQLFilterType", () => {
197
206
GT : { type : CharactersEnum , description : "$gt" } ,
198
207
GTE : { type : CharactersEnum , description : "$gte" } ,
199
208
IN : { type : new GraphQLList ( CharactersEnum ) , description : "$in" } ,
209
+ ALL : { type : new GraphQLList ( CharactersEnum ) , description : "$all" } ,
200
210
LT : { type : CharactersEnum , description : "$lt" } ,
201
211
LTE : { type : CharactersEnum , description : "$lte" } ,
202
212
NE : { type : CharactersEnum , description : "$ne" } ,
@@ -212,6 +222,7 @@ describe("graphQLFilterType", () => {
212
222
GT : { type : CharactersEnum , description : "$gt" } ,
213
223
GTE : { type : CharactersEnum , description : "$gte" } ,
214
224
IN : { type : new GraphQLList ( CharactersEnum ) , description : "$in" } ,
225
+ ALL : { type : new GraphQLList ( CharactersEnum ) , description : "$all" } ,
215
226
LT : { type : CharactersEnum , description : "$lt" } ,
216
227
LTE : { type : CharactersEnum , description : "$lte" } ,
217
228
NE : { type : CharactersEnum , description : "$ne" } ,
@@ -320,6 +331,7 @@ describe("graphQLFilterType", () => {
320
331
GT : { value : "$gt" } ,
321
332
GTE : { value : "$gte" } ,
322
333
IN : { value : "$in" } ,
334
+ ALL : { value : "$all" } ,
323
335
LT : { value : "$lt" } ,
324
336
LTE : { value : "$lte" } ,
325
337
NE : { value : "$ne" } ,
@@ -343,6 +355,7 @@ describe("graphQLFilterType", () => {
343
355
GT : { type : GraphQLString , description : "$gt" } ,
344
356
GTE : { type : GraphQLString , description : "$gte" } ,
345
357
IN : { type : new GraphQLList ( GraphQLString ) , description : "$in" } ,
358
+ ALL : { type : new GraphQLList ( GraphQLString ) , description : "$all" } ,
346
359
LT : { type : GraphQLString , description : "$lt" } ,
347
360
LTE : { type : GraphQLString , description : "$lte" } ,
348
361
NE : { type : GraphQLString , description : "$ne" } ,
@@ -361,6 +374,7 @@ describe("graphQLFilterType", () => {
361
374
GT : { type : GraphQLString , description : "$gt" } ,
362
375
GTE : { type : GraphQLString , description : "$gte" } ,
363
376
IN : { type : new GraphQLList ( GraphQLString ) , description : "$in" } ,
377
+ ALL : { type : new GraphQLList ( GraphQLString ) , description : "$all" } ,
364
378
LT : { type : GraphQLString , description : "$lt" } ,
365
379
LTE : { type : GraphQLString , description : "$lte" } ,
366
380
NE : { type : GraphQLString , description : "$ne" } ,
@@ -386,6 +400,7 @@ describe("graphQLFilterType", () => {
386
400
GT : { type : GraphQLInt , description : "$gt" } ,
387
401
GTE : { type : GraphQLInt , description : "$gte" } ,
388
402
IN : { type : new GraphQLList ( GraphQLInt ) , description : "$in" } ,
403
+ ALL : { type : new GraphQLList ( GraphQLInt ) , description : "$all" } ,
389
404
LT : { type : GraphQLInt , description : "$lt" } ,
390
405
LTE : { type : GraphQLInt , description : "$lte" } ,
391
406
NE : { type : GraphQLInt , description : "$ne" } ,
@@ -401,6 +416,7 @@ describe("graphQLFilterType", () => {
401
416
GT : { type : GraphQLInt , description : "$gt" } ,
402
417
GTE : { type : GraphQLInt , description : "$gte" } ,
403
418
IN : { type : new GraphQLList ( GraphQLInt ) , description : "$in" } ,
419
+ ALL : { type : new GraphQLList ( GraphQLInt ) , description : "$all" } ,
404
420
LT : { type : GraphQLInt , description : "$lt" } ,
405
421
LTE : { type : GraphQLInt , description : "$lte" } ,
406
422
NE : { type : GraphQLInt , description : "$ne" } ,
@@ -423,6 +439,7 @@ describe("graphQLFilterType", () => {
423
439
GT : { type : GraphQLFloat , description : "$gt" } ,
424
440
GTE : { type : GraphQLFloat , description : "$gte" } ,
425
441
IN : { type : new GraphQLList ( GraphQLFloat ) , description : "$in" } ,
442
+ ALL : { type : new GraphQLList ( GraphQLFloat ) , description : "$all" } ,
426
443
LT : { type : GraphQLFloat , description : "$lt" } ,
427
444
LTE : { type : GraphQLFloat , description : "$lte" } ,
428
445
NE : { type : GraphQLFloat , description : "$ne" } ,
@@ -438,6 +455,7 @@ describe("graphQLFilterType", () => {
438
455
GT : { type : GraphQLFloat , description : "$gt" } ,
439
456
GTE : { type : GraphQLFloat , description : "$gte" } ,
440
457
IN : { type : new GraphQLList ( GraphQLFloat ) , description : "$in" } ,
458
+ ALL : { type : new GraphQLList ( GraphQLFloat ) , description : "$all" } ,
441
459
LT : { type : GraphQLFloat , description : "$lt" } ,
442
460
LTE : { type : GraphQLFloat , description : "$lte" } ,
443
461
NE : { type : GraphQLFloat , description : "$ne" } ,
@@ -460,6 +478,7 @@ describe("graphQLFilterType", () => {
460
478
GT : { type : CharactersEnum , description : "$gt" } ,
461
479
GTE : { type : CharactersEnum , description : "$gte" } ,
462
480
IN : { type : new GraphQLList ( CharactersEnum ) , description : "$in" } ,
481
+ ALL : { type : new GraphQLList ( CharactersEnum ) , description : "$all" } ,
463
482
LT : { type : CharactersEnum , description : "$lt" } ,
464
483
LTE : { type : CharactersEnum , description : "$lte" } ,
465
484
NE : { type : CharactersEnum , description : "$ne" } ,
@@ -475,6 +494,7 @@ describe("graphQLFilterType", () => {
475
494
GT : { type : CharactersEnum , description : "$gt" } ,
476
495
GTE : { type : CharactersEnum , description : "$gte" } ,
477
496
IN : { type : new GraphQLList ( CharactersEnum ) , description : "$in" } ,
497
+ ALL : { type : new GraphQLList ( CharactersEnum ) , description : "$all" } ,
478
498
LT : { type : CharactersEnum , description : "$lt" } ,
479
499
LTE : { type : CharactersEnum , description : "$lte" } ,
480
500
NE : { type : CharactersEnum , description : "$ne" } ,
0 commit comments