-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgetGraphqlPolymorphicObjectType.js
64 lines (58 loc) · 2.41 KB
/
getGraphqlPolymorphicObjectType.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
const { rdfsResource } = require('../constants');
const getGraphqlInterfaceType = require('./getGraphqlInterfaceType');
const memorize = require('../graph/memorize');
const { GraphQLUnionType } = require('graphql');
const getGraphqlName = require('./getGraphqlName');
const getGraphqlObjectType = require('./getGraphqlObjectType');
// Generate an IRI that represents the Union of some resources
function getUnionIri(g, iris) {
const gqlNames = iris.map(x => getGraphqlName(g,x)).sort().join(',');
return `union:${gqlNames}`;
}
// This adapter exists to compensate for the caller passing in a array of IRIs, and this breaks memorize.
// So the idea is we create an IRI that represents the array(ranges) and pass that to memorize.
// then we will receive that generated IRI in getGraphqlPolymorphicObjectType and have to
// reverse the process to get the ranges back from the generated IRI.
function memorizeRangesAdapter(fn, key) {
return (g, ranges) => {
const unionUri = getUnionIri(g, ranges);
// make sure the IRI for for this range is in the graph
g[unionUri] = g[unionUri] || {ranges:ranges};
// and pass the IRI through, instead of the ranges
return memorize(fn,key)(g,unionUri);
}
}
// Creates a GraphQLUnionType from a collection of iris in ranges.
// g : graph
// iri : resource name of the range
// ranges: array[resource:iri]
function getGraphQlUnionObjectType(g, iri, ranges) {
const types = ranges.map(x => getGraphqlObjectType(g,x)).sort();
const typeMap = types.reduce((a,c,i) => {
return Object.assign(a, {[c.name]: c});
}, {});
const gqlNames = ranges.map(x => getGraphqlName(g,x)).sort();
const unionName = gqlNames.join('_');
return new GraphQLUnionType({
name: `U_${unionName}`,
types: types,
description: `Union of ${gqlNames.join(' and ')}`,
resolveType : (value) => typeMap[value.type]
});
}
// Responsible for determining which type of GraphQlPolymorphicObject is used.
function getGraphqlPolymorphicObjectType(g, iri) {
const ranges = g[iri]["ranges"]; // this assumes memorizeRangesAdapter was used to wrap this call.
// Union strategy
if (ranges) {
return getGraphQlUnionObjectType(g, iri, ranges);
}
// TODO: other strategies.
return null;
}
module.exports = {
getUnionIri,
memorizeRangesAdapter,
getGraphQlUnionObjectType,
getGraphqlPolymorphicObjectType : memorizeRangesAdapter(getGraphqlPolymorphicObjectType, 'graphqlPolymorphicObjectType')
};