10 lines
339 B
SPARQL
10 lines
339 B
SPARQL
![]() |
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||
|
|
||
|
CONSTRUCT {
|
||
|
?containingEvent rdfs:label ?containingEventName
|
||
|
} WHERE {
|
||
|
PERSON_URI core:hasPresenterRole ?presenterRole .
|
||
|
?presenterRole core:roleIn ?presentation .
|
||
|
?presentation core:eventWithin ?containingEvent .
|
||
|
?containingEvent rdfs:label ?containingEventName
|
||
|
}
|