vivo/productMods/WEB-INF/ontologies/update/sparqlConstructs/deletions/vcardDel.sparql

69 lines
1.7 KiB
SPARQL
Raw Normal View History

2013-09-06 16:41:15 -04:00
PREFIX arg: <http://purl.obolibrary.org/obo/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX v: <http://www.w3.org/2006/vcard/ns#>
PREFIX vivo: <http://vivoweb.org/ontology/core#>
PREFIX bibo: <http://purl.org/ontology/bibo/>
2013-09-06 16:41:15 -04:00
CONSTRUCT {
?s foaf:firstName ?firstName .
?s foaf:lastName ?lastName .
?s vivo:middleName ?middleName .
?s bibo:prefixName ?prefix .
?s bibo:suffixName ?suffix .
2013-09-06 16:41:15 -04:00
?s vivo:email ?email .
?s vivo:primaryEmail ?primaryEmail .
?s vivo:phoneNumber ?phoneNumber .
?s vivo:primaryPhoneNumber ?primaryPhoneNumber .
?s vivo:faxNumber ?faxNumber .
?s vivo:mailingAddress ?address .
?address ?addressP ?addressO .
2013-09-09 11:49:23 -04:00
?s vivo:webpage ?webpage .
?webpage ?webpageP ?webpageO .
2013-09-06 16:41:15 -04:00
} WHERE {
2013-09-09 11:49:23 -04:00
{
2013-09-06 16:41:15 -04:00
?s foaf:firstName ?firstName .
}
2013-09-09 11:49:23 -04:00
UNION {
2013-09-06 16:41:15 -04:00
?s foaf:lastName ?lastName .
}
2013-09-09 11:49:23 -04:00
UNION {
?s vivo:middleName ?middleName .
?s a foaf:Person .
}
UNION {
?s bibo:prefixName ?prefix
}
UNION {
?s bibo:suffixName ?suffix
2013-09-06 16:41:15 -04:00
}
2013-09-09 11:49:23 -04:00
UNION {
2013-09-06 16:41:15 -04:00
?s vivo:email ?email
}
2013-09-09 11:49:23 -04:00
UNION {
2013-09-06 16:41:15 -04:00
?s vivo:primaryEmail ?primaryEmail
}
2013-09-09 11:49:23 -04:00
UNION {
2013-09-06 16:41:15 -04:00
?s vivo:phoneNumber ?phoneNumber
}
2013-09-09 11:49:23 -04:00
UNION {
2013-09-06 16:41:15 -04:00
?s vivo:primaryPhoneNumber ?primaryPhoneNumber
}
2013-09-09 11:49:23 -04:00
UNION {
2013-09-06 16:41:15 -04:00
?s vivo:faxNumber ?faxNumber
}
2013-09-09 11:49:23 -04:00
UNION {
?s vivo:mailingAddress ?address .
}
UNION {
?s vivo:mailingAddress ?address .
?address ?addressP ?addressO
}
UNION {
?s vivo:webpage ?webpage
}
UNION {
?s vivo:webpage ?webpage .
?webpage ?webpageP ?webpageO
}
2013-09-06 16:41:15 -04:00
}