blob: 3b9d51068aca017a88d9e17bbf6c93e647a93dfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX ex: <http://example.org/things#>
SELECT ?name ?nick ?plan ?dept
WHERE
{
?person
a foaf:Person;
foaf:name ?name .
GRAPH ?x {
[] foaf:name ?name;
foaf:nick ?nick
}
OPTIONAL {
?person ex:healthplan ?plan
OPTIONAL { ?person ex:department ?dept }
}
}
|