query-e4536db7a32575d0ad50c32ff4413bf2
Propertiescountry (P17)instance of (P31)subclass of (P279)head of government (P6)
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 ?city ?cityLabel ?mayor ?mayorLabel where{ #hier wird beschrieben, welche Spalten bzw. informationen ich ausgegeben haben möchte
?city wdt:P17 wd:Q183. #1. Bedingung: Variable city ist aus LAND (P17) DEUTSCHLAND (Q183)
?city wdt:P31/wdt:P279* wd:Q515. #2. Bedingung: Variable city ist eine Stadt (mitsamt aller Subklassen, dafür steht P31 und P279)
?city wdt:P6 ?mayor. #Mayor ist Head of State von city (die nun ausreichend definiert ist)
SERVICE wikibase:label { bd:serviceParam wikibase:language "de" } #gib mir das Ergebnis mitsamt des Labels in deutscher Sprache aus
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?city"):::projected
v2("?mayor"):::projected
a1((" "))
c10(["de"]):::literal
c8(["bd:serviceParam"]):::iri
c5(["wd:Q515"]):::iri
c2(["wd:Q183"]):::iri
v1 --"wdt:P17"--> c2
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
v1 --"wdt:P6"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end