query-d7d22003ec41d5367b152b079e9cc034
18:04, 31 May 2017 (UTC) questions? Q.Zanden ~ 20:57, 31 May 2017 (UTC)) talk (d1gWe have number of statements. 18:26, 31 May 2017 (UTC) questions? Q.ZandenI mean the size of the Wikidata item. 18:24, 31 May 2017 (UTC)) talk (MisterSynergy might be useful instead. —Petscan or QuarryDo you mean the size of the Wikidata item or the size of the nlwiki article? I am not sure whether the former is available with the query service; the latter definitely isn’t, but
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?item ?count #?prefix ?value
WHERE {
?sitelink schema:about ?item.
?sitelink schema:isPartOf <https://nl.wikipedia.org/>.
# ?item ?prefix ?value.
?item wikibase:statements ?count
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?count"):::projected
v2("?item"):::projected
v1("?sitelink")
c3([https://nl.wikipedia.org/]):::iri
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3
v2 --"wikibase:statements"--> v3