2015-03-25 15:14:13 -04: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#>
|
2015-03-25 15:14:13 -04:00
|
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
2011-07-13 21:16:47 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
|
|
|
?containingEvent rdfs:label ?containingEventName
|
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
PERSON_URI obo:RO_0000053 ?presenterRole .
|
|
|
|
?presenterRole a core:PresenterRole .
|
|
|
|
?presenterRole obo:BFO_0000054 ?presentation .
|
|
|
|
?presentation obo:BFO_0000050 ?containingEvent .
|
2011-07-13 21:16:47 +00:00
|
|
|
?containingEvent rdfs:label ?containingEventName
|
|
|
|
}
|