query-28d6b84a15c5b362c735459703ebbbea

rq turtle/ttl

Bibliotheken mit amtlichem Gemeindeschlüssel

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 ?bib ?bibLabel ?orgLabel ?schluessel WHERE
{
    ?bib wdt:P31/wdt:P279* wd:Q7075 . # Bibliotheken (inkl. Unterarten)
    ?bib wdt:P131+ ?org .             # Administrativ übergeordnete Einheit (transitiv)
    ?org wdt:P439 ?schluessel .       # Gemeindeschlüssel
    SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?bib"):::projected v2("?org") v3("?schluessel"):::projected a1((" ")) c3(["wd:Q7075"]):::iri c9(["de"]):::literal c7(["bd:serviceParam"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P131"--> v2 v2 --"wdt:P439"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end