query-7bcbdc72d0e12cd219dcb90f7c71cb09
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?person ?personLabel ?party ?partyLabel where {?person p:P102 ?party; p:P27 wd:Q39. SERVICE wikibase:label {bd:serviceParam wikibase:language "en"} }
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?party"):::projected
v1("?person"):::projected
c3(["wd:Q39"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v1 --"p:P102"--> v2
v1 --"p:P27"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end