query-c9c7fad65d6885bada31122b27de5735
All UK and pre-Union MPs, including Ireland and Scotland
NB this omits the Commonwealth period which we don't yet model
SELECT distinct ?person1 ?person1Label
WHERE {
{ ?person1 wdt:P31 wd:Q5 ; wdt:P39 [ wdt:P279 wd:Q16707842 ] } # UK MP
UNION { ?person1 wdt:P31 wd:Q5 ; wdt:P39 [ wdt:P279 wd:Q18015642 ] } # British MP
UNION { ?person1 wdt:P31 wd:Q5 ; wdt:P39 [ wdt:P279* wd:Q18018860 ] } # English MP
UNION { ?person1 wdt:P31 wd:Q5 ; wdt:P1614 [] } # or in HoP but without an item
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
# look for articles (sitelinks) in English ("en")
OPTIONAL {
?article schema:about ?person1 .
?article schema:inLanguage "en" .
?article schema:isPartOf https://en.wikipedia.org/
}
# but select items with no such article
FILTER (!BOUND(?article))
}
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#All UK and pre-Union MPs, including Ireland and Scotland
#NB this omits the Commonwealth period which we don't yet model
SELECT distinct ?person1 ?person1Label
WHERE {
{ ?person1 wdt:P31 wd:Q5 ; wdt:P39 [ wdt:P279* wd:Q16707842 ] } # UK MP
UNION { ?person1 wdt:P31 wd:Q5 ; wdt:P39 [ wdt:P279* wd:Q18015642 ] } # British MP
UNION { ?person1 wdt:P31 wd:Q5 ; wdt:P39 [ wdt:P279* wd:Q18018860 ] } # English MP
UNION { ?person1 wdt:P31 wd:Q5 ; wdt:P1614 [] } # or in HoP but without an item
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
# look for articles (sitelinks) in English ("en")
OPTIONAL {
?article schema:about ?person1 .
?article schema:inLanguage "en" .
?article schema:isPartOf <https://en.wikipedia.org/>
}
# but select items with no such article
FILTER (!BOUND(?article))
}