query-530a2f1ddb3193b98dfa54a5663499c9

rq turtle/ttl

Personnalités ayant une entrée sur le Dictionnaire biographique du Canada liée sur Wikidata, mais qui n'ont pas d'article en français SELECT DISTINCT ?item WHERE {?item wdt:P31 wd:Q5 . ?item wdt:P27 wd:Q16 . FILTER EXISTS {?item wdt:P2753 [] } OPTIONAL { ?sitelink schema:about ?item . ?sitelink schema:inLanguage "fr" } FILTER (!BOUND(?sitelink)) }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
#Personnalités ayant une entrée sur le Dictionnaire biographique du Canada liée sur Wikidata, mais qui n'ont pas d'article en français
SELECT DISTINCT ?item WHERE {?item wdt:P31 wd:Q5 .
                    ?item wdt:P27 wd:Q16 .
FILTER EXISTS {?item wdt:P2753 [] }
    OPTIONAL { ?sitelink schema:about ?item . ?sitelink schema:inLanguage "fr" }
FILTER (!BOUND(?sitelink)) }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?sitelink") a1((" ")) c5(["wd:Q16"]):::iri c3(["wd:Q5"]):::iri c8(["fr"]):::literal f0[["not bound(?sitelink)"]] f0 --> v1 f1[[" "]] subgraph f1e0["Exists Clause"] e0v1 --"wdt:P2753"--> e0a1 e0v1("?item"):::projected e0a1((" ")):::projected end f1--EXISTS--> f1e0 f1 --> v2 f1 --> c1 f1 --> a1 v2 --"wdt:P2753"--> a1 v2 --"wdt:P31"--> c3 v2 --"wdt:P27"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."schema:about".-> v2 v1 --"schema:inLanguage"--> c8 end