14 lines
No EOL
511 B
SPARQL
14 lines
No EOL
511 B
SPARQL
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 {
|
|
?presentation rdfs:label ?presentationTitle .
|
|
?presenterRole rdfs:label ?roleLabel .
|
|
} WHERE {
|
|
PERSON_URI obo:RO_0000053 ?presenterRole .
|
|
?presenterRole a core:PresenterRole .
|
|
?presenterRole rdfs:label ?roleLAbel .
|
|
?presenterRole obo:BFO_0000054 ?presentation .
|
|
?presentation rdfs:label ?presentationTitle .
|
|
} |