Hi,
I need to filter instantly to my collection based on 2 things as part of a request to book equipment:
- Categories
- Time Needed - I will compare the existing unavailability of the item against this. The logic for this is (end1 < start2) || (start1 > end2).
The filtering is working for Categories. I would like to find out how I could do filtering for the Time Needed as it’s logic involves OR operator but the filtering logic only supports purely AND / OR.
Thank you!