relpipe-data/examples/rdf-heathers-quotes.sparql
branchv_0
changeset 310 aeda3cb4528d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/relpipe-data/examples/rdf-heathers-quotes.sparql	Mon Jul 27 17:51:53 2020 +0200
@@ -0,0 +1,14 @@
+PREFIX person:     <tag:heathers.globalcode.info,2020:person:>
+PREFIX predicate:  <tag:heathers.globalcode.info,2020:predicate:>
+PREFIX thing:      <tag:heathers.globalcode.info,2020:thing:>
+
+SELECT
+	?firstname
+	?surname
+	?quote
+WHERE {
+	?person predicate:says ?quote .
+	?person predicate:has-firstname ?firstname .
+	?person predicate:has-surname ?surname .
+}
+ORDER BY ?firstname ?surname ?quote