query-da39269f7f3ec80a05a27fee5b08d245

rq turtle/ttl

Pmt

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#>
SELECT distinct ?item ?itemLabel ?partyLabel
WHERE 
{ ?item wdt:P27 wd:Q20 .       #country of citizenship: Norway
  ?item wdt:P102 ?party .      #is a member of political party
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],no". } # get labels
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?party") c7(["#91;AUTO_LANGUAGE#93;,no"]):::literal c5(["bd:serviceParam"]):::iri c2(["wd:Q20"]):::iri v1 --"wdt:P27"--> c2 v1 --"wdt:P102"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end