query-79ea234bf7f7fba3030c3108f622e463
Paintings with no English label but a Commons Category
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?category WHERE {
?item wdt:P31 wd:Q3305213; wdt:P373 ?category
MINUS{ ?item rdfs:label ?itemLabel FILTER (lang(?itemLabel)="en") }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?category"):::projected
v1("?item"):::projected
v3("?itemLabel")
c2(["wd:Q3305213"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P373"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?itemLabel = 'en'"]]
f1 --> v3
v1 --"rdfs:label"--> v3
end