From the docs:
You can also chain multiple where() methods to create more specific queries (logical AND).
How can I perform an OR
query?
Example:
- Give me all documents where the field
status
isopen
ORupcoming
- Give me all documents where the field
status == open
ORcreatedAt <= <somedatetime>
OR isn't supported
But if you need that you can do It in your code
Ex : if i want query products where (Size Equal Xl OR XXL : AND Gender is Male)