I’m looking at the first examples of flowable http, and I came across this call sequence:
List<HistoricProcessInstance> l = historyService.createHistoricProcessInstanceQuery()
.processInstanceId(processInstanceId)
.list();
I’m wondering why it is returning a list, since I thought the process instance id was unique. Isn’t that so?