0
Construct a Parse Class Query
I am looking to construct a query to get specific list of Class Objects using the Parse Rest API. I have already populated data with the Data Browser. I have been able to use URL parameters such as:
order=lastName,priority&limit=500which have worked just fine. However when I try to build a query (outlined here) such as:
where={'user':'[preferences:current-user]'}&order=lastName,priority&limit=500I get no response. What am I doing with this URL that is incorrect?Service d'assistance aux clients par UserEcho
<action name="sync-contacts"> <assign property="var:params" value="where={"user":"[preferences:current-user]"}" encoding="url"/> <assign property="datasource:parseSyncDown.source" value="https://api.parse.com/1/classes/Contact?[var:params]&order=lastName,priority&limit=500" /> <alpha target="WAITING" value="1" time=".1" /> </action>The quotes within the 'value' need to be swapped out with: "