nikivi
nikivi
Explore posts from servers
DTDrizzle Team
Created by nikivi on 6/28/2023 in #help
Need help with join, ChatGPT says drizzle orm does not support it
7 replies
DTDrizzle Team
Created by nikivi on 6/27/2023 in #help
help with drizzle types not inferred well
async function addTopic(topic: string, content: string, parent?: string) {
try {
let parentId: number | null = null
await db.transaction(async (tx) => {
await tx
.select({ id: topics.id })
.from(topics)
.where({ name: topic, ownerId: 1 })
.all()
})
async function addTopic(topic: string, content: string, parent?: string) {
try {
let parentId: number | null = null
await db.transaction(async (tx) => {
await tx
.select({ id: topics.id })
.from(topics)
.where({ name: topic, ownerId: 1 })
.all()
})
29 replies
DTDrizzle Team
Created by nikivi on 6/27/2023 in #help
need to change schema to reference another instance
268 replies
DTDrizzle Team
Created by nikivi on 6/26/2023 in #help
Get issue trying to run libsql/turso example
147 replies