Skip to content

Commit 1a8aa26

Browse files
theasmoththeasmoth
and
theasmoth
authored
fix: use resolverName as suffix in Resolver output type name (#35)
* fix & test * fix & test * trailing comma fix Co-authored-by: theasmoth <[email protected]>
1 parent 3e83003 commit 1a8aa26

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/__tests__/pagination-test.ts

+9
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ describe('preparePaginationResolver()', () => {
5656
})
5757
).toThrowError("'opts.findManyResolver' must be a Resolver instance");
5858
});
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+
});
5968
});
6069

6170
describe('resolver basic properties', () => {

src/pagination.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export function preparePaginationResolver<TSource, TContext>(
8585
}
8686

8787
return tc.schemaComposer.createResolver({
88-
type: preparePaginationTC(tc),
88+
type: preparePaginationTC(tc, resolverName),
8989
name: resolverName,
9090
kind: 'query',
9191
args: {

0 commit comments

Comments
 (0)