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,9 +1,12 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX obo: <http://purl.obolibrary.org/obo/>
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>
CONSTRUCT {
?geographicLocation ?property ?object .
} WHERE {
PERSON_URI core:mailingAddress ?address .
?address core:hasGeographicLocation ?geographicLocation .
PERSON_URI obo:ARG_2000028 ?vcard .
?vcard vcard:hasAddress ?address .
?address obo:RO_0001025 ?geographicLocation .
?geographicLocation ?property ?object .
}