query-54b123bcf98bee44659e069cf0e01bef
Where does the left-to-right mark come from?Consider
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label WHERE {
VALUES ?item {wd:Q27703232 wd:Q23006268}.
?item rdfs:label ?label . FILTER(lang(?label) = "de")
}
ORDER BY ?label
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 = 'de'"]]
f0 --> v1
bind1[/VALUES ?item/]
bind1-->v2
bind10(["wd:Q27703232"])
bind10 --> bind1
bind11(["wd:Q23006268"])
bind11 --> bind1
v2 --"rdfs:label"--> v1