Mercurial > hg > semantic-sia
annotate src/sparql/select_all_from_all_graphs.sparql @ 94:fedf516f6a78 tip
test file
author | stevenh |
---|---|
date | Mon, 29 Dec 2014 15:16:22 +0000 |
parents | fa1ca32c6a17 |
children |
rev | line source |
---|---|
stevenh@56 | 1 PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> |
stevenh@56 | 2 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> |
stevenh@56 | 3 PREFIX owl: <http://www.w3.org/2002/07/owl#> |
stevenh@56 | 4 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> |
stevenh@56 | 5 PREFIX abc: <http://example.org/abc#> |
stevenh@56 | 6 PREFIX seq: <http://example.org/seq#> |
stevenh@56 | 7 PREFIX sia: <http://example.org/sia#> |
stevenh@56 | 8 |
stevenh@56 | 9 SELECT ?g ?s ?p ?o |
stevenh@56 | 10 WHERE |
stevenh@56 | 11 { |
stevenh@56 | 12 GRAPH ?g |
stevenh@56 | 13 { |
stevenh@56 | 14 ?s ?p ?o |
stevenh@56 | 15 } |
stevenh@56 | 16 } |
stevenh@56 | 17 ORDER BY ?g ?s ?p ?o |