How to find modules linked to a stream that is associated with a global stream
When global configuration is enabled, a global stream is associated with a component, This global stream can then have streams associated with it for different applications such as DOORS Next Generation and Quality Manager. I'm assuming that if modules are created with these streams they are linked to those streams.
Is there any way of finding out which streams (global and/or local) are associated with DOORS Next Generation modules and Quality Management elements ?
One answer
you can put an url like this in a web browser and it will return a json with the detail of which configurations are part of the global configuration
the same as above but decoded
to know which modules are part of a configuration, you can go to rm/admin -> Debug -> "SPARQL Query" set the configuration and project for which you want to know the modules and run a sparql query like this
PREFIX rm: <http://www.ibm.com/xmlns/rdm/rdf/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dc: <http://purl.org/dc/terms/>
PREFIX jfs: <http://jazz.net/xmlns/foundation/1.0/>
PREFIX rmTypes:<http://www.ibm.com/xmlns/rdm/types/>
PREFIX rrmNav: <http://com.ibm.rdm/navigation#>
SELECT ?ArtifactId ?Resource ?Title
WHERE {
?Resource dc:title ?Title .
?Resource dc:identifier ?ArtifactId .
?Resource rmTypes:ArtifactFormat ?format .
FILTER regex(str(?format), "#Module") .
}