File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { ObjectTypeComposer } from 'graphql-compose' ;
2
2
import {
3
3
preparePaginationResolver ,
4
- ComposeWithPaginationOpts ,
4
+ PaginationResolverOpts ,
5
5
DEFAULT_RESOLVER_NAME ,
6
6
} from './pagination' ;
7
7
8
+ /**
9
+ * @deprecated use `preparePaginationResolver()` instead
10
+ */
8
11
export function composeWithPagination < TSource , TContext > (
9
12
typeComposer : ObjectTypeComposer < TSource , TContext > ,
10
- opts : ComposeWithPaginationOpts
13
+ opts : PaginationResolverOpts
11
14
) : ObjectTypeComposer < TSource , TContext > {
12
15
if ( ! typeComposer || typeComposer . constructor . name !== 'ObjectTypeComposer' ) {
13
16
throw new Error (
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { composeWithPagination } from './composeWithPagination';
4
4
export { composeWithPagination , preparePaginationResolver } ;
5
5
6
6
export type {
7
- ComposeWithPaginationOpts ,
7
+ PaginationResolverOpts ,
8
8
PaginationTArgs ,
9
9
PaginationType ,
10
10
PaginationInfoType ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { preparePaginationTC } from './types';
9
9
export const DEFAULT_RESOLVER_NAME = 'pagination' ;
10
10
export const DEFAULT_PER_PAGE = 20 ;
11
11
12
- export type ComposeWithPaginationOpts = {
12
+ export type PaginationResolverOpts = {
13
13
findManyResolver : Resolver ;
14
14
countResolver : Resolver ;
15
15
name ?: string ;
@@ -40,7 +40,7 @@ export interface PaginationTArgs {
40
40
41
41
export function preparePaginationResolver < TSource , TContext > (
42
42
tc : ObjectTypeComposer < TSource , TContext > ,
43
- opts : ComposeWithPaginationOpts
43
+ opts : PaginationResolverOpts
44
44
) : Resolver < TSource , TContext , PaginationTArgs > {
45
45
if ( ! tc || tc . constructor . name !== 'ObjectTypeComposer' ) {
46
46
throw new Error (
You can’t perform that action at this time.
0 commit comments