query-853d07bacbfeb5fc1f6094a7ad8bde01

rq turtle/ttl

السياسيون الذين ماتوا بسبب السرطان (من أي نوع) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politici, kteří zemřeli na rakovinu (jakéhokoli typu) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politiciens morts du cancer (quelque soit le type de cancer) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politici morti di cancro (di qualsiasi tipo) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politici die stierven aan kanker (van welke aard dan ook) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politiker som dog av cancer (valfri sort) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) Politicians who died of cancer (of any type) 因任何癌症死亡的政客

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#>
SELECT ?politician ?cause ?politician_label ?cause_of_death_label
WHERE
{
  ?politician wdt:P106 wd:Q82955 .    # find items that have "occupation (P106): politician (Q82955)"
  ?politician wdt:P509 ?cause .       # with a P509 (cause of death) claim
  ?cause wdt:P279* wd:Q12078 .        # ... where the cause is a subclass of (P279*) cancer (Q12078)
  # ?politician wdt:P39 wd:Q11696 .   # Uncomment this line to include only U.S. Presidents

  OPTIONAL {?politician rdfs:label ?politician_label FILTER (lang(?politician_label) = "en") .}
  OPTIONAL {?cause rdfs:label ?cause_of_death_label FILTER (lang(?cause_of_death_label) = "en").}
}
ORDER BY ASC (?politician)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?cause"):::projected v2("?cause_of_death_label"):::projected v1("?politician"):::projected v3("?politician_label"):::projected c6(["wd:Q12078"]):::iri c3(["wd:Q82955"]):::iri v1 --"wdt:P106"--> c3 v1 --"wdt:P509"--> v4 v4 --"wdt:P279"--> c6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."rdfs:label".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."rdfs:label".-> v2 end