Back to Drizzle Orm

DrizzleORM v0.30.10 release

src/content/docs/latest-releases/drizzle-orm-v03010.mdx

latest493 B
Original Source

New Features

🎉 .if() function added to all WHERE expressions

Select all posts with views greater than 100

ts
async function someFunction(views = 0) {
  await db
    .select()
    .from(posts)
    .where(gt(posts.views, views).if(views > 100));
}

Bug Fixes

  • Fixed internal mappings for sessions .all, .values, .execute functions in AWS DataAPI

Read get started guide with AWS DataAPI in the documentation.