query-085d5e4820ae278bb63ef8b62e38ce02

rq turtle/ttl

German chancellors with spouses

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 p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>

SELECT ?chancellorLabel ?spouseLabel WHERE {
   ?chancellor wdt:P569 ?birthday .
   ?chancellor wdt:P39 wd:Q4970706 .

   ?chancellor p:P26 ?spouse_statement .
   ?spouse_statement v:P26 ?spouse .
   #?spouse wdt:P569 ?spouseday .

   SERVICE wikibase:label {
     bd:serviceParam wikibase:language "de" .
   }
} ORDER BY ?birthday ?spouse

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?birthday") v3("?chancellor") v2("?spouse") v4("?spouse_statement") c9(["de"]):::literal c7(["bd:serviceParam"]):::iri c3(["wd:Q4970706"]):::iri v3 --"p:direct/P569"--> v1 v3 --"p:direct/P39"--> c3 v3 --"p:P26"--> v4 v4 --"p:statement/P26"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end