query-7b362b62c69703e90b22882a76f08eb6
All terrorists
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 ?birth ?death ?organizationLabel ?allegianceLabel ?image ?occupationLabel WHERE {
?occupation wdt:P279* wd:Q14886050.
?item wdt:P106 ?occupation. # Occupation: terrorist and its potential sub-classes.
OPTIONAL {?item wdt:P569 ?birth}
OPTIONAL {?item wdt:P570 ?death}
OPTIONAL {?item wdt:P463 ?organization}
OPTIONAL {?item wdt:P945 ?allegiance}
OPTIONAL {?item wdt:P18 ?image}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY DESC(?birth)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?allegiance")
v1("?birth"):::projected
v4("?death"):::projected
v7("?image"):::projected
v3("?item"):::projected
v2("?occupation")
v5("?organization")
c10(["bd:serviceParam"]):::iri
c12(["en"]):::literal
c2(["wd:Q14886050"]):::iri
v2 --"wdt:P279"--> c2
v3 --"wdt:P106"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P569".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P570".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P463".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P945".-> v6
end
subgraph optional4["(optional)"]
style optional4 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P18".-> v7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end