I need to retrieve for each task the preceding and the following task.
Exemple :
Task A (once)--> Task B (if task A success) --> Task C (if task B success).
I found that :
/qrs/event/full?filter=reloadTask.id eq <taskId> --> gives me the preceding task.
qrs/compositeevent/full?filter=compositeRules.reloadTask.id eq <taskId> --> gives me the following task.
Is there an endpoint that gives me both informations in one request ?
Thank you.