DNG: Overview about artifact with all outgoing and incoming links in all components
I have Configuration Management enabled in DNG V7.0.2.
3 answers
The OSLC APIs certainly allow you to get at all the data, but that's complicated to code and then you have to visualise the information.
It is sufficient to use the All Data LQE endpoint, and then use the Report Builder to build your query (no custom SPARQL should be required). Note that you should not try to do any joins in the report (i.e.not query for more than one relationship) ... just query for the one relationship you are interested in, and select the appropriate sets of attributes of the source and target artifacts.
Comments
The problem with this is that you get the cartesian product across the versions of source and target artifact. For example, if there are 5 versions of a requirement each validated by a test case and there are 3 versions of that test case, you may end up with 15 rows in the report, rather than 3. This can expand exponentially as you add deeper traceability relationships.
Yes, this is why it is important not to query for more than one relationship in a single report (i.e. don't do "deeper traceability relations"). Also, whichever technique you use, you will want to post-process the results, to only keep rows with the distinct concept ID's.