fix for sparql issues found during testing with Digital Vita team

This commit is contained in:
stellamit 2011-08-15 16:38:40 +00:00
parent 606ade5b31
commit 9a67388f6a
11 changed files with 86 additions and 15 deletions

View file

@ -0,0 +1,12 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {
?location rdfs:label ?locationName .
} WHERE {
PERSON_URI core:hasPresenterRole ?presenterRole .
?presenterRole core:roleIn ?presentation .
?presentation core:eventWithin ?containingEvent .
?containingEvent core:hasGeographicLocation ?location .
?location rdfs:label ?locationName .
}

View file

@ -1,4 +1,5 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
CONSTRUCT {
?containingEvent rdfs:label ?containingEventName

View file

@ -1,10 +0,0 @@
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 .
}