mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-11 14:41:06 +02:00
9 lines
183 B
SPARQL
9 lines
183 B
SPARQL
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
|
|
SELECT ?name
|
|
WHERE {
|
|
?x rdf:type foaf:Person .
|
|
?x foaf:name ?name .
|
|
}
|