Sparql to list the title of all resources PREFIX rdf: PREFIX dc: PREFIX mo: PREFIX mol: SELECT ?title WHERE { ?a a mo:resource ; dc:description ?description . } PREFIX rdf: PREFIX dc: PREFIX mo: PREFIX mol: SELECT ?title ?description WHERE { ?a a mo:resource ; dc:title ?title ; dc:description ?description . } PREFIX rdf: PREFIX dc: PREFIX mo: PREFIX mol: SELECT * WHERE { ?a a mo:resource ; dc:title ?title ; dc:description ?description . } PREFIX rdf: PREFIX dc: PREFIX mo: PREFIX mol: SELECT * WHERE { ?s ?o ?p . } PREFIX rdf: PREFIX dc: PREFIX mo: PREFIX mol: SELECT * WHERE { ?o ?p . } # Work in progress curl -H "Content-Type: application/sparql-results+json;charset=UTF-8" "http://localhost:8080/openrdf-sesame/repositories/native?queryLn=SPARQL&query=SELECT+*WHERE+%7B+%3Fs+%3Fr+%3Fb+.+%7DLIMIT+1&infer=true" # This one returns data, seems to have control chars in tho curl "http://localhost:8083/openrdf-sesame/repositories/SYSTEM?queryLn=SPARQL&query=SELECT+*+WHERE+%7B+%3Fs+%3Fr+%3Fb+.+%7D" # this one gives us JSON curl -H "Accept: application/sparql-results+json" "http://localhost:8083/openrdf-sesame/repositories/SYSTEM?queryLn=SPARQL&query=SELECT+*+WHERE+%7B+%3Fs+%3Fr+%3Fb+.+%7D" curl -H "Accept: application/sparql-results+json" "http://localhost:8083/openrdf-sesame/repositories/SYSTEM?queryLn=SPARQL&query=SELECT+*+WHERE { ?o ?p . }" curl -H "Accept: application/sparql-results+json" "http://localhost:8083/openrdf-sesame/repositories/SYSTEM?queryLn=SPARQL&query=SELECT+*+WHERE+%7b+%3curn%3a%2f%2fmol%2f77470%3e+%3fo+%3fp+.+%7d"