Add support for Turtle and SPARQL

This commit is contained in:
Dan Michael O. Heggø
2014-12-06 21:39:32 +01:00
parent ad0cc7f39d
commit 774d18ed8f
8 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?email
WHERE {
?person a foaf:Person.
?person foaf:name ?name.
?person foaf:mbox ?email.
}