query-f60b3ce707bdde178e969833ec33994f
Painters linked to RKDartistsTo find the painters, include a statement for occupation = painter:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(DISTINCT ?item) AS ?count) WHERE {
?item wdt:P31 wd:Q5;
wdt:P106 wd:Q1028181;
wdt:P650 ?rkd.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?count")
v1("?item"):::projected
v2("?rkd")
c4(["wd:Q1028181"]):::iri
c2(["wd:Q5"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P106"--> c4
v1 --"wdt:P650"--> v2
bind1[/"count(?item)"/]
v1 --o bind1
bind1 --as--o v3