query-053c6ba7a69767b6e06ba488da7ce267
TODO
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 ?itemlab ?itemdesc WHERE {
?item wdt:P31 wd:Q11266439 .
wd:Q6459244 schema:description ?wrongdesc1
filter (lang(?wrongdesc1) = "ru") .
OPTIONAL { ?item schema:description ?itemdesc
filter (lang(?itemdesc) = "ru") }
filter (?itemdesc = ?wrongdesc1)
} LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?itemdesc"):::projected
v2("?wrongdesc1")
c4(["wd:Q6459244"]):::iri
c3(["wd:Q11266439"]):::iri
f0[["?itemdesc = ?wrongdesc1"]]
f0 --> v1
f0 --> v2
f1[["?wrongdesc1 = 'ru'"]]
f1 --> v2
v3 --"wdt:P31"--> c3
c4 --"schema:description"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."schema:description".-> v1
end