query-db39ed629e8701801260f952655063d8

rq turtle/ttl

Polscy biochemicy

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#>
SELECT ?human ?humanLabel ?born WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],pl". }
  ?human wdt:P31 wd:Q5.
  ?human wdt:P27 wd:Q36;
         wdt:P106 wd:Q2919046.
OPTIONAL {
  ?human wdt:P569 ?born.
}  
}
GROUP BY ?human ?humanLabel ?born ORDER BY DESC(?born)
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?born"):::projected v2("?human"):::projected c2(["bd:serviceParam"]):::iri c4(["#91;AUTO_LANGUAGE#93;,pl"]):::literal c10(["wd:Q2919046"]):::iri c6(["wd:Q5"]):::iri c8(["wd:Q36"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v2 --"wdt:P31"--> c6 v2 --"wdt:P27"--> c8 v2 --"wdt:P106"--> c10 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v1 end