Created
December 10, 2018 15:42
-
-
Save anarchivist/d42f3fec5fc78b0e80ee1c66d32ed735 to your computer and use it in GitHub Desktop.
Match Wikidata items with IIIF manifests by host or domainname
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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