query-056be87d63aaccee975e9cd8e8ef78f5

rq turtle/ttl

c:Commons:File captionsWCQS

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?image ?caption ?language_code
WHERE
{ 
  ?image rdfs:label ?caption .
  BIND (LANG(?caption) AS ?language_code)
  FILTER langMatches(?language_code, "zh" )
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?caption"):::projected v2("?image"):::projected v4("?language_code"):::projected f0[["langmatch(?language_code,'zh')"]] f0 --> v4 v2 --"rdfs:label"--> v3 bind1[/"?caption"/] v3 --o bind1 bind1 --as--o v4