query-cc8636a68d2f762473418ae9c15493a0
Query
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?en_description {
?item wdt:P31 wd:Q13442814; schema:description ?en_description .
FILTER( LANG( ?en_description ) = 'en' ) .
OPTIONAL {
?item schema:description ?de_description .
FILTER( LANG( ?de_description ) = 'de' ) .
} .
FILTER( !BOUND( ?de_description ) ) .
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?de_description")
v2("?en_description"):::projected
v3("?item"):::projected
c4(["wd:Q13442814"]):::iri
f0[["not bound(?de_description)"]]
f0 --> v1
f1[["?en_description = 'en'"]]
f1 --> v2
v3 --"wdt:P31"--> c4
v3 --"schema:description"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."schema:description".-> v1
end