query-39bdf68dbee5e6266b0d4af5744ec91b
Categories used in english WikipediaI'm interesetd in a deeper understanding of how Wikidata handle wikipedia categories. With a Query like this I can explore categories as they are linked to a specific Wikipedia. Number of categories with a sitelink to "en.wikipedia.org"QUERY REQUEST: I know there are already 4032165 wikimedia categories (executing this query: SELECT (COUNT(?item) AS ?total) WHERE { ?item wdt:P31 wd:Q4167836.} ) but due to sitelinks aren't properties, is complex for me to know which of these are used in english - or spanish or other - Wikipedia. .13:56, 18 January 2018 (UTC)) at contribs • talk (Tsaorin comment was added byunsignedThe preceding – Thanks
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 ?total) WHERE
{
?item wdt:P31 wd:Q4167836 .
?article schema:about ?item ; schema:isPartOf <https://es.wikipedia.org/> .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item")
v3("?total")
c5([https://es.wikipedia.org/]):::iri
c2(["wd:Q4167836"]):::iri
v1 --"wdt:P31"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
bind1[/"count(?article)"/]
v2 --o bind1
bind1 --as--o v3