File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,11 @@ export const GraphQLStreamDirective = new GraphQLDirective({
204
204
'Directs the executor to stream plural fields when the `if` argument is true or undefined.' ,
205
205
locations : [ DirectiveLocation . FIELD ] ,
206
206
args : {
207
+ initialCount : {
208
+ default : { value : 0 } ,
209
+ type : new GraphQLNonNull ( GraphQLInt ) ,
210
+ description : 'Number of items to return immediately' ,
211
+ } ,
207
212
if : {
208
213
type : new GraphQLNonNull ( GraphQLBoolean ) ,
209
214
description : 'Stream when true or undefined.' ,
@@ -213,11 +218,6 @@ export const GraphQLStreamDirective = new GraphQLDirective({
213
218
type : GraphQLString ,
214
219
description : 'Unique name' ,
215
220
} ,
216
- initialCount : {
217
- default : { value : 0 } ,
218
- type : GraphQLInt ,
219
- description : 'Number of items to return immediately' ,
220
- } ,
221
221
} ,
222
222
} ) ;
223
223
You can’t perform that action at this time.
0 commit comments