query-4d4c76aa17daa0d68608dc43b3fb8a7f

rq turtle/ttl

An welcher Uni sind die meisten ORCIDs registriert? ORCID nach deutschen Universitäten Welche deutschen Hochschulen haben die meisten ORCIDs registriert? Als Bubble Chart anzeigen!Query takes about 30 seconds. Which university registered the most ORCIDs? (Bubble Chart)

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#>
#defaultView:BubbleChart
SELECT DISTINCT ?uni ?uniLabel (count(?person) AS ?number)
{
  ?person wdt:P496 ?orcid .
  ?person wdt:P108 ?uni .
  ?uni wdt:P17 wd:Q183 .    # nur Deutsche Unis
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
} GROUP BY ?uni ?uniLabel
ORDER BY DESC(?number)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?number") v3("?orcid") v2("?person"):::projected v4("?uni"):::projected c6(["bd:serviceParam"]):::iri c4(["wd:Q183"]):::iri c8(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal v2 --"wdt:P496"--> v3 v2 --"wdt:P108"--> v4 v4 --"wdt:P17"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?person)"/] v2 --o bind1 bind1 --as--o v5