16 lines
505 B
SPARQL
16 lines
505 B
SPARQL
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 .
|
|
}
|