-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest7.js
78 lines (72 loc) · 1.65 KB
/
test7.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
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
const { PrismaClient } = eval('require("@prisma/client")');
const prisma = new PrismaClient();
export default async function handler(req, res) {
try {
await Promise.all([prisma.profile.deleteMany(), prisma.post.deleteMany()]);
await prisma.user.deleteMany();
const createdUser = await prisma.user.create({
data: seedUser,
});
const createdUser2 = await prisma.user.create({
data: seedUser2,
});
res.statusCode = 200;
res.json({ success: "true" });
} catch (error) {
console.error(error);
res.statusCode = 500;
res.json({ error: error.message });
}
}
const seedUser = {
email: "[email protected]",
name: "Jane",
profile: {
create: {
bio: "Health Enthusiast",
},
},
posts: {
create: [
{
title:
"Comparing Database Types: How Database Types Evolved to Meet Different Needs",
content:
"https://www.prisma.io/blog/comparison-of-database-models-1iz9u29nwn37/",
},
{
title: "Analysing Sleep Patterns: The Quantified Self",
content: "https://quantifiedself.com/get-started/",
},
{
title: "Prisma 2 Docs",
content: "https://www.prisma.io/docs/",
},
],
},
};
const seedUser2 = {
email: "[email protected]",
name: "Toru Takemitsu",
profile: {
create: {
bio: "Musician",
},
},
posts: {
create: [
{
title: "Requiem for String Orchestra",
content: "",
},
{
title: "Music of Tree",
content: "",
},
{
title: "Waves for clarinet, horn, two trombones and bass drum ",
content: "",
},
],
},
};