I want to query a set of hardware records and have them sorted by client first and then by hardware id (which is serial: 1, 2, 3…). is this possible with the api?
Similar to sql query:
ORDER BY sensor.client, sensor.id;
I tried adding 2 order parameters to my http request but it seems like it only honors the first order parameter and discards the second one.
My current work-around is just to sort after I get the data from ragic, but it’d be great if I could just get presorted data.