16 lines
539 B
SPARQL
16 lines
539 B
SPARQL
![]() |
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
||
|
PREFIX owl: <http://www.w3.org/2002/07/owl#Thing>
|
||
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||
|
|
||
|
CONSTRUCT {
|
||
|
?person <http://purl.obolibrary.org/obo/RO_0000053> _:leaderRole .
|
||
|
_:leaderRole <http://purl.obolibrary.org/obo/RO_0000052> ?person .
|
||
|
_:leaderRole a vivo:LeaderRole .
|
||
|
_:leaderRole vivo:roleContributesTo ?org .
|
||
|
?org vivo:contributingRole _:leaderRole .
|
||
|
} WHERE {
|
||
|
{ ?person vivo:currentlyHeadOf ?org }
|
||
|
UNION
|
||
|
{ ?org vivo:currentlyHeadedBy ?person }
|
||
|
}
|