Dependency Tracking - Only direct dependencies

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?

Does anyone have any ideas? Because our current workaround is:

  1. Download all the flows in YAML format using Archy
  2. Use grep to search in all the flow files.

But as you can guess, when there are lots of flows and they are big, it is quite, inefficient, to say the least...

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.