vivo/productMods/WEB-INF/rich-export/funding/grants.sparql

17 lines
514 B
SPARQL
Raw Normal View History

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 {
?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 }
}
?investigatorRole core:roleContributesTo ?grant .
2011-07-13 19:15:21 +00:00
?grant a core:Grant .
?grant ?property ?object
}