query-eee5ff4e69bc2d4c1773e401857fcd15
Unmarried Indians SELECT ?human ?humanLabel ?genderLabel ?humanDescription ?dob WHERE { ?human wdt:P31 wd:Q5 . ?human wdt:P27 wd:Q668 . ?human p:P26 ?spouceStatement . ?spouceStatement a wdno:P26 . OPTIONAL { ?human wdt:P21 ?gender. } OPTIONAL { ?human wdt:P569 ?dob. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?human ?humanLabel ?gender ?genderLabel ?humanDescription ?dob ORDER BY ?dob LIMIT 123
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wdno: <http://www.wikidata.org/prop/novalue/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Unmarried Indians
SELECT ?human ?humanLabel ?genderLabel ?humanDescription ?dob
WHERE {
?human wdt:P31 wd:Q5 .
?human wdt:P27 wd:Q668 .
?human p:P26 ?spouceStatement .
?spouceStatement a wdno:P26 .
OPTIONAL { ?human wdt:P21 ?gender. }
OPTIONAL { ?human wdt:P569 ?dob. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?human ?humanLabel ?gender ?genderLabel ?humanDescription ?dob
ORDER BY ?dob
LIMIT 123
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dob"):::projected
v4("?gender")
v2("?human"):::projected
v3("?spouceStatement")
c11(["bd:serviceParam"]):::iri
c7(["p:novalue/P26"]):::iri
c4(["wd:Q668"]):::iri
c2(["wd:Q5"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"p:direct/P31"--> c2
v2 --"p:direct/P27"--> c4
v2 --"p:P26"--> v3
v3 --"a"--> c7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P21".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."p:direct/P569".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end