In step 5 you have incorrect mapping. You should pass where request parameter, not Segment_1 and Segment_3 (here is more information) - http://docs.appery.io/documentation/b... (see Query Constraints )
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
In step 5 you have incorrect mapping. You should pass where request parameter, not Segment_1 and Segment_3 (here is more information) - http://docs.appery.io/documentation/b... (see Query Constraints )
So, instead of using the list service, i must use the query service? The query service only allows for one local storage variable to be passed to the where clause in the request. In my case I might need 2 fields to be passed to the where clause. I will need to display data that matches segment_1 and segment_3
yes
My concern is that I can only pass 1 local storage variable to the where clause, whereas I need to pass 2 local storage variables to it
Add JS in mapping. Should be something like this prereturn '{"Segment_1": "' + localStorage.getItem("Segment_1") + '", "Segment_3": "' + localStorage.getItem("Segment_3") + '"}';/pre
Thank you so much. You've been a great help. That works exactly the way I need it to work.