query-c83fe3d4b7191643cd52654f324465f2

rq turtle/ttl

List of women scientists in India

SELECT ?instance_of ?instance_ofLabel ?field_of_work ?field_of_workLabel ?date_of_birth WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?instance_of wdt:P31 wd:Q5; wdt:P21 wd:Q6581072; wdt:P106 wd:Q901; wdt:P27 wd:Q668. OPTIONAL { ?instance_of wdt:P101 ?field_of_work. } OPTIONAL { ?instance_of wdt:P569 ?date_of_birth. } } LIMIT 100

Use at

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#>
# List of women scientists in India

SELECT ?instance_of ?instance_ofLabel ?field_of_work ?field_of_workLabel ?date_of_birth WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  ?instance_of wdt:P31 wd:Q5;
    wdt:P21 wd:Q6581072;
    wdt:P106 wd:Q901;
    wdt:P27 wd:Q668.
  OPTIONAL { ?instance_of wdt:P101 ?field_of_work. }
  OPTIONAL { ?instance_of wdt:P569 ?date_of_birth. }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?date_of_birth"):::projected v2("?field_of_work"):::projected v1("?instance_of"):::projected c8(["wd:Q6581072"]):::iri c2(["bd:serviceParam"]):::iri c10(["wd:Q901"]):::iri c12(["wd:Q668"]):::iri c6(["wd:Q5"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P31"--> c6 v1 --"wdt:P21"--> c8 v1 --"wdt:P106"--> c10 v1 --"wdt:P27"--> c12 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P101".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P569".-> v3 end