query-989d5d3482652169f5da43e55dc9cb60
Ambassadors who were also MPs
select distinct ?person ?personLabel ?birthyear ?deathyear where { ?person p:P39 ?positionStatement . ?positionStatement ps:P39 ?position . { ?position wdt:P31 wd:Q18115939 . } union { ?position wdt:P31 wd:Q56760832 } . # person held a position as UK Ambassador or UK High Commissioner ?person p:P39 ?positionStatement2 . ?positionStatement2 ps:P39 ?position2 . { ?position2 wdt:P279 wd:Q16707842 . } union { ?position wdt:P279 wd:Q18015642 } union { ?position wdt:P279* wd:Q18018860 } # person held a position as a UK, GB, or English MP (breakpoints at 1707 and 1801) optional { ?person wdt:P569 ?born . bind(year(?born) as ?birthyear) } . optional { ?person wdt:P570 ?died . bind(year(?died) as ?deathyear) } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Ambassadors who were also MPs
select distinct ?person ?personLabel ?birthyear ?deathyear where
{
?person p:P39 ?positionStatement . ?positionStatement ps:P39 ?position .
{ ?position wdt:P31 wd:Q18115939 . } union { ?position wdt:P31 wd:Q56760832 } .
# person held a position as UK Ambassador or UK High Commissioner
?person p:P39 ?positionStatement2 . ?positionStatement2 ps:P39 ?position2 .
{ ?position2 wdt:P279* wd:Q16707842 . } union { ?position wdt:P279* wd:Q18015642 } union { ?position wdt:P279* wd:Q18018860 }
# person held a position as a UK, GB, or English MP (breakpoints at 1707 and 1801)
optional { ?person wdt:P569 ?born . bind(year(?born) as ?birthyear) } .
optional { ?person wdt:P570 ?died . bind(year(?died) as ?deathyear) } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}