Old Release

This documentation relates to an old version of VIVO, version 1.9.x. Looking for another version? See all documentation.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

address.sparql
PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX obo: <http://purl.obolibrary.org/obo/>
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#>


CONSTRUCT {
     ?address ?property ?object .
} WHERE {
     PERSON_URI obo:ARG_2000028 ?vcard .
     ?vcard vcard:hasAddress ?address .
     ?address ?property ?object .
}
locationOfAddress.sparql
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 obo:ARG_2000028 ?vcard .
     ?vcard vcard:hasAddress ?address .
     ?address obo:RO_0001025 ?geographicLocation .
     ?geographicLocation ?property ?object .
}
  • No labels