Skip to content

Instantly share code, notes, and snippets.

@Open-University-LOD
Created January 9, 2014 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Open-University-LOD/8332880 to your computer and use it in GitHub Desktop.
Save Open-University-LOD/8332880 to your computer and use it in GitHub Desktop.
Sorted tracks of a podcast. podcast.open.ac.uk
SELECT ?download ?published
FROM <http://data.open.ac.uk/context/podcast>
WHERE {
?podcast <http://purl.org/dc/terms/published> ?published .
?podcast <http://digitalbazaar.com/media/download> ?download .
?podcast <http://purl.org/dc/terms/isPartOf> <http://data.open.ac.uk/podcast/collection/58dbd5be4f01f4b1eec1df1e8f97eaad> .
} order by desc (?published)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment