-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
44 lines (38 loc) · 803 Bytes
/
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
const fastify = require("fastify");
const mercurius = require("mercurius");
const app = fastify();
const schema = `
type Query {
add(x: Int, y: Int): Int
}
`
const resolvers = {
Query: {
add: async (_, { x, y }) => {
return x + y;
}
}
}
app.register(mercurius, {
schema,
resolvers,
errorFormatter: (result) => {
let statusCode = 500;
console.log("ERRORS", result.errors);
if (result.errors) {
const firstError = result.errors[0];
if (firstError.extensions) {
statusCode = firstError.extensions.statusCode;
}
}
return {
statusCode,
response: result
};
}
})
app.get('/', async function (req, reply) {
const query = '{ add(x: 2, y: 2) }'
return reply.graphql(query)
})
app.listen(4000);