query-ef5f590e6def59e58c261d2ce5eba197

rq turtle/ttl

Norwegians date of death 10:35, 4 January 2021 (UTC)) talk (Pmt (P570)date of death who do not have a (Q20)Norway (P27)country of citizenship Is it possible to have a list of

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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#>
SELECT ?item ?itemLabel ?itemDescription ?dob
WHERE
{
    ?item wdt:P27 wd:Q20 . 
    # ?item wdt:P569 ?dob . hint:Prior hint:rangeSafe true . FILTER ( ?dob < "1910-00-00"^^xsd:date )
    FILTER NOT EXISTS { ?item wdt:P570 [] }
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],nn,nb,en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,nn,nb,en"]):::literal c3(["wd:Q20"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P570"--> e0a1 e0v1("?item"):::projected e0a1((" ")):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> a1 v1 --"wdt:P570"--> a1 v1 --"wdt:P27"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end