-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
158 lines (143 loc) · 3.21 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
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
import * as util from "util";
import fetch from "node-fetch";
class GraphQlSalesforceObject {
constructor(apiName) {
this.apiName = apiName;
this.fields = [];
}
addFields(apiNames) {
for (const field of apiNames) {
this.addField(field);
}
return this;
}
addField(apiName) {
this.fields.push(
apiName.toLowerCase() === "id" ? "Id" : `${apiName} { value }`
);
return this;
}
addParentSObject(parentObject) {
this.fields.push(
`${parentObject.apiName} {
${parentObject.fields.toString()}
}`
);
return this;
}
}
export class RootSObject extends GraphQlSalesforceObject {
constructor(apiName) {
super(apiName);
}
filter;
orderBy;
addFilter(filter) {
this.filter = filter;
return this;
}
setOrder(field, order) {
this.orderBy = {
field: field,
order: order
};
return this;
}
addChildSObject(parentObject) {
this.fields.push(
`${parentObject.apiName} {
edges {
node{
${parentObject.fields.toString()}
}
}
}`
);
return this;
}
}
export class ParentSObject extends GraphQlSalesforceObject {
constructor(apiName) {
super(apiName);
}
}
export class ChildSObject extends GraphQlSalesforceObject {
constructor(apiName) {
super(apiName);
}
}
export class GraphQlHelper {
constructor(rootSObject) {
this.sobjects = [];
if (rootSObject !== undefined) this.addRootObject(rootSObject);
}
sobjects;
addRootObject(sobject) {
const topLevelForRootObject =
sobject.filter === undefined && sobject.orderBy === undefined
? sobject.apiName
: `${sobject.apiName}
(
${
sobject.filter !== undefined
? `where: ${util.inspect(sobject.filter).replace(/'/g, '"')}`
: ""
}
${
sobject.orderBy !== undefined
? `orderBy: { ${sobject.orderBy.field}: { order: ${sobject.orderBy.order} } }`
: ""
}
)`;
const sobjectQuery = `
${topLevelForRootObject} {
edges {
node{
${sobject.fields.toString()}
}
cursor
}
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
}`;
this.sobjects.push(sobjectQuery);
}
async query() {
const recordQuery = `
query {
uiapi {
query {
${this.sobjects.toString()}
}
}
}
`;
return await query(recordQuery);
}
}
export async function query(query, suppliedVariables) {
const variables = suppliedVariables === null ? {} : suppliedVariables;
const queryPayload = JSON.stringify({
query: query,
variables: { where: variables }
});
var requestOptions = {
method: "POST",
headers: {
"X-Chatter-Entity-Encoding": "false",
"Content-Type": "application/json",
Authorization: `Bearer ${process.env.SALESFORCE_ACCESS_TOKEN}`
},
body: queryPayload,
redirect: "follow"
};
const res = await fetch(
`${process.env.SALESFORCE_API_URL}/graphql`,
requestOptions
);
return await res.json();
}