-
Type:
Suggestion
-
Resolution: Unresolved
-
Component/s: Assets - AQL
-
None
-
2
-
4
Problem
When the Objects are nested and have dependencies like below, then we do not have any AQL that can list all objects that are directly or indirectly linked to first object.
- Object A has Outbound Ref to Object B
- Object B has Outbound Ref to Object C
- Object C has Outbound Ref to Object D and so on.
Here technically Object C is linked to A through B.
But we do not have any AQL function that can show the nested dependencies.
Suggested Solution
Create a AQL function to list down all dependent objects.
Why This Is Important
This will allow customers to list all objects that are referenced by other objects.
Workaround
Use AQL like : object having inR(name = C) would give B