query-3a0822caa3940141883b8b064b665ed7

rq turtle/ttl

Wikidata Items without any Wikibase Statement (Mary 2022)items without any statementSource query:

Use at

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://or.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://or.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