query-7b6d5f0804e064990aff2963d7af4851

rq turtle/ttl

19:52, 14 September 2021 (UTC)) talk (RrrrraaaaUnfortunately my query times out. Is there a way to modify it (or another way to find out the number)? I don't have much experience with Wikidata and Sparql and would appreciate some help. Thanks! : I tried Rrrrraaaa@

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (COUNT(*) AS ?count) WHERE {
  ?item wdt:P21 wd:Q6581072.
  ?item wdt:P31 wd:Q5.
  ?item wikibase:sitelinks 0 .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?count") v1("?item") c6(["0^^xsd:integer"]):::literal c4(["wd:Q5"]):::iri c2(["wd:Q6581072"]):::iri v1 --"wdt:P21"--> c2 v1 --"wdt:P31"--> c4 v1 --"wikibase:sitelinks"--> c6 bind1[/"count(*)"/] bind1 --as--o v2