forked from tlivings/graphql-query-splitting-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
45 lines (34 loc) · 1.3 KB
/
index.js
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
'use strict';
const gql = require('graphql-tag');
const { splitDocumentByDestination } = require('./lib/graphql-utils');
function graphqlRouter({
// function (operation: String, attribute: String): String
// responsible for mapping the root operation to a unique key
mapDestination,
// async function (destinationName: String, document: GraphQLDocument) : { [key: String]: String }
// responsible for executing the document against the given destination key
callDestination
}) {
return function (req, res, next) {
const document = gql(req.body.query);
const documents = splitDocumentByDestination(mapDestination, document);
const work = Object.entries(documents).map(([destination, document]) => {
return callDestination(destination, document);
});
Promise.all(work).then((results) => {
const merged = results.reduce((merge, result) => {
merge.data = Object.assign(merge.data, result.data);
if (result.errors && result.errors.length) {
merge.errors.push(...result.errors);
}
return merge;
}, { data: {}, errors: [] });
req.graphqlRouting = {
result: merged,
originalQuery: req.body
};
next();
}).catch(next);
};
}
module.exports = graphqlRouter;