Skip to content

Instantly share code, notes, and snippets.

View riandoza's full-sized avatar
🏠
Everyday is holiday

Rizki Doza riandoza

🏠
Everyday is holiday
View GitHub Profile
@riandoza
riandoza / prisma-sqlite-bulk.js
Created September 15, 2023 18:15
Prisma SQLite Bulk Insert or Update
const domains = ['google.com','github.com','instagram.com'];
/*** Method 1 ***/
const upsertManyDomains = domains.map((post) =>
prisma.domains.upsert({
where: { domain: post.trim() },
create: {
domain: post.trim(),
},
update: {