query-a3e46686ea66f24e540494ee7e37d771

rq turtle/ttl

Knights Templar

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#>
SELECT ?gm ?gmLabel ?dateDeath
{
  # instance of a human
  ?gm wdt:P31 wd:Q5 .

  # gm holds the office of Grandmaster of the Knights Templar
  ?gm wdt:P39 wd:Q22673588 .

  optional {
    ?gm wdt:P570 ?dateDeath .
  }

  SERVICE wikibase:label {
     bd:serviceParam wikibase:language "en" .
  }

} ORDER BY ?dateDeath

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?dateDeath"):::projected v2("?gm"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c9(["en"]):::literal c4(["wd:Q22673588"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P39"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P570".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end