query-8b820ccdfa463e727bd79255a3443365
. COUNT). In this case, we are interested in the number of paintings; the aggregate function for that is ?painting, and then an aggregate function on the other selected variable (?material clause on the GROUP BYNext, add a
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?materiał (COUNT(?malarstwo) AS ?count)
WHERE
{
?malarstwo wdt:P31/wdt:P279* wd:Q3305213;
p:P186 [ ps:P186 ?materiał; pq:P518 wd:Q861259 ].
}
GROUP BY ?materiał
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?count")
v1("?malarstwo"):::projected
v2("?materiał"):::projected
a1((" "))
a2((" "))
c3(["wd:Q3305213"]):::iri
c6(["wd:Q861259"]):::iri
v1 --"p:direct/P31"--> a1
a1 --"p:direct/P279"--> c3
a2 --"p:statement/P186"--> v2
a2 --"p:qualifier/P518"--> c6
v1 --"p:P186"--> a2
bind1[/"count(?malarstwo)"/]
v1 --o bind1
bind1 --as--o v3