query-78b9950d84b753af6134ba4e86be0602
members of Massachusetts House of Representatives
SELECT ?item ?itemLabel ?date_of_birth ?image ?electoral_district ?electoral_districtLabel ?start ?end WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?item p:P39 ?position_statement. ?position_statement ps:P39 wd:Q17342542. ?position_statement wikibase:rank ?rank. FILTER (?rank = wikibase:PreferredRank || ?rank = wikibase:NormalRank && NOT EXISTS { ?item p:P39/wikibase:rank wikibase:PreferredRank. }) OPTIONAL { ?item wdt:P569 ?date_of_birth. } OPTIONAL { ?item wdt:P18 ?image. } OPTIONAL { ?position_statement pq:P768 ?electoral_district. } OPTIONAL { ?position_statement pq:P580 ?start. } OPTIONAL { ?position_statement pq:P582 ?end. } } ORDER BY DESC(?date_of_birth) LIMIT 5000
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 pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# members of Massachusetts House of Representatives
SELECT ?item ?itemLabel
?date_of_birth ?image ?electoral_district ?electoral_districtLabel ?start ?end
WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?item p:P39 ?position_statement.
?position_statement ps:P39 wd:Q17342542.
?position_statement wikibase:rank ?rank.
FILTER (?rank = wikibase:PreferredRank ||
?rank = wikibase:NormalRank && NOT EXISTS { ?item p:P39/wikibase:rank wikibase:PreferredRank. })
OPTIONAL { ?item wdt:P569 ?date_of_birth. }
OPTIONAL { ?item wdt:P18 ?image. }
OPTIONAL { ?position_statement pq:P768 ?electoral_district. }
OPTIONAL { ?position_statement pq:P580 ?start. }
OPTIONAL { ?position_statement pq:P582 ?end. }
}
ORDER BY DESC(?date_of_birth)
LIMIT 5000