query-f6fc1dad85d6372811f52d23e453689e

rq turtle/ttl

Items with sitelink but without statements

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?item ?article ?d WHERE {
  ?item wikibase:statements 0 .
  ?article schema:about ?item .
  ?article schema:isPartOf <https://it.wikivoyage.org/>.
} LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v1("?item"):::projected c2(["0^^xsd:integer"]):::literal c5([https://it.wikivoyage.org/]):::iri v1 --"wikibase:statements"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5