query-dabf26a2d9ec33cfb09608372c3e13ed

rq turtle/ttl

rdfs:labelGet the label of a Wikidata item in a given language using

Use at

PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label {
  VALUES ?item {wd:Q935}.
  ?item rdfs:label ?label FILTER(LANG(?label) = "zh").
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?label"):::projected f0[["?label = 'zh'"]] f0 --> v1 bind1[/VALUES ?item/] bind1-->v2 bind10(["wd:Q935"]) bind10 --> bind1 v2 --"rdfs:label"--> v1