Using the API, is it possible to filter entities using filter groups?
My app enables users to schedule an appointment. They can filter the available appointment slots based on the required skill (of the workers assigned to the slot).
Workers are pre-assigned to appointment slots, but they are divided using two relationship fields; “coaches” and “fixers”.
I want to search for available appointment slots, based on the specific skill of a coach OR a fixer. Results have to be after a specific date.
You can match any filter conditions available in the browser when you make queries.
Fun fact: under the hood the website is making the api call and then returning the results as the page loads.
Whenever I need to make a complex query I open developer tools to see network activity then open a view that matches the search. Find the activity that contains the command/ query api call and review the inputs. That’s the exact api call you want to make.
Copy + paste