After a fresh installation of VOS 5.0.4, I ran the following queries: 1. OK sparql select distinct ?g where {graph ?g {?s ?p ?o}} order by (?g); Result: http://localhost:8890/DAV http://www.openlinksw.com/schemas/virtrdf#
2. NOK: name is repeated sparql select ?g count(?g) where {graph ?g {?s ?p ?o}} order by (?g); Result: http://localhost:8890/DAV 2125 http://localhost:8890/DAV 895 3. NOK: should be http://localhost:8890/DAV sparql select distinct ?g where {graph ?g {?s ?p ?o}} order by (?g) limit 1; Result: http://www.openlinksw.com/schemas/virtrdf# 4. NOK: should be http://www.openlinksw.com/schemas/virtrdf# sparql select distinct ?g where {graph ?g {?s ?p ?o}} order by (?g) limit 1 offset 2; Result: - Pierre