Hi,
I was wondering if there is a way I can pull from list using multiple creterias. My puller token is an item consisting of labels: "aisle_id" and "bay_id"
My list consists of all Racks which has labels: "bay_id", "aisle_1" and "aisle_2".
I want to use AND and OR functions in the same pull query, something like:
WHERE bay_id = Puller.bay_id && (aisle_1 = Puller.aisle_id || aisle_2 = Puller.aisle_id)
With this query, the pulled value matches the first creteria but is not matching the second creteria (the one with and OR condition in brackets). In addition I am also getting this error in the console:
Is this the correct format to use for the Pull query?
Thanks,