SPARQL Optionals
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?mbox
WHERE { ?r rdf:type foaf:Person .
OPTIONAL { ?r foaf:name ?name }
OPTIONAL { ?r foaf:mbox ?mbox }
}
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name ?mbox
WHERE { ?r rdf:type foaf:Person .
OPTIONAL { ?r foaf:name ?name }
OPTIONAL { ?r foaf:mbox ?mbox }
}