rich-export queries for funding - pull in less information about the awarding organization

This commit is contained in:
stellamit 2012-06-14 13:40:48 +00:00
parent 093a3eb301
commit 440220d26a
2 changed files with 7 additions and 3 deletions

View file

@ -1,8 +1,11 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {
?awardingOrganization ?p ?o
?investigatorRole core:roleContributesTo ?grant .
?grant core:grantAwardedBy ?awardingOrganization .
?awardingOrganization rdfs:label ?label
} WHERE {
{
{PERSON_URI core:hasPrincipalInvestigatorRole ?investigatorRole }
@ -13,5 +16,5 @@ CONSTRUCT {
?investigatorRole core:roleContributesTo ?grant .
?grant a core:Grant .
?grant core:grantAwardedBy ?awardingOrganization .
?awardingOrganization ?p ?o
?awardingOrganization rdfs:label ?label
}

View file

@ -2,7 +2,8 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
CONSTRUCT {
?grant ?property ?object
?grant ?property ?object .
?investigatorRole core:roleContributesTo ?grant .
} WHERE {
{
{PERSON_URI core:hasPrincipalInvestigatorRole ?investigatorRole }