query-c8e9cc50b466732c8a4bfd149df59adf
. Recall that we are interested in those that are free, so we might want those papers whose have a URL where we can access to them. At the time of writing, the query returns 4.987. (P953)full work available at URL With the following query, we can obtain those scholarly articles written in Chinese and that have the property
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;
wdt:P953 [].
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?item")
a1((" "))
c2(["wd:Q7850"]):::iri
c4(["wd:Q13442814"]):::iri
v1 --"wdt:P407"--> c2
v1 --"wdt:P31"--> c4
v1 --"wdt:P953"--> a1
bind1[/"count(*)"/]
bind1 --as--o v2