Skip to content

Instantly share code, notes, and snippets.

@gpirrotta
Created November 14, 2019 18:23
Show Gist options
  • Save gpirrotta/1aaf176d55f94fc0b214b2e089f014fe to your computer and use it in GitHub Desktop.
Save gpirrotta/1aaf176d55f94fc0b214b2e089f014fe 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 distinct ?convoy ?deparDate ?labelCamp
FROM <http://dati.cdec.it/lod/shoah/>
WHERE
{
?uri a shoah:Convoy;
rdfs:label ?convoy;
shoah:departureDate ?deparDate;
shoah:toNaziCamp ?naziCamp.
?naziCamp rdfs:label ?labelCamp
}
ORDER BY ?deparDate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment