query-d2f81ea062940622ef7afac0e2bda2e3
lack of other statements on itemsJust came across a series of items that didn't have any other statements than P2671. I was wondering if the presence of P2671 occults the fact these items lack other statements. I tried to count how many there are, but the following query times out:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT (COUNT(*) as ?count)
{
?item wikibase:statements 1 .
?item wdt:P2671 [] .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?item")
a1((" "))
c2(["1^^xsd:integer"]):::literal
v1 --"wikibase:statements"--> c2
v1 --"wdt:P2671"--> a1
bind1[/"count(*)"/]
bind1 --as--o v2