-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathqueries.js
38 lines (34 loc) · 941 Bytes
/
queries.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
const { db } = require("../pgAdaptor");
const { GraphQLObjectType, GraphQLID } = require("graphql");
const { UserType, ProjectType } = require("./types");
const RootQuery = new GraphQLObjectType({
name: "RootQueryType",
type: "Query",
fields: {
project: {
type: ProjectType,
args: { id: { type: GraphQLID } },
resolve(parentValue, args) {
const query = `SELECT * FROM project WHERE id=$1`;
const values = [args.id];
return db
.one(query, values)
.then(res => res)
.catch(err => err);
}
},
user: {
type: UserType,
args: { id: { type: GraphQLID } },
resolve(parentValue, args) {
const query = `SELECT * FROM users WHERE id=$1`;
const values = [args.id];
return db
.one(query, values)
.then(res => res)
.catch(err => err);
}
}
}
});
exports.query = RootQuery;