query-b86f3b5ab08b4a4ced8c8aea206a4864

rq turtle/ttl

manque BNF https://w.wiki/3F$$

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX schema: <http://schema.org/>

SELECT ?item ?itemLabel ?dob WHERE {
  ?item wdt:P106 wd:Q201788.
  ?item wdt:P27 wd:Q142.
  OPTIONAL {?item wdt:P569 ?dob.}
  ?article schema:about ?item.
  ?article schema:isPartOf <https://fr.wikipedia.org/>.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
  FILTER(NOT EXISTS { ?item wdt:P268 ?bnf. })
}

ORDER BY DESC(?dob)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?article") v3("?bnf") v1("?dob"):::projected v2("?item"):::projected c9([https://fr.wikipedia.org/]):::iri c13(["fr"]):::literal c3(["wd:Q201788"]):::iri c11(["bd:serviceParam"]):::iri c5(["wd:Q142"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P268"--> e0v2 e0v2("?bnf"):::projected e0v1("?item"):::projected end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 v2 --"wdt:P268"--> v3 v2 --"wdt:P106"--> c3 v2 --"wdt:P27"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v1 end v4 --"schema:about"--> v2 v4 --"schema:isPartOf"--> c9 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end