query-4d3b922719d8d94336da13740fbf7325
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdno: <http://www.wikidata.org/prop/novalue/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?person ?personLabel ?positionLabel
WHERE {
?person p:P39 [a wdno:P155; ps:P39 ?position].
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("?person"):::projected
v1("?position")
a1((" "))
c6(["bd:serviceParam"]):::iri
c2(["p:novalue/P155"]):::iri
c8(["en"]):::literal
a1 --"a"--> c2
a1 --"p:statement/P39"--> v1
v2 --"p:P39"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end