Skip to content

@orama/orama 3.1.11

What's Changed

const results = search(db, {
  term: "phone",
  where: {
    or: [
      {
        and: [
          { category: "electronics" },
          { price: { lt: 100 } }
        ]
      },
      {
        and: [
          { not: { brand: "random-brand" } },
          { price: { lt: 150 } }
        ]
      }
    ]
  }
})

Full Changelog: https://github.com/oramasearch/orama/compare/v3.1.10...v3.1.11