query-5f720849dee4d951a7f97d4cfd712d60

rq turtle/ttl

Jobs held by senators in the US, other than Senator or politician

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#>
#defaultView:BubbleChart
SELECT (COUNT(?sen) AS ?sens) ?job ?jobLabel
WHERE { 
?sen wdt:P39 wd:Q4416090;
    wdt:P106 ?job.
FILTER (?job not in (wd:Q82955, wd:Q4416090) )
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} GROUP BY ?job ?jobLabel
ORDER BY DESC(?sen)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?job"):::projected v1("?sen"):::projected v3("?sens") c6(["bd:serviceParam"]):::iri c2(["wd:Q4416090"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["?job != 'wd:Q82955'?job != 'wd:Q4416090'"]] f0 --> v2 v1 --"wdt:P39"--> c2 v1 --"wdt:P106"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind2[/"count(?sen)"/] v1 --o bind2 bind2 --as--o v3