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 .
|
|
|
|
?investigatorRole core:roleContributesTo ?grant .
|
2011-07-13 19:15:21 +00:00
|
|
|
} WHERE {
|
|
|
|
{
|
|
|
|
{PERSON_URI core:hasPrincipalInvestigatorRole ?investigatorRole }
|
|
|
|
union
|
|
|
|
{PERSON_URI core:hasCo-PrincipalInvestigatorRole ?investigatorRole }
|
|
|
|
}
|
|
|
|
|
2011-12-08 19:41:26 +00:00
|
|
|
?investigatorRole core:roleContributesTo ?grant .
|
2011-07-13 19:15:21 +00:00
|
|
|
?grant a core:Grant .
|
|
|
|
?grant ?property ?object
|
|
|
|
}
|