2011-07-13 19:15:21 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
|
|
|
|
|
|
|
CONSTRUCT {
|
2012-06-14 13:40:48 +00:00
|
|
|
?grant ?property ?object .
|
2013-11-06 15:51:33 -05:00
|
|
|
?investigatorRole core:relatedBy ?grant .
|
2011-07-13 19:15:21 +00:00
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
{
|
|
|
|
{ PERSON_URI core:relatedBy ?investigatorRole .
|
|
|
|
?investigatorRole a core:PrincipalInvestigatorRole
|
|
|
|
}
|
|
|
|
union
|
|
|
|
{ PERSON_URI core:relatedBy ?investigatorRole .
|
|
|
|
?investigatorRole a core:CoPrincipalInvestigatorRole
|
|
|
|
}
|
2011-07-13 19:15:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 15:51:33 -05:00
|
|
|
?investigatorRole core:relatedBy ?grant .
|
2011-07-13 19:15:21 +00:00
|
|
|
?grant a core:Grant .
|
|
|
|
?grant ?property ?object
|
|
|
|
}
|