query-149d7a2f83b7ba3261a8e77933264da9

rq turtle/ttl

title:Items without any statements linked with an English Wikipedia page select ?itemLabel ?item where { { select distinct ?item where{ ?item wikibase:statements 0 . [] schema:about ?item ; schema:isPartOf https://en.wikipedia.org/. } } service wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Items without any statements linked with an English Wikipedia page
select ?itemLabel ?item
where {
{
select distinct ?item 
where{
  ?item wikibase:statements 0 . 
  [] schema:about ?item ; schema:isPartOf <https://en.wikipedia.org/>. 
}
}
service wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) c2(["0^^xsd:integer"]):::literal c5([https://en.wikipedia.org/]):::iri c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wikibase:statements"--> c2 a1 --"schema:about"--> v1 a1 --"schema:isPartOf"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end