Skip to content

Instantly share code, notes, and snippets.

@anarchivist
Created December 10, 2018 15:42
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 anarchivist/d42f3fec5fc78b0e80ee1c66d32ed735 to your computer and use it in GitHub Desktop.
Save anarchivist/d42f3fec5fc78b0e80ee1c66d32ed735 to your computer and use it in GitHub Desktop.
Match Wikidata items with IIIF manifests by host or domainname
# Match Wikidata items with IIIF manifests by domain name
SELECT ?item ?itemLabel ?manifest
WHERE
{
?item wdt:P6108 ?manifest .
FILTER regex (STR(?manifest), "wdl.org").
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment