-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
222 lines (190 loc) · 7.88 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import {
FieldNode,
GraphQLResolveInfo,
valueFromASTUntyped
} from "graphql";
import { FindOptions, Model, OrderItem } from "sequelize";
import { SelectionNode } from "graphql/language/ast";
import { IncludeOptions, WhereAttributeHash } from "sequelize/types/lib/model";
import { Association } from "sequelize/types/lib/associations";
export type SQLOrder = {
col: string,
dir: 'ASC' | 'DESC'
}
export type SQLQueryArgs = {
where?: WhereAttributeHash;
/**
* Specifies an ordering. If a string is provided, it will be escaped. Using an array, you can provide
* several columns / functions to order by. Each element can be further wrapped in a two-element array. The
* first element is the column / function to order by, the second is the direction. For example:
* `order: [['name', 'DESC']]`. In this way the column will be escaped, but the direction will not.
*/
orderBy?: SQLOrder[];
/**
* Limit the results
*/
limit?: number;
/**
* Skip the results;
*/
offset?: number;
}
export const getSequelizeQuery = (args: SQLQueryArgs, info: GraphQLResolveInfo, model: typeof Model): FindOptions => {
const fields = getSelectedFields(info);
const attributes = getRootFieldNames(info).filter((fieldName): boolean => {
return fieldName in model.rawAttributes;
});
const include: IncludeOptions[] = getIncludes(fields, info, model);
applyWhereIncludes(args.where || {}, include, model);
return {
where: args.where || undefined,
include,
attributes,
limit: args.limit || 100,
order: args.orderBy ? getOrder(args.orderBy, include, model) : []
};
};
const traverseKeys = (obj: { [ key: string ]: any }) => {
const keys: { [ key: string ]: boolean } = {};
Object.keys(obj).forEach(key => {
keys[key] = true;
if (typeof obj[key] === 'object') {
Object.assign(keys, traverseKeys(obj[key]))
}
})
return keys;
};
const getAllKeys = (obj: { [ key: string ]: any }) => Object.keys(traverseKeys(obj));
export const applyWhereIncludes = (where: WhereAttributeHash, includes: IncludeOptions[], model: typeof Model) => {
const joinColumns = getAllKeys(where).filter(key => key.startsWith('$') && key.endsWith('$') && key.includes('.'));
joinColumns.forEach(column => applyIncludes(column, includes, model));
};
export const applyIncludes = (column: string, includes: IncludeOptions[], model: typeof Model, callback?: (assoc: Association) => void) => {
const parts = column.replace(/\$/g, '').split('.');
parts.pop();
let currentModel: typeof Model = model;
let currentIncludes: IncludeOptions[] = includes;
let foreignField: string | undefined;
while (foreignField = parts.shift()) {
const assoc = currentModel.associations[foreignField];
if (!assoc) {
throw new Error(`No association found for ${currentModel.name}.${foreignField}`);
}
currentModel = assoc.target;
if (callback) {
callback(assoc);
}
let include = currentIncludes.find(include => {
return include.model === currentModel && include.as === foreignField
});
if (!include) {
include = {
model: currentModel,
as: foreignField,
attributes: currentModel.primaryKeyAttributes,
include: []
};
currentIncludes.push(include);
}
currentIncludes = include.include as IncludeOptions[];
}
};
export const getOrder = (orderBys: SQLOrder[], includes: IncludeOptions[], model: typeof Model) => {
return orderBys.map((order) => {
if (order.col.includes(".")) {
const parts = order.col.split('.');
const col = parts.pop() as string;
const orderBy: any[] = [];
applyIncludes(order.col, includes, model, (assoc) => orderBy.push(assoc));
orderBy.push(col, order.dir);
return orderBy as any;
}
return [order.col, order.dir];
});
}
export const resolveFragments = (selections: SelectionNode[], info: GraphQLResolveInfo): FieldNode[] => {
const fragments = info.fragments;
selections.forEach((selection) => {
if (selection.kind === 'FragmentSpread') {
const fragment = fragments[selection.name.value];
selections.splice(selections.indexOf(selection), 1);
selections = [...selections, ...fragment.selectionSet.selections];
}
});
return selections as FieldNode[];
};
export const getIncludes = (fields: ReadonlyArray<FieldNode>, info: GraphQLResolveInfo, parentModel: typeof Model): IncludeOptions[] => {
const nestedFields = fields.filter((field) => field.name.value in parentModel.associations);
return nestedFields.map((field: FieldNode): IncludeOptions => {
const variables = info.variableValues;
const selections = field.selectionSet ? resolveFragments(field.selectionSet.selections.slice(), info) : [];
let model: typeof Model;
const as = field.name.value;
if (as in parentModel.associations) {
model = parentModel.associations[as].target;
} else {
throw new Error(`Field ${parentModel.name}.${as} not supported`);
}
const attributes = getFieldNames((selections as FieldNode[]).filter((field) => !field.selectionSet))
.filter(value => value in model.rawAttributes);
if (model.primaryKeyAttribute && !attributes.includes(model.primaryKeyAttribute)) {
attributes.unshift(model.primaryKeyAttribute);
}
let required = false;
let where: WhereAttributeHash | undefined;
let limit: number | undefined;
let separate: boolean = false;
let order: OrderItem[] | undefined;
if (field.arguments) {
const args: any = {};
field.arguments.forEach(argument => {
if (argument.value.kind === 'Variable') {
args[argument.name.value] = variables[argument.value.name.value];
} else {
args[argument.name.value] = valueFromASTUntyped(argument.value);
}
});
if ('required' in args) {
required = args.required;
}
if ('where' in args) {
where = args.where;
}
if ('orderBy' in args) {
order = args.orderBy.map((order: SQLOrder) => {
return [order.col, order.dir];
});
separate = true;
}
if ('limit' in args && args.limit) {
limit = args.limit;
separate = true;
}
}
const includes = getIncludes(selections as ReadonlyArray<FieldNode>, info, model);
applyWhereIncludes(where || {}, includes, model);
return {
model,
where,
order,
limit,
separate,
as,
attributes: selections.length > 0 ? attributes : undefined,
required,
include: includes
};
});
};
export const getSelectedFields = (info: GraphQLResolveInfo): FieldNode[] => {
if (info.fieldNodes.length === 0 || !info.fieldNodes[0].selectionSet) {
return [];
}
const fields = resolveFragments(info.fieldNodes[0].selectionSet.selections.slice(), info) as FieldNode[];
return fields.filter((field) => field.name.value !== "__typename");
};
const getFieldNames = (fields: ReadonlyArray<FieldNode>) => fields.map((fieldSelection: FieldNode) => fieldSelection.name.value);
export const getRootFields = (info: GraphQLResolveInfo): FieldNode[] => {
return getSelectedFields(info).filter((field) => !field.selectionSet);
};
export const getRootFieldNames = (info: GraphQLResolveInfo): string[] => getFieldNames(getRootFields(info));