query-deb3c8bf983e26b393b5c44b6d6953ac

rq turtle/ttl

TODO

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#>
# Timeline of female african singers
#defaultView:Timeline
SELECT DISTINCT ?sängerin ?sängerinLabel ?land ?landLabel ?geboren ?gestorben ?image
WHERE {
  ?sängerin wdt:P31 wd:Q5;
            wdt:P21 wd:Q6581072;
            wdt:P106 wd:Q177220;
            wdt:P18 ?image;
            wdt:P569 ?geboren;
            wdt:P27 ?land. 
  ?land wdt:P30 wd:Q15.
  OPTIONAL { ?sängerin wdt:P570 ?gestorben. }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ASC(?geboren)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?geboren"):::projected v5("?gestorben"):::projected v3("?image"):::projected v4("?land"):::projected v2("?sängerin"):::projected c4(["wd:Q6581072"]):::iri c11(["wd:Q15"]):::iri c14(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c16(["#91;AUTO_LANGUAGE#93;,en"]):::literal c6(["wd:Q177220"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P21"--> c4 v2 --"wdt:P106"--> c6 v2 --"wdt:P18"--> v3 v2 --"wdt:P569"--> v1 v2 --"wdt:P27"--> v4 v4 --"wdt:P30"--> c11 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P570".-> v5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c16 end