Hello,
I only want to get a list of graphs with a specific subject area but with the following query
SELECT ?graph ?uri ?ext
WHERE {
GRAPH ?graph {
?graph teamwork:externalGraphURI ?ext .
?graph swa:defaultNamespace ?uri .
?graph edg:subjectArea <urn:x-tb-governance:Locations_v2> .
}
}
all EDG graphs are checked, too. Therefore I get this access error:
...
does not have read access for graph urn:x-tb:concurrentEDGUsers
How can I ignore the internal EDG graphs in my query?
Thanks in advance, Klaudia