query-755c318664f8bbf46191548899e0ed73

rq turtle/ttl

personnes mortes en 2015, sans prénom, et sans label fr… PREFIX xsd: http://www.w3.org/2001/XMLSchema#

SELECT ?item ?itemLabel ?dod ?dob WHERE { ?item wdt:P31 wd:Q5. ?item wdt:P570 ?dod. FILTER(NOT EXISTS { ?item wdt:P735 ?prenom. }) FILTER((?dod < "2016-00-00T00:00:00Z"^^xsd:dateTime) && (?dod >= "2015-00-00T00:00:00Z"^^xsd:dateTime)) OPTIONAL { ?item rdfs:label ?itemLabel . FILTER(LANG(?itemLabel)="fr") . } OPTIONAL { ?item wdt:P569 ?dob.} } ORDER BY DESC(?dod)

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# personnes mortes en 2015, sans prénom, et sans label fr…
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

SELECT ?item ?itemLabel ?dod ?dob  WHERE {
  ?item wdt:P31 wd:Q5.
  ?item wdt:P570 ?dod.
  FILTER(NOT EXISTS { ?item wdt:P735 ?prenom. })
  FILTER((?dod < "2016-00-00T00:00:00Z"^^xsd:dateTime) && (?dod >= "2015-00-00T00:00:00Z"^^xsd:dateTime))
  OPTIONAL { ?item rdfs:label ?itemLabel . FILTER(LANG(?itemLabel)="fr") . }
  OPTIONAL { ?item wdt:P569 ?dob.}
}
ORDER BY DESC(?dod)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?dob"):::projected v1("?dod"):::projected v2("?item"):::projected v4("?itemLabel"):::projected v3("?prenom") c6(["wd:Q5"]):::iri f0[["?dod < '2016-00-00T00:00:00Z^^xsd:dateTime'?dod >= '2015-00-00T00:00:00Z^^xsd:dateTime'"]] f0 --> v1 f1[["not "]] subgraph f1e0["Exists Clause"] e0v1 --"wdt:P735"--> e0v2 e0v1("?item"):::projected e0v2("?prenom"):::projected end f1--EXISTS--> f1e0 f1 --> v2 f1 --> c3 f1 --> v3 v2 --"wdt:P735"--> v3 v2 --"wdt:P31"--> c6 v2 --"wdt:P570"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."rdfs:label".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v5 end