Hello,
getRuntimeService().createExecutionQuery().executionId(executionId).list()
Is there a possibility that this query returns more than one instance(assuming this is not a process instance id)?
If so what can be the scenario for this?
Also if I supply the activity id like this:
getRuntimeService().createExecutionQuery().executionId(executionId).activityId(activityId).list()
can this return more than one execution?
Thanks.