query-5988fef37fdfc9a79cf67bacae8a1346

rq turtle/ttl

No sitelink, no statements and no backlink where I add also the column with Wikidata list. There is a lot of result with statements. this pageProbably this query don't work, someone know why? It's possible see the result in

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?item 
WHERE{
  ?item wikibase:sitelinks 0 .
  ?item wikibase:statements 0 .

  OPTIONAL{ ?backlink ?p1 ?item .  }
  FILTER(!bound(?backlink))  

  FILTER ( ?item not in ( wd:Q16943273,wd:Q17566023 ) ) #Exclude item of wikidata tour
} 
Limit 250

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?backlink") v1("?item"):::projected v3("?p1") c4(["0^^xsd:integer"]):::literal f0[["?item != 'wd:Q16943273'?item != 'wd:Q17566023'"]] f0 --> v1 f1[["not bound(?backlink)"]] f1 --> v2 v1 --"wikibase:sitelinks"--> c4 v1 --"wikibase:statements"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -->v3--> v1 end