Helper to create array ALL condition PostgreSQL: ALL() operator
// Find products where all prices are greater than 100Product.findAll({ where: arrayAll('prices', 100) })// SQL: WHERE 100 > ALL(prices) Copy
// Find products where all prices are greater than 100Product.findAll({ where: arrayAll('prices', 100) })// SQL: WHERE 100 > ALL(prices)
Helper to create array ALL condition PostgreSQL: ALL() operator