Skip to content

Instantly share code, notes, and snippets.

@gpirrotta
Last active November 17, 2019 09:03
Show Gist options
  • Save gpirrotta/d07f3d66aa70271a3008e42712c58e6e to your computer and use it in GitHub Desktop.
Save gpirrotta/d07f3d66aa70271a3008e42712c58e6e to your computer and use it in GitHub Desktop.
PREFIX shoah: <http://dati.cdec.it/lod/shoah/>
PREFIX bio-ext: <http://dati.cdec.it/lod/bio-ext/>
SELECT ?name ?familyName
FROM <http://dati.cdec.it/lod/shoah/>
WHERE{
?uri a shoah:Persecution.
?person shoah:persecution ?uri.
?person bio-ext:shoahSurvivor "false".
?person foaf:familyName ?familyName.
?person foaf:firstName ?name.
FILTER NOT EXISTS {?uri shoah:deathDescription ?descr}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment