2012-06-21 13:56:07 +00:00
|
|
|
PREFIX vivo: <http://vivoweb.org/ontology/core#>
|
|
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
2011-07-13 21:16:47 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
2012-06-21 13:56:07 +00:00
|
|
|
?presentation rdfs:label ?presentationTitle .
|
|
|
|
?presenterRole rdfs:label ?roleLabel .
|
2011-07-13 21:16:47 +00:00
|
|
|
} WHERE {
|
2012-06-21 13:56:07 +00:00
|
|
|
PERSON_URI vivo:hasPresenterRole ?presenterRole .
|
|
|
|
|
|
|
|
optional {?presenterRole rdfs:label ?roleLabel}
|
|
|
|
|
|
|
|
{?presenterRole vivo:roleRealizedIn ?presentation}
|
|
|
|
union
|
|
|
|
{?presenterRole vivo:roleIn ?presentation}
|
2011-12-08 19:41:26 +00:00
|
|
|
|
2012-06-21 13:56:07 +00:00
|
|
|
?presentation rdfs:label ?presentationTitle .
|
2011-07-13 21:16:47 +00:00
|
|
|
}
|