blob: df1ed919afbb65676878e0a25998ed4450ef809a [file] [log] [blame]
# Get name, and optionally the mbox, of each person
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?mbox
WHERE
{ ?person foaf:name ?name .
OPTIONAL { ?person foaf:mbox ?mbox}
}