23 lines
No EOL
711 B
SPARQL
23 lines
No EOL
711 B
SPARQL
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
CONSTRUCT {
|
|
?awardingOrganization rdfs:label ?label
|
|
} WHERE {
|
|
{
|
|
{PERSON_URI core:relatedBy ?investigatorRole .
|
|
?investigatorRole a core:PrincipalInvestigatorRole
|
|
}
|
|
union
|
|
{PERSON_URI core:relatedBy ?investigatorRole .
|
|
?investigatorRole a core:CoPrincipalInvestigatorRole
|
|
}
|
|
}
|
|
|
|
?investigatorRole core:relatedBy ?grant .
|
|
?grant a core:Grant .
|
|
?grant core:assignedBy ?awardingOrganization .
|
|
?awardingOrganization a foaf:Organization .
|
|
?awardingOrganization rdfs:label ?label
|
|
} |