query-2bd09654880b08417160a577d252d1d6

rq turtle/ttl

Gib mir alle Universitäten in Deutschland!

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 ?instance ?instanceLabel
WHERE {
  ?instance wdt:P31 wd:Q3918 .
  ?instance wdt:P17 wd:Q183
  SERVICE wikibase:label {bd:serviceParam wikibase:language "de"}
} ORDER BY ASC(?instanceLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?instance"):::projected v1("?instanceLabel"):::projected c8(["de"]):::literal c6(["bd:serviceParam"]):::iri c2(["wd:Q3918"]):::iri c4(["wd:Q183"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P17"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end