query-5f631580637256b92f7436ecc2f99ec0

rq turtle/ttl

Give me all members who are 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 ?w ?wLabel
WHERE 
{
  ?w wdt:P463 wd:Q105757481 .
  ?w wdt:P31/wdt:P279* wd:Q3918 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} 
ORDER BY DESC(?wLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?w"):::projected v1("?wLabel"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c2(["wd:Q105757481"]):::iri c5(["wd:Q3918"]):::iri c9(["de,en"]):::literal v2 --"wdt:P463"--> c2 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end