-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
45 lines (37 loc) · 921 Bytes
/
index.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
import { drizzle } from 'drizzle-orm/better-sqlite3';
import Database from 'better-sqlite3';
import {
users,
ideas,
type NewIdea,
type NewUser,
type User,
} from './db/schema.js';
import { eq } from 'drizzle-orm';
const sqlite = new Database('./db/demo.db');
const db = drizzle(sqlite);
async function addUser(user: NewUser): Promise<User> {
return (await db.insert(users).values(user).returning()).at(0)!;
}
async function addIdea(idea: NewIdea) {
await db.insert(ideas).values(idea);
}
async function getIdeas() {
return await db
.select({
id: ideas.id,
text: ideas.text,
status: ideas.status,
creator: users.name,
})
.from(ideas)
.leftJoin(users, eq(ideas.creator, users.id));
}
const user = await addUser({ name: 'Jane Developer' });
await addIdea({
text: 'Learn how ORMs work',
status: 'pending',
creator: user.id,
});
const allIdeas = await getIdeas();
console.log(allIdeas);