query-8fb92a0b4a6a187b231061e499a18a0a
Gib mir alle Fachhochschulen in Deutschland!
Use at
- https://query.wikidata.org/sparql
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/wdt:P279* wd:Q1365560 .
?instance wdt:P131+ 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
a1((" "))
c9(["de"]):::literal
c7(["bd:serviceParam"]):::iri
c5(["wd:Q183"]):::iri
c3(["wd:Q1365560"]):::iri
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v2 --"wdt:P131"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end