query-0bc3ce5840ad36dcaa6ea5c7f0fafbaf
People killed by law enforcement agencies
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?human ?humanLabel
WHERE {
?human wdt:P157 ?killer.
?killer (wdt:P31/wdt:P279*) wd:Q732717
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;
v1("?human"):::projected
v2("?killer")
a1((" "))
c4(["wd:Q732717"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
v1 --"wdt:P157"--> v2
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end