-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.ts
130 lines (111 loc) · 2.36 KB
/
server.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
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
import { graphqlHTTP } from "express-graphql";
import express from "express";
import { buildSchema } from "graphql";
import cors from "cors";
const graphqlSchema = buildSchema(`
type NullableViewer {
authToken: String!
username: String!
}
type NonNullableViewer {
authenticated: Boolean!
authToken: String
username: String
}
type App {
viewer: NonNullableViewer!
}
type Query {
viewer: NullableViewer
app: App
}
type Mutation {
login: NullableViewer
logout: NullableViewer
loginApp: App!
logoutApp: App!
}
`);
const app = express();
interface Viewer {
authToken: string
username: string
}
interface NonNullableViewer {
authenticated: boolean
authToken?: string
username?: string
}
interface Viewer {
authToken: string
username: string
}
type NullableViewer = Viewer | null
interface App {
viewer: NonNullableViewer
}
interface Root {
viewer: NullableViewer
app: App
}
const context: Root = {
app: {
viewer: {
authenticated: false
}
},
viewer: null,
};
app.use(cors());
app.use(
"/graphql",
graphqlHTTP(() => {
return {
schema: graphqlSchema,
graphiql: true,
context,
rootValue: {
/** WORKS: non nullable viewer */
app: (_: any, ctx: typeof context) => {
return ctx.app
},
loginApp: (_: any, ctx: typeof context) => {
console.log('loginApp')
ctx.app.viewer = {
authenticated: true,
username: 'lachlan',
authToken: 'token'
}
return ctx.app
},
logoutApp: (_: any, ctx: typeof context) => {
console.log('logoutApp')
ctx.app.viewer = {
authenticated: false,
}
return ctx.app
},
/** BUG: nullable viewer */
viewer: (_: any, ctx: typeof context) => {
return ctx.viewer;
},
login: (_: any, ctx: typeof context) => {
console.log('login')
ctx.viewer = {
username: 'lachlan',
authToken: 'token'
}
return ctx.viewer
},
logout (_: any, ctx: typeof context) {
console.log('logout')
ctx.viewer = null
return ctx.viewer
}
},
};
})
);
app.listen(4000, () => {
console.log("Started server on 4000");
});