query-52aa86adf0564d135b18819a3295bdb3

rq turtle/ttl

Anzahl Gesamtzahl Personen mit einer ORCID an allen deutschen Hochschulen

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT (count(?person) AS ?number)
{
  ?person wdt:P496 ?orcid .
  ?person wdt:P108 ?uni .
  ?uni wdt:P17 wd:Q183 .    # nur Deutsche Unis
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?number") v2("?orcid") v1("?person"):::projected v3("?uni") c4(["wd:Q183"]):::iri v1 --"wdt:P496"--> v2 v1 --"wdt:P108"--> v3 v3 --"wdt:P17"--> c4 bind1[/"count(?person)"/] v1 --o bind1 bind1 --as--o v4