query-8a6b754da4281916bacb81c3a7bde875

rq turtle/ttl

All items with Nevada Women's History Project ID SELECT ?item ?itemLabel ?itemDescription ?date_of_birth ?date_of_death WHERE { ?item wdt:P9620 ?value. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } OPTIONAL { ?item wdt:P569 ?date_of_birth. } OPTIONAL { ?item wdt:P570 ?date_of_death. } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#All items with Nevada Women's History Project ID
SELECT ?item ?itemLabel ?itemDescription ?date_of_birth ?date_of_death WHERE {
  ?item wdt:P9620 ?value.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  OPTIONAL { ?item wdt:P569 ?date_of_birth. }
  OPTIONAL { ?item wdt:P570 ?date_of_death. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?date_of_birth"):::projected v4("?date_of_death"):::projected v1("?item"):::projected v2("?value") c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P9620"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P569".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P570".-> v4 end