query-b0e8501ee91281f0cda0d11dba4e0ff2
title:Count of organizations SELECT (COUNT(DISTINCT ?obj) AS ?count) WHERE { ?obj wdt:P31/wdt:P279* wd:Q43229 }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#title:Count of organizations
SELECT (COUNT(DISTINCT ?obj) AS ?count) WHERE {
?obj wdt:P31/wdt:P279* wd:Q43229
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?obj"):::projected
a1((" "))
c3(["wd:Q43229"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
bind1[/"count(?obj)"/]
v1 --o bind1
bind1 --as--o v2