const products = await db.query.product.findMany({
where: eq(product.active, true),
with: {
prices: {
where: eq(price.productPriceType, productType),
},
},
const products = await db.query.product.findMany({
where: eq(product.active, true),
with: {
prices: {
where: eq(price.productPriceType, productType),
},
},