forked from contra/graphql-helix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.ts
39 lines (38 loc) · 950 Bytes
/
schema.ts
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
import { GraphQLObjectType, GraphQLSchema, GraphQLString } from "graphql";
export const schema = new GraphQLSchema({
mutation: new GraphQLObjectType({
name: "Mutation",
fields: () => ({
login: {
args: {
name: {
type: GraphQLString,
},
},
type: GraphQLString,
resolve: (_root, args, ctx) => {
ctx.session.name = args.name;
return "Logged in!";
},
},
logout: {
type: GraphQLString,
resolve: async (_root, _args, ctx) => {
await new Promise((resolve) => ctx.session.destroy(() => resolve()));
return "Logged out!";
},
},
}),
}),
query: new GraphQLObjectType({
name: "Query",
fields: () => ({
yourName: {
type: GraphQLString,
resolve: async function (_root, _args, ctx) {
return ctx.session.name;
},
},
}),
}),
});