I want to do order
queries[]={"method": "orderAsc", "values": ["$id"]}
This parameter is correct? Cause nothing happened
TL;DR
Solution:
Based on the provided code snippet, the correct way to order by in a REST API query would be:
`queries[0]={"method":"orderAsc", "attribute":"$id"}`
This will order the results in ascending order based on the `$id` attribute.