-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
42 lines (38 loc) · 1.23 KB
/
utils.ts
File metadata and controls
42 lines (38 loc) · 1.23 KB
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
import { ClientContract } from "@zenstackhq/orm";
import { SchemaType } from "./zenstack/schema";
export function createPosts(db: ClientContract<SchemaType>) {
return db.post.createMany({
data: [
{ id: 1, title: 'Post1', slug: 'post1', content: 'First post' },
{ id: 2, title: 'Post2', slug: 'post2', published: true, viewCount: 1 },
]})
}
export async function createUsersAndPosts(db: ClientContract<SchemaType>) {
// user1 with 1 post
await db.user.create({
data: {
id: 1,
email: 'u1@test.com',
posts: {
create: [
{ id: 1, title: 'Post1', content: 'First post', slug: 'post1' },
]
}
}
});
// user2 with two posts
await db.user.create({
data: {
id: 2,
email: 'u2@test.com',
posts: {
create: [
{ id: 2, title: 'Post2', slug: 'post2', viewCount: 2 },
{ id: 3, title: 'Post3', slug: 'post3', published: true, viewCount: 1 },
]
}
}
});
// a post not owned by any user
await db.post.create({ data: { id: 4, title: 'Post4', slug: 'post4', viewCount: 3 }});
}