-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgraphql.ts
293 lines (272 loc) · 6.03 KB
/
graphql.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import { makeExecutableSchema } from "@graphql-tools/schema";
import { createYoga } from "graphql-yoga";
import fs from "node:fs";
/**
* Simple GraphQL server implementation for testing purposes
*
* This is a simple GraphQL server implementation for testing purposes.
* It is not intended to be used in production.
*
* It is used to test the GraphQL schema and resolvers.
*
*/
// Define types
interface User {
id: string;
name: string;
email: string;
createdAt: string;
updatedAt: string | null;
}
interface Post {
id: string;
title: string;
content: string;
published: boolean;
authorId: string;
createdAt: string;
updatedAt: string | null;
}
interface Comment {
id: string;
text: string;
postId: string;
authorId: string;
createdAt: string;
}
interface CreateUserInput {
name: string;
email: string;
}
interface UpdateUserInput {
name?: string;
email?: string;
}
interface CreatePostInput {
title: string;
content: string;
published?: boolean;
authorId: string;
}
interface AddCommentInput {
text: string;
postId: string;
authorId: string;
}
// Define resolver context type
type ResolverContext = Record<string, never>;
// Read schema from file
const typeDefs = fs.readFileSync("./schema-simple.graphql", "utf-8");
// Create mock data
const users: User[] = [
{
id: "1",
name: "John Doe",
email: "john@example.com",
createdAt: new Date().toISOString(),
updatedAt: null,
},
{
id: "2",
name: "Jane Smith",
email: "jane@example.com",
createdAt: new Date().toISOString(),
updatedAt: null,
},
{
id: "3",
name: "Bob Johnson",
email: "bob@example.com",
createdAt: new Date().toISOString(),
updatedAt: null,
},
];
const posts: Post[] = [
{
id: "1",
title: "First Post",
content: "This is my first post",
published: true,
authorId: "1",
createdAt: new Date().toISOString(),
updatedAt: null,
},
{
id: "2",
title: "GraphQL is Awesome",
content: "Here is why GraphQL is better than REST",
published: true,
authorId: "1",
createdAt: new Date().toISOString(),
updatedAt: null,
},
{
id: "3",
title: "Yoga Tutorial",
content: "Learn how to use GraphQL Yoga",
published: false,
authorId: "2",
createdAt: new Date().toISOString(),
updatedAt: null,
},
];
const comments: Comment[] = [
{
id: "1",
text: "Great post!",
postId: "1",
authorId: "2",
createdAt: new Date().toISOString(),
},
{
id: "2",
text: "I learned a lot",
postId: "1",
authorId: "3",
createdAt: new Date().toISOString(),
},
{
id: "3",
text: "Looking forward to more content",
postId: "2",
authorId: "2",
createdAt: new Date().toISOString(),
},
];
// Define resolvers
const resolvers = {
Query: {
user: (
_parent: unknown,
{ id }: { id: string },
_context: ResolverContext,
) => users.find((user) => user.id === id),
users: () => users,
post: (
_parent: unknown,
{ id }: { id: string },
_context: ResolverContext,
) => posts.find((post) => post.id === id),
posts: () => posts,
commentsByPost: (
_parent: unknown,
{ postId }: { postId: string },
_context: ResolverContext,
) => comments.filter((comment) => comment.postId === postId),
},
Mutation: {
createUser: (
_parent: unknown,
{ input }: { input: CreateUserInput },
_context: ResolverContext,
) => {
const newUser: User = {
id: String(users.length + 1),
name: input.name,
email: input.email,
createdAt: new Date().toISOString(),
updatedAt: null,
};
users.push(newUser);
return newUser;
},
updateUser: (
_parent: unknown,
{ id, input }: { id: string; input: UpdateUserInput },
_context: ResolverContext,
) => {
const userIndex = users.findIndex((user) => user.id === id);
if (userIndex === -1) throw new Error(`User with ID ${id} not found`);
users[userIndex] = {
...users[userIndex],
...input,
updatedAt: new Date().toISOString(),
};
return users[userIndex];
},
deleteUser: (
_parent: unknown,
{ id }: { id: string },
_context: ResolverContext,
) => {
const userIndex = users.findIndex((user) => user.id === id);
if (userIndex === -1) return false;
users.splice(userIndex, 1);
return true;
},
createPost: (
_parent: unknown,
{ input }: { input: CreatePostInput },
_context: ResolverContext,
) => {
const newPost: Post = {
id: String(posts.length + 1),
title: input.title,
content: input.content,
published: input.published ?? false,
authorId: input.authorId,
createdAt: new Date().toISOString(),
updatedAt: null,
};
posts.push(newPost);
return newPost;
},
addComment: (
_parent: unknown,
{ input }: { input: AddCommentInput },
_context: ResolverContext,
) => {
const newComment: Comment = {
id: String(comments.length + 1),
text: input.text,
postId: input.postId,
authorId: input.authorId,
createdAt: new Date().toISOString(),
};
comments.push(newComment);
return newComment;
},
},
User: {
posts: (parent: User) =>
posts.filter((post) => post.authorId === parent.id),
comments: (parent: User) =>
comments.filter((comment) => comment.authorId === parent.id),
},
Post: {
author: (parent: Post) => users.find((user) => user.id === parent.authorId),
comments: (parent: Post) =>
comments.filter((comment) => comment.postId === parent.id),
},
Comment: {
post: (parent: Comment) => posts.find((post) => post.id === parent.postId),
author: (parent: Comment) =>
users.find((user) => user.id === parent.authorId),
},
};
// Create executable schema
const schema = makeExecutableSchema({
typeDefs,
resolvers,
});
// Create Yoga instance
const yoga = createYoga({ schema });
// Start server with proper request handler
const server = Bun.serve({
port: 4000,
fetch: (request) => {
// Add dev logger for incoming requests
console.log(
`[${new Date().toISOString()}] Incoming request: ${request.method} ${
request.url
}`,
);
return yoga.fetch(request);
},
});
console.info(
`GraphQL server is running on ${new URL(
yoga.graphqlEndpoint,
`http://${server.hostname}:${server.port}`,
)}`,
);