query-43b942dbd6ed5af723962556f5d17333
Alle Stadtteile einer Stadt für Commons-Suche
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#>
#---------------------------------------------------------------------------------------
# Alle Stadtteile einer Stadt für Commons-Suche
# ==> Weismark OR Pallien OR Trier-Süd incategory:"All media needing categories as of 2019"
#---------------------------------------------------------------------------------------
#defaultView:Table
SELECT distinct ?group ?itemLabel
WHERE {
BIND("OR " AS ?group ) .
?item wdt:P131 wd:Q1055. # liegt in Verwaltungseinheit der Stadt
VALUES ?instance_of {
wd:Q2740635 # Stadtbezirk in Deutschland
wd:Q4286337 # Stadtbezirk
wd:Q253019 # Ortsteil
}
?item wdt:P31/wdt:P279* ?instance_of # ist Teil der Stadt
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?group"):::projected
v3("?instance_of")
v2("?item")
a1((" "))
c6(["bd:serviceParam"]):::iri
c2(["wd:Q1055"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en,de"]):::literal
bind0[/"'OR '"/]
bind0 --as--o v1
v2 --"wdt:P131"--> c2
bind1[/VALUES ?instance_of/]
bind1-->v3
bind10(["wd:Q2740635"])
bind10 --> bind1
bind11(["wd:Q4286337"])
bind11 --> bind1
bind12(["wd:Q253019"])
bind12 --> bind1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end