NIHVIVO-1275 - queries for presentations

This commit is contained in:
stellamit 2011-07-13 21:16:47 +00:00
parent 39729c2351
commit fdba0ccdb8
3 changed files with 29 additions and 0 deletions

View file

@ -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
}

View file

@ -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 .
}

View file

@ -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 .
}