query-3d1e16d44ced53e9bc30d58ecc4ab958
Notable Indian women who were murdered SELECT ?India ?IndiaLabel ?date_of_birth ?date_of_death WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?India wdt:P27 wd:Q668. ?India wdt:P1196 wd:Q149086. ?India wdt:P21 wd:Q6581072. OPTIONAL { ?India wdt:P569 ?date_of_birth. } OPTIONAL { ?India wdt:P570 ?date_of_death. } } LIMIT 100
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#>
# Notable Indian women who were murdered
SELECT ?India ?IndiaLabel ?date_of_birth ?date_of_death WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?India wdt:P27 wd:Q668.
?India wdt:P1196 wd:Q149086.
?India wdt:P21 wd:Q6581072.
OPTIONAL { ?India wdt:P569 ?date_of_birth. }
OPTIONAL { ?India wdt:P570 ?date_of_death. }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?India"):::projected
v2("?date_of_birth"):::projected
v3("?date_of_death"):::projected
c2(["bd:serviceParam"]):::iri
c8(["wd:Q149086"]):::iri
c6(["wd:Q668"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c10(["wd:Q6581072"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P27"--> c6
v1 --"wdt:P1196"--> c8
v1 --"wdt:P21"--> c10
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P569".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P570".-> v3
end