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

13 lines
477 B
SPARQL
Raw Normal View History

PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX obo: <http://purl.obolibrary.org/obo/>
CONSTRUCT {
?containingEvent rdfs:label ?containingEventName
} WHERE {
PERSON_URI obo:RO_0000053 ?presenterRole .
?presenterRole a core:PresenterRole .
?presenterRole obo:BFO_0000054 ?presentation .
?presentation obo:BFO_0000050 ?containingEvent .
?containingEvent rdfs:label ?containingEventName
}