dbcls / LinkedData-Agora

4 stars 0 forks source link

The query used to count the number of triples/documents is not valid SPARQL 1.1 #126

Closed JervenBolleman closed 6 years ago

JervenBolleman commented 6 years ago
SELECT COUNT(*) AS ?c WHERE { ?s ?p ?o }

Must be

SELECT (COUNT(*) AS ?c) WHERE { ?s ?p ?o }

The first one is a virtuoso extension but not valid SPARQL 1.1.

yayamamo commented 6 years ago

Yes. Thanks a lot.

yayamamo commented 6 years ago

Fixed.