VIVO-472 updated the rich-export sparql queries

This commit is contained in:
tworrall 2013-11-06 15:51:33 -05:00
parent 4e7bfbf783
commit 23e0a4d390
55 changed files with 305 additions and 157 deletions

View file

@ -1,13 +1,16 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX bibo: <http://purl.org/ontology/bibo/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX obo: <http://purl.obolibrary.org/obo/>
CONSTRUCT {
?location rdfs:label ?locationName .
} WHERE {
PERSON_URI core:authorInAuthorship ?authorship .
?authorship core:linkedInformationResource ?publication .
PERSON_URI core:relatedBy ?authorship .
?authorship a core:Authorship .
?authorship core:relates ?publication .
?publication a obo:IAO_0000030 .
?publication bibo:presentedAt ?event .
?event core:hasGeographicLocation ?location .
?event obo:RO_0001025 ?location .
?location rdfs:label ?locationName .
}