-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathqueryBuilder.js
77 lines (60 loc) · 1.5 KB
/
queryBuilder.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
65
66
67
68
69
70
71
72
73
74
75
76
77
'use strict';
var _ = require('lodash'),
builderMethods;
module.exports = {
create: function() {
return new Builder();
}
};
builderMethods = {
build : build,
distinct : distinct,
equals : equals,
inField : inField,
inNodes : inNodes,
inTypes : inTypes
};
_.extend(Builder.prototype, builderMethods);
function Builder() {}
function build() {
var query = {};
if (this.typeIds) {
query.types = this.typeIds;
}
if (this.nodeIds) {
query.nodes = this.nodeIds;
}
if (this.distinctField) {
query.options = query.options || {};
query.options.distinct = this.distinctField;
}
if (_.has(this, 'equalsKey') && _.has(this, 'equalsValue')) {
query.filters = [{ key : this.equalsKey, cmp : '=', value : this.equalsValue }];
}
if (_.has(this, 'inFieldKey') && _.has(this, 'inFieldValues')) {
query.filters = [{ key : this.inFieldKey, cmp : 'in', value : this.inFieldValues }];
}
return query;
}
function distinct(field) {
this.distinctField = field;
return this;
}
function equals(key, value) {
this.equalsKey = key;
this.equalsValue = value;
return this;
}
function inField(key, values) {
this.inFieldKey = key;
this.inFieldValues = _.isArray(values) ? values : [values];
return this;
}
function inNodes(nodeIds) {
this.nodeIds = nodeIds;
return this;
}
function inTypes(typeIds) {
this.typeIds = typeIds;
return this;
}