1

Is it possible to list the named graphs using a SPARQL query?

flag

3 Answers

2

FWIW, this SPARQL query will often do what you want, especially if the SPARQL endpoint defaults to including all its named graphs in the query dataset:

SELECT DISTINCT ?g
WHERE {
  GRAPH ?g {
    ?s ?p ?o
  {
}

Lee

link|flag
There is a typo in the query. The closing bracket of the GRAPH section should be a true closing bracket, but it is an opening bracket, instead. – ROWLEX Admin Apr 12 at 9:38
1

You could try using the SPARQL Endpoint Probe Service

link|flag
1 
Really interesting service! – Egon Willighagen Nov 2 at 20:56
0

I just discovered that the Virtuoso Conductor has a Graphs tab under the RDF tab, listing all graphs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.