@@ -202,7 +202,7 @@ export interface SubscriptionSubscriberObject<
202
202
TKey extends string ,
203
203
TParent ,
204
204
TContext ,
205
- TArgs
205
+ TArgs ,
206
206
> {
207
207
subscribe : SubscriptionSubscribeFn <
208
208
{ [ key in TKey ] : TResult } ,
@@ -228,7 +228,7 @@ export type SubscriptionObject<
228
228
TKey extends string ,
229
229
TParent ,
230
230
TContext ,
231
- TArgs
231
+ TArgs ,
232
232
> =
233
233
| SubscriptionSubscriberObject < TResult , TKey , TParent , TContext , TArgs >
234
234
| SubscriptionResolverObject < TResult , TParent , TContext , TArgs > ;
@@ -238,7 +238,7 @@ export type SubscriptionResolver<
238
238
TKey extends string ,
239
239
TParent = { } ,
240
240
TContext = { } ,
241
- TArgs = { }
241
+ TArgs = { } ,
242
242
> =
243
243
| ( (
244
244
...args : any [ ]
@@ -263,7 +263,7 @@ export type DirectiveResolverFn<
263
263
TResult = { } ,
264
264
TParent = { } ,
265
265
TContext = { } ,
266
- TArgs = { }
266
+ TArgs = { } ,
267
267
> = (
268
268
next : NextResolverFn < TResult > ,
269
269
parent : TParent ,
@@ -313,7 +313,7 @@ export type ResolversParentTypes = {
313
313
314
314
export type DogResolvers <
315
315
ContextType = EZContext ,
316
- ParentType extends ResolversParentTypes [ 'Dog' ] = ResolversParentTypes [ 'Dog' ]
316
+ ParentType extends ResolversParentTypes [ 'Dog' ] = ResolversParentTypes [ 'Dog' ] ,
317
317
> = {
318
318
id ?: Resolver < ResolversTypes [ 'ID' ] , ParentType , ContextType > ;
319
319
name ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
@@ -323,7 +323,8 @@ export type DogResolvers<
323
323
324
324
export type HumanResolvers <
325
325
ContextType = EZContext ,
326
- ParentType extends ResolversParentTypes [ 'Human' ] = ResolversParentTypes [ 'Human' ]
326
+ ParentType extends
327
+ ResolversParentTypes [ 'Human' ] = ResolversParentTypes [ 'Human' ] ,
327
328
> = {
328
329
id ?: Resolver < ResolversTypes [ 'ID' ] , ParentType , ContextType > ;
329
330
name ?: Resolver < ResolversTypes [ 'String' ] , ParentType , ContextType > ;
@@ -339,7 +340,8 @@ export type HumanResolvers<
339
340
340
341
export type QueryResolvers <
341
342
ContextType = EZContext ,
342
- ParentType extends ResolversParentTypes [ 'Query' ] = ResolversParentTypes [ 'Query' ]
343
+ ParentType extends
344
+ ResolversParentTypes [ 'Query' ] = ResolversParentTypes [ 'Query' ] ,
343
345
> = {
344
346
expectedError ?: Resolver < ResolversTypes [ 'Boolean' ] , ParentType , ContextType > ;
345
347
expectedNullableError ?: Resolver <
@@ -378,7 +380,8 @@ export type QueryResolvers<
378
380
379
381
export type MutationResolvers <
380
382
ContextType = EZContext ,
381
- ParentType extends ResolversParentTypes [ 'Mutation' ] = ResolversParentTypes [ 'Mutation' ]
383
+ ParentType extends
384
+ ResolversParentTypes [ 'Mutation' ] = ResolversParentTypes [ 'Mutation' ] ,
382
385
> = {
383
386
renameDog ?: Resolver <
384
387
Maybe < ResolversTypes [ 'Dog' ] > ,
@@ -420,7 +423,8 @@ export type MutationResolvers<
420
423
421
424
export type SubscriptionResolvers <
422
425
ContextType = EZContext ,
423
- ParentType extends ResolversParentTypes [ 'Subscription' ] = ResolversParentTypes [ 'Subscription' ]
426
+ ParentType extends
427
+ ResolversParentTypes [ 'Subscription' ] = ResolversParentTypes [ 'Subscription' ] ,
424
428
> = {
425
429
newNotification ?: SubscriptionResolver <
426
430
ResolversTypes [ 'String' ] ,
@@ -432,7 +436,8 @@ export type SubscriptionResolvers<
432
436
433
437
export type HumansConnectionResolvers <
434
438
ContextType = EZContext ,
435
- ParentType extends ResolversParentTypes [ 'HumansConnection' ] = ResolversParentTypes [ 'HumansConnection' ]
439
+ ParentType extends
440
+ ResolversParentTypes [ 'HumansConnection' ] = ResolversParentTypes [ 'HumansConnection' ] ,
436
441
> = {
437
442
pageInfo ?: Resolver < ResolversTypes [ 'PageInfo' ] , ParentType , ContextType > ;
438
443
nodes ?: Resolver < Array < ResolversTypes [ 'Human' ] > , ParentType , ContextType > ;
@@ -441,7 +446,8 @@ export type HumansConnectionResolvers<
441
446
442
447
export type PageInfoResolvers <
443
448
ContextType = EZContext ,
444
- ParentType extends ResolversParentTypes [ 'PageInfo' ] = ResolversParentTypes [ 'PageInfo' ]
449
+ ParentType extends
450
+ ResolversParentTypes [ 'PageInfo' ] = ResolversParentTypes [ 'PageInfo' ] ,
445
451
> = {
446
452
hasPreviousPage ?: Resolver <
447
453
ResolversTypes [ 'Boolean' ] ,
@@ -464,7 +470,8 @@ export type PageInfoResolvers<
464
470
465
471
export type SpeciesResolvers <
466
472
ContextType = EZContext ,
467
- ParentType extends ResolversParentTypes [ 'Species' ] = ResolversParentTypes [ 'Species' ]
473
+ ParentType extends
474
+ ResolversParentTypes [ 'Species' ] = ResolversParentTypes [ 'Species' ] ,
468
475
> = {
469
476
__resolveType : TypeResolveFn < 'Human' | 'Dog' , ParentType , ContextType > ;
470
477
} ;
0 commit comments