Mercurial > hg > semantic-sia
comparison src/sparql/select_all_from_all_graphs.sparql @ 56:fa1ca32c6a17
new
author | stevenh |
---|---|
date | Tue, 02 Apr 2013 23:10:42 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
55:5be8173a2b95 | 56:fa1ca32c6a17 |
---|---|
1 PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
2 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
3 PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
4 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> | |
5 PREFIX abc: <http://example.org/abc#> | |
6 PREFIX seq: <http://example.org/seq#> | |
7 PREFIX sia: <http://example.org/sia#> | |
8 | |
9 SELECT ?g ?s ?p ?o | |
10 WHERE | |
11 { | |
12 GRAPH ?g | |
13 { | |
14 ?s ?p ?o | |
15 } | |
16 } | |
17 ORDER BY ?g ?s ?p ?o |