query-0f151a3d67a0fed3fed9825ef3af3597

rq turtle/ttl

Die größten Hochschulen weltweit Give me the largest universities!

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 DISTINCT ?uni ?uniLabel ?members ?pic
{
  ?uni wdt:P31/wdt:P279*  wd:Q3918 ;   # Hochschule
       wdt:P2196 ?members .            # Studierende
  OPTIONAL { ?uni wdt:P18 ?pic }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
}
ORDER BY DESC(?members)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?members"):::projected v3("?pic"):::projected v2("?uni"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c3(["wd:Q3918"]):::iri c9(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P2196"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end