# Get names and mboxes, each of which may be optional.

PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?mbox
WHERE
    (?person rdf:type foaf:Person)
  [ (?person foaf:name ?name) ]
  [ (?person foaf:mbox ?mbox) ]
