Describe the bug
When I query the HistoricActivityInstance for the specified process instance, I want to sort by ActivityId, but the data returned does not match the requirements
Expected behavior
When I query the HistoricActivityInstance for the specified process instance, I want to sort by ActivityId
Code
List historicActivityInstances = historyService.createHistoricActivityInstanceQuery()
.processInstanceId(processInstanceId)
.orderByActivityId()
.asc()
.list();
Describe the bug When I query the HistoricActivityInstance for the specified process instance, I want to sort by ActivityId, but the data returned does not match the requirements
Expected behavior When I query the HistoricActivityInstance for the specified process instance, I want to sort by ActivityId
Code List historicActivityInstances = historyService.createHistoricActivityInstanceQuery()
.processInstanceId(processInstanceId)
.orderByActivityId()
.asc()
.list();
Additional context