11 lines
No EOL
400 B
SPARQL
11 lines
No EOL
400 B
SPARQL
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
|
|
CONSTRUCT {
|
|
?containingEvent rdfs:label ?containingEventName
|
|
} WHERE {
|
|
PERSON_URI core:hasPresenterRole ?presenterRole .
|
|
?presenterRole core:roleRealizedIn ?presentation .
|
|
?presentation core:eventWithin ?containingEvent .
|
|
?containingEvent rdfs:label ?containingEventName
|
|
} |