-
Notifications
You must be signed in to change notification settings - Fork 0
/
resolvers.js
78 lines (76 loc) · 2 KB
/
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
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
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
const qs = require("querystring");
const fetch = require("node-fetch");
const API_URL =
"https://qa-efc-roster-818058906.ap-southeast-2.elb.amazonaws.com/api/";
module.exports = {
Query: {
events: (_, args) =>
fetch(`${API_URL}events?${qs.stringify({ ...args })}`)
.then(response => response.json())
.then(data => data.data)
.catch(e => {
throw new Error(e);
}),
services: (_, args) =>
fetch(`${API_URL}services?${qs.stringify({ ...args })}`)
.then(response => response.json())
.then(data => data.data)
.catch(e => {
throw new Error(e);
}),
service: (_, args) =>
fetch(`${API_URL}services?${args.id}`)
.then(response => response.json())
.then(data => data.data)
.catch(e => {
throw new Error(e);
})
},
Event: {
dateString: event => event.date,
positions: async event => {
const services = await fetch(`${API_URL}services`)
.then(response => response.json())
.then(data => data.data)
.catch(e => {
throw new Error(e);
});
const service = services.find(
service => service.name === event.serviceInfo.category
);
return service.positions;
}
},
Mutation: {
modifyEvent: (_, args) => {
const body = JSON.stringify({
date: args.date,
name: args.name,
role: args.role,
serviceInfo: {
category: "english",
date: args.date,
footnote: "",
id: args.id,
skipReason: "",
skipService: false
}
});
return fetch(`${API_URL}events`, {
method: "PUT",
headers: {
"Content-Type": "application/json"
},
body
})
.then(response => response.json())
.then(data => {
return data.data;
})
.catch(e => {
throw new Error(e);
});
}
}
};