VIVO-472 updated the rich-export sparql queries

This commit is contained in:
tworrall 2013-11-06 15:51:33 -05:00
parent 4e7bfbf783
commit 23e0a4d390
55 changed files with 305 additions and 157 deletions

View file

@ -3,8 +3,10 @@ PREFIX core: <http://vivoweb.org/ontology/core#>
CONSTRUCT {
?superOrganization ?property ?object .
} WHERE {
PERSON_URI core:personInPosition ?position .
?position core:positionInOrganization ?organization .
?organization core:subOrganizationWithin ?superOrganization .
PERSON_URI core:relatedBy ?position .
?position a core:Position .
?position core:relates ?organization .
?organization a foaf:Organization .
?organization obo:BFO_0000051 ?superOrganization .
?superOrganization ?property ?object .
}