vivo/productMods/WEB-INF/rich-export/presentation/meetingLocation.sparql

17 lines
505 B
SPARQL
Raw Normal View History

PREFIX vivo: <http://vivoweb.org/ontology/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {
?location rdfs:label ?locationName .
} WHERE {
PERSON_URI vivo:hasPresenterRole ?presenterRole .
{?presenterRole vivo:roleRealizedIn ?presentation}
union
{?presenterRole vivo:roleIn ?presentation}
?presentation vivo:eventWithin ?containingEvent .
?containingEvent vivo:hasGeographicLocation ?location .
?location rdfs:label ?locationName .
}