query-8a7e61fe212da50daad6fbb52f5dec17
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT (COUNT(?article) AS ?biographies)
WHERE
{
?item wdt:P31 wd:Q5 .
?article schema:about ?item .
?article schema:isPartOf <https://hi.wikipedia.org/> .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v3("?biographies")
v1("?item")
c2(["wd:Q5"]):::iri
c5([https://hi.wikipedia.org/]):::iri
v1 --"wdt:P31"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
bind1[/"count(?article)"/]
v2 --o bind1
bind1 --as--o v3