9 lines
254 B
SPARQL
9 lines
254 B
SPARQL
![]() |
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||
|
|
||
|
CONSTRUCT {
|
||
|
?presentation ?property ?object .
|
||
|
} WHERE {
|
||
|
PERSON_URI core:hasPresenterRole ?presenterRole .
|
||
|
?presenterRole core:roleIn ?presentation .
|
||
|
?presentation ?property ?object .
|
||
|
}
|