query-22072626505acaeebe837485442c0497
TODO
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 ?item ?itemLabel ?penalty ?penaltyLabel
WHERE
{
?item wdt:P31 wd:Q5 . # Human
?item wdt:P106 wd:Q46961 . # Gangster
?item wdt:P1596 ?penalty . # Penalty
?penalty wdt:P279* wd:Q841236 . # Penalty is a subclass of imprisonment
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?penalty"):::projected
c9(["bd:serviceParam"]):::iri
c4(["wd:Q46961"]):::iri
c2(["wd:Q5"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c7(["wd:Q841236"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P106"--> c4
v1 --"wdt:P1596"--> v2
v2 --"wdt:P279"--> c7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end