query-68ee6c4e37374b072046dd57dbdc69c5

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT distinct ?cawiki_sitelink ?item {
  ?cawiki_sitelink schema:about ?item; schema:isPartOf <https://ca.wikipedia.org/> .
  ?item wdt:P106 [] .
  filter not exists {?item wdt:P31 wd:Q5 }
} LIMIT 5000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?cawiki_sitelink"):::projected v1("?item"):::projected a1((" ")) c2(["wd:Q5"]):::iri c5([https://ca.wikipedia.org/]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P31"--> e0c2 e0v1("?item"):::projected e0c2(["wd:Q5"]):::iri end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> c2 v1 --"wdt:P31"--> c2 v2 --"schema:about"--> v1 v2 --"schema:isPartOf"--> c5 v1 --"wdt:P106"--> a1