prorm API Reference
    Preparing search index...

    Function arrayAll

    • Helper to create array ALL condition PostgreSQL: ALL() operator

      Parameters

      • column: string
      • value: any

      Returns Record<string, any>

      // Find products where all prices are greater than 100
      Product.findAll({ where: arrayAll('prices', 100) })
      // SQL: WHERE 100 > ALL(prices)