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