ok so I've got two collections Users [ id, username, password, dob, gender, ...] Responses [ id, user_id, recipient_id, state, username, recipient_username, .... ] All I want done is to get view all the users from (Users Collection) that are not in (Responses Collection) based on the the user_id. So...
precode var userId = request.get("userId"); var users = XHR.send("GET", "https://api.appery.io/rest/1/db/users"); var responses = request.get("https://api.appery.io/rest/1/db/co...
precode var userId = request.get("userId"); var usercollection = "Users" var responsecollection = "https://api.appery.io/rest/1/db/collections/Responses" try { var XHRResponse = XHR.send("GET", "https:...
How to do I query two collections at once? And then respond with the collection set where the 'id' in the user collection that does not exist in responses collection.