0.30.10
版本发布时间: 2024-05-01 22:10:12
drizzle-team/drizzle-orm最新发布版本:0.34.1(2024-10-08 04:07:09)
New Features
🎉 .if()
function added to all WHERE expressions
Select all users after cursors if a cursor value was provided
async function someFunction(categories: string[] = [], views = 0) {
await db
.select()
.from(users)
.where(
and(
gt(posts.views, views).if(views > 100),
inArray(posts.category, categories).if(categories.length > 0),
),
);
}
Bug Fixes
- Fixed internal mappings for sessions
.all
,.values
,.execute
functions in AWS DataAPI
1、 drizzle-orm-0.30.10-dist.tgz 657.71KB