vivo/productMods/WEB-INF/rich-export/position/locationForPosition.sparql

12 lines
462 B
SPARQL
Raw Normal View History

PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {
?organization core:hasGeographicLocation ?geographicLocation .
?geographicLocation rdfs:label ?label .
} WHERE {
PERSON_URI core:personInPosition ?position .
?position core:positionInOrganization ?organization .
?organization core:hasGeographicLocation ?geographicLocation .
?geographicLocation rdfs:label ?label .
}