query-218f72886e34a2ba44187e13ec15a7be
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
SELECT ?item {
?item wikibase:statements ?statementCount .
FILTER(?statementCount = 0) .
?item wikibase:sitelinks ?sitelinkCount .
FILTER(?sitelinkCount = 0) .
MINUS {
[] ?prop ?item .
}
} LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v4("?prop")
v1("?sitelinkCount")
v2("?statementCount")
a1((" "))
f0[["?sitelinkCount = '0^^xsd:integer'"]]
f0 --> v1
f1[["?statementCount = '0^^xsd:integer'"]]
f1 --> v2
v3 --"wikibase:statements"--> v2
v3 --"wikibase:sitelinks"--> v1
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
a1 -->v4--> v3
end