AT:
- Using the historic detail rest endpoint /history/detail I can sort by multiple parameters, e.g. first sort by time and if two instances have the same time they are ordered by occurrence
- the new behavior is documented in the dedicated history detail section of the rest api documentation
Hint:
- For the java api this is already possible, e.g.:
historyService.createHistoricDetailQuery() .orderByTime().asc() .orderPartiallyByOccurrence().asc() .list();
- For the task query this already exists. But to implement it analogously you need to add a post endpoint for the history detail endpoint.
This is the controller panel for Smart Panels app
- is depended on by
-
OPT-1250 Import latest occurrence if two variable updates happened at the same time
- Done