NIHVIVO-1275 - queries for presentations
This commit is contained in:
parent
39729c2351
commit
fdba0ccdb8
3 changed files with 29 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?containingEvent rdfs:label ?containingEventName
|
||||
} WHERE {
|
||||
PERSON_URI core:hasPresenterRole ?presenterRole .
|
||||
?presenterRole core:roleIn ?presentation .
|
||||
?presentation core:eventWithin ?containingEvent .
|
||||
?containingEvent rdfs:label ?containingEventName
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?location ?rdfs:label ?locationName .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasPresenterRole ?presenterRole .
|
||||
?presenterRole core:roleIn ?presentation .
|
||||
?presentation core:hasGeographicLocation ?location .
|
||||
?location ?rdfs:label ?locationName .
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
||||
CONSTRUCT {
|
||||
?presentation ?property ?object .
|
||||
} WHERE {
|
||||
PERSON_URI core:hasPresenterRole ?presenterRole .
|
||||
?presenterRole core:roleIn ?presentation .
|
||||
?presentation ?property ?object .
|
||||
}
|
Loading…
Add table
Reference in a new issue