query-e58a792fa9a87b07add4a9123e47a674

rq turtle/ttl

Querry for Wikimedia Commons: (Q11513337)athletics competitor (P180)depicts Hi, I hope it's the right place to ask. Here is a querry to show the files that have

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
#shows files that depict athletics competitors
#defaultView:ImageGrid
SELECT ?file ?image WHERE {
  ?file wdt:P180 wd:Q11513337.
  ?file schema:contentUrl ?url .
  bind(iri(concat("http://commons.wikimedia.org/wiki/Special:FilePath/", wikibase:decodeUri(substr(str(?url),53)))) AS ?image)
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?file"):::projected v3("?image"):::projected v2("?url") c2(["wd:Q11513337"]):::iri v1 --"wdt:P180"--> c2 v1 --"schema:contentUrl"--> v2 bind0[/"concat('http://commons.wikimedia.org/wiki/Special:FilePath/',http://wikiba.se/ontology#decodeUri(substring(str(?url),'53^^xsd:integer')))"/] v2 --o bind0 bind0 --as--o v3