-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathresolvers.js
32 lines (27 loc) · 887 Bytes
/
resolvers.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
const data = require('./data');
const getIriLocalName = require('../../src/utils/getIriLocalName');
module.exports = {
resolveSourceId(source) {
return source.id;
},
resolveSourcePropertyValue(source, iri) {
return source[getIriLocalName(iri)];
},
resolveSourceTypes(source) {
return `http://foo.com#${source.type}`;
},
resolveResource(id) {
console.log('resolveId', id);
return data.find(n => n.id === id);
},
resolveResources(ids) {
console.log('resolveId', ids);
return data.filter(n => ids.includes(n.id));
},
resolveResourcesByPredicate(types, iri, value) {
const typesLocalNames = types.map(getIriLocalName);
const localName = getIriLocalName(iri);
console.log('resolvePredicate', typesLocalNames, localName, value);
return data.filter(n => typesLocalNames.includes(n.type) && n[localName] === value);
},
};