wod
wod
Explore posts from servers
KKysely
Created by wod on 7/22/2023 in #help
where array_field has enum value
Thank you ❤️
8 replies
KKysely
Created by wod on 7/22/2023 in #help
where array_field has enum value
I think I got it working:
const shippingMethods2 = await this.dbService.db
.selectFrom('ShippingMethod')
.where(sql.val(DBStore.PUBLIC), '=', sql`ANY(${sql.ref('stores')})`)
.where('minAmount', '>=', 0)
.where('minWeight', '>=', 0)
.selectAll()
.execute();
const shippingMethods2 = await this.dbService.db
.selectFrom('ShippingMethod')
.where(sql.val(DBStore.PUBLIC), '=', sql`ANY(${sql.ref('stores')})`)
.where('minAmount', '>=', 0)
.where('minWeight', '>=', 0)
.selectAll()
.execute();
8 replies