query-7c155511f24ed14ce511855a90bcca73
Wikidata Items without any Wikibase Statement (Mary 2022)items without any statementSource query:
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel
WHERE
{
?item wikibase:statements "0"^^xsd:integer .
?wpPage schema:about ?item;
schema:isPartOf <https://sat.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "or, en" . } # for generating label
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?wpPage")
c2(["0^^xsd:integer"]):::literal
c7(["bd:serviceParam"]):::iri
c9(["or, en"]):::literal
c5([https://sat.wikipedia.org/]):::iri
v1 --"wikibase:statements"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end