query-7c221420b010b33d27639310a7f1233d

rq turtle/ttl

Math people

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 ?person ?personLabel ?birth WHERE {
  ?person wdt:P106 wd:Q170790 .
  ?person wdt:P108 ?university .
  OPTIONAL{?person wdt:P569 ?birth}
  SERVICE wikibase:label{bd:serviceParam wikibase:language "en,de"}
} ORDER BY DESC(?birth)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?birth"):::projected v2("?person"):::projected v3("?university") c2(["wd:Q170790"]):::iri c6(["bd:serviceParam"]):::iri c8(["en,de"]):::literal v2 --"wdt:P106"--> c2 v2 --"wdt:P108"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P569".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end