query-93c98654ca332333264948be58b822cb
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item (COUNT(?creat) AS ?count) WHERE {
?item wdt:P31 wd:Q3305213 ; wdt:P170 ?creat .
}
GROUP BY ?item
HAVING (?count>1)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count")
v3("?creat"):::projected
v2("?item"):::projected
c3(["wd:Q3305213"]):::iri
f0[["?count > '1^^xsd:integer'"]]
f0 --> v4
v2 --"wdt:P31"--> c3
v2 --"wdt:P170"--> v3
bind2[/"count(?creat)"/]
v3 --o bind2
bind2 --as--o v4