mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 01:30:22 +00:00
8 lines
152 B
SPARQL
8 lines
152 B
SPARQL
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
SELECT ?name ?email
|
|
WHERE {
|
|
?person a foaf:Person.
|
|
?person foaf:name ?name.
|
|
?person foaf:mbox ?email.
|
|
}
|