-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
34 lines (32 loc) · 875 Bytes
/
utils.ts
File metadata and controls
34 lines (32 loc) · 875 Bytes
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
import { ClientContract } from "@zenstackhq/orm";
import { SchemaType } from "./zenstack/schema";
import { inspect } from "util";
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' },
]
}
},
include: { posts: true }
});
// user2 with two posts
await db.user.create({
data: {
id: 2,
email: 'u2@test.com',
posts: {
create: [
{ id: 2, title: 'Post2' },
{ id: 3, title: 'Post3', published: true },
]
}
},
include: { posts: true }
});
}