query-4d045829a3ef3a0797ee65288eddd765

rq turtle/ttl

Image URL from Commons via WikidataHello, ). API:Imageinfo but it didn't seem getting the image URL was covered by the supported services. It looks like it's doable with the MediaWiki api itself (docs). Is this actually possible? I looked at the Mediawiki API Service https://upload.wikimedia.org/wikipedia/commons/c/cf/Flag_of_Canada.svg), but I would prefer to get the URL of the original image file (https://commons.wikimedia.org/wiki/File:Flag_of_Canada.svgIs it possible to get the URL for an image file, rather than a link to the Wikimedia Commons page for that image? E.G. If I get the flag image property (P41) of Canada (Q16) the resulting link is to the Commons page (This is a starting point, resulting in the Mediawiki URLs.

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?country ?flag
WHERE {
  ?country wdt:P31 wd:Q6256 .
  ?country wdt:P41 ?flag .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?country"):::projected v2("?flag"):::projected c2(["wd:Q6256"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P41"--> v2