Skip to content

Instantly share code, notes, and snippets.

@gpirrotta
Last active November 12, 2019 17:52
Show Gist options
  • Save gpirrotta/a9b3241cd734963ccdeef6fbae5ee567 to your computer and use it in GitHub Desktop.
Save gpirrotta/a9b3241cd734963ccdeef6fbae5ee567 to your computer and use it in GitHub Desktop.
PREFIX bio-ext: <http://dati.cdec.it/lod/bio-ext/>
PREFIX bio: <http://purl.org/vocab/bio/0.1/>
PREFIX shoah: <http://dati.cdec.it/lod/shoah/>
SELECT DISTINCT ?labelConvoy ?deparDate ?labelCamp
FROM <http://dati.cdec.it/lod/shoah/>
WHERE {
?convoy a shoah:Convoy;
rdfs:label ?labelConvoy;
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