2011-07-13 21:16:47 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
2011-08-15 16:38:40 +00:00
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2011-07-13 21:16:47 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
|
|
|
?containingEvent rdfs:label ?containingEventName
|
|
|
|
} WHERE {
|
|
|
|
PERSON_URI core:hasPresenterRole ?presenterRole .
|
2011-12-08 19:41:26 +00:00
|
|
|
?presenterRole core:roleRealizedIn ?presentation .
|
2011-07-13 21:16:47 +00:00
|
|
|
?presentation core:eventWithin ?containingEvent .
|
|
|
|
?containingEvent rdfs:label ?containingEventName
|
|
|
|
}
|