Is my logic correct

0
Dear forum,   I edit my microflow as follows. Are there any redundent steps I shall delete? I was trying to retreieve all the tables available for my users to book.
asked
1 answers
1

You can probably solve this more easily with a single xpath retrieve (or rather, two and a subtract action for performance reasons):

 

1. Retrieve all tables

2. Retrieve all tables with a reservation that overlap with the selected start time

3. Subtract the list from step 2 from the list in step 1. This should give you your list of available tables.

answered