Hello
I have a question about the dependency tracking tool. Let's imagine I want to get all the resources that consume a specific data action. I would use this request:
GET /api/v2/architect/dependencytracking/object?id={{data_action_id}}&objectType=DATAACTION&consumingResources=true
However, this returns also the flows that indirectly consume the data action via common module call. So, if InboundFlow_A
calls CommonModule_B
, and CommonModule_B
uses the data action, then the API request returns both the common module and the inbound flow.
Is there any way to get the resources that only consume it directly?