query-ad221537cfbb422b36e6f4c023addc46
TODO
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 ?label ?l WHERE {
BIND('de' AS ?lang) .
OPTIONAL {
wd:Q4115189 rdfs:label ?label .
FILTER(LANG(?label) = ?lang) .
}
BIND(LANG(?label) AS ?l) .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?l"):::projected
v1("?label"):::projected
v3("?lang")
c1(["wd:Q4115189"]):::iri
bind0[/"'de'"/]
bind0 --as--o v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
c1 -."rdfs:label".-> v1
end
bind1[/"?label"/]
v1 --o bind1
bind1 --as--o v3