Skip to content

Instantly share code, notes, and snippets.

@gpirrotta
Created November 14, 2019 18:39
Show Gist options
  • Save gpirrotta/a3e264227d177469b2064fa984475380 to your computer and use it in GitHub Desktop.
Save gpirrotta/a3e264227d177469b2064fa984475380 to your computer and use it in GitHub Desktop.
PREFIX bio-ext: <http://dati.cdec.it/lod/bio-ext/>
SELECT ?firstName ?familyName ?consortName ?childName ?districtOfResidence
FROM <http://dati.cdec.it/lod/shoah/>
WHERE
{
?uri a foaf:Person;
foaf:firstName ?firstName;
foaf:familyName ?familyName;
bio-ext:consortName ?consortName;
bio-ext:childName ?childName;
bio-ext:districtOfResidence ?districtOfResidence.
FILTER(?uri = <http://dati.cdec.it/lod/shoah/person/7664>)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment