mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 16:39:30 +02:00
15 lines
261 B
SPARQL
15 lines
261 B
SPARQL
# Get names of people, together with the names of people they know.
|
|
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
|
|
SELECT ?name ?name2
|
|
WHERE
|
|
{ ?person foaf:name ?name .
|
|
OPTIONAL {
|
|
?person foaf:knows ?p2 .
|
|
?p2 foaf:name ?name2 .
|
|
}
|
|
}
|
|
|
|
|