query-0e0c4f6a92bfd4343a599dc27a4705a1
QueriesWith the following query, we can obtain the total number of scholarly articles written in Chinese. At the time of writing, the query returns 1.059.747.
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(*) AS ?count) {
?item wdt:P407 wd:Q7850;
wdt:P31 wd:Q13442814.
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?item")
c2(["wd:Q7850"]):::iri
c4(["wd:Q13442814"]):::iri
v1 --"wdt:P407"--> c2
v1 --"wdt:P31"--> c4
bind1[/"count(*)"/]
bind1 --as--o v2