16 lines
No EOL
591 B
SPARQL
16 lines
No EOL
591 B
SPARQL
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
|
|
|
CONSTRUCT {
|
|
?organization core:hasGeographicLocation ?geographicLocation .
|
|
?geographicLocation rdfs:label ?label .
|
|
} WHERE {
|
|
PERSON_URI core:relatedBy ?position .
|
|
?position a core:Position .
|
|
?position core:relates ?organization .
|
|
?organization a foaf:Organization .
|
|
?organization obo:RO_0001025 ?geographicLocation .
|
|
?geographicLocation rdfs:label ?label .
|
|
} |