-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathqueryResolver.ts
69 lines (61 loc) · 2.96 KB
/
queryResolver.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { getMongoDbFilter, MongoDbFilter } from './mongoDbFilter';
import { getMongoDbProjection, MongoDbProjection, GetMongoDbProjectionOptions } from './mongoDbProjection';
import { getGraphQLFilterType } from './graphQLFilterType';
import { getGraphQLSortType } from './graphQLSortType';
import GraphQLPaginationType from './graphQLPaginationType';
import getMongoDbSort, { MongoDbSort } from "./mongoDbSort";
import { isType, GraphQLResolveInfo, GraphQLFieldResolver, GraphQLInputObjectType, GraphQLField } from 'graphql';
import { GraphQLFieldsType } from './common';
export interface QueryCallback<TSource, TContext> {
(
filter: MongoDbFilter,
projection: MongoDbProjection,
options: MongoDbOptions,
source: TSource,
args: { [argName: string]: any },
context: TContext,
info: GraphQLResolveInfo
): Promise<any>
};
export interface MongoDbOptions {
sort?: MongoDbSort;
limit?: number;
skip?: number;
projection?: MongoDbProjection;
}
export type QueryOptions = {
differentOutputType?: boolean;
} & Partial<GetMongoDbProjectionOptions>;
const defaultOptions: Required<QueryOptions> = {
differentOutputType: false,
excludedFields: [],
isResolvedField: (field: GraphQLField<any, any>) => !!field.resolve
};
export function getMongoDbQueryResolver<TSource, TContext>(
graphQLType: GraphQLFieldsType,
queryCallback: QueryCallback<TSource, TContext>,
queryOptions?: QueryOptions): GraphQLFieldResolver<TSource, TContext> {
if (!isType(graphQLType)) throw 'getMongoDbQueryResolver must recieve a graphql type';
if (typeof queryCallback !== 'function') throw 'getMongoDbQueryResolver must recieve a queryCallback function';
const requiredQueryOptions = { ...defaultOptions, ...queryOptions };
return async (source: TSource, args: { [argName: string]: any }, context: TContext, info: GraphQLResolveInfo): Promise<any> => {
const filter = getMongoDbFilter(graphQLType, args.filter);
const projection = requiredQueryOptions.differentOutputType ? undefined : getMongoDbProjection(info, graphQLType, requiredQueryOptions);
const options: MongoDbOptions = { projection };
if (args.sort) options.sort = getMongoDbSort(args.sort);
if (args.pagination && args.pagination.limit) options.limit = args.pagination.limit;
if (args.pagination && args.pagination.skip) options.skip = args.pagination.skip;
return await queryCallback(filter, projection, options, source, args, context, info);
}
}
export function getGraphQLQueryArgs(graphQLType: GraphQLFieldsType): { [key: string]: { type: GraphQLInputObjectType } } & {
filter: { type: GraphQLInputObjectType },
sort: { type: GraphQLInputObjectType },
pagination: { type: GraphQLInputObjectType }
} {
return {
filter: { type: getGraphQLFilterType(graphQLType) },
sort: { type: getGraphQLSortType(graphQLType) },
pagination: { type: GraphQLPaginationType }
};
}