File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,15 @@ describe('preparePaginationResolver()', () => {
56
56
} )
57
57
) . toThrowError ( "'opts.findManyResolver' must be a Resolver instance" ) ;
58
58
} ) ;
59
+
60
+ it ( 'should return a separate resolver with different type' , ( ) => {
61
+ const anotherPaginationResolver = preparePaginationResolver ( UserTC , {
62
+ countResolver,
63
+ findManyResolver,
64
+ name : 'otherPagination' ,
65
+ } ) ;
66
+ expect ( anotherPaginationResolver . getTypeName ( ) ) . toBe ( 'UserOtherPagination' ) ;
67
+ } ) ;
59
68
} ) ;
60
69
61
70
describe ( 'resolver basic properties' , ( ) => {
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export function preparePaginationResolver<TSource, TContext>(
85
85
}
86
86
87
87
return tc . schemaComposer . createResolver ( {
88
- type : preparePaginationTC ( tc ) ,
88
+ type : preparePaginationTC ( tc , resolverName ) ,
89
89
name : resolverName ,
90
90
kind : 'query' ,
91
91
args : {
You can’t perform that action at this time.
0 commit comments