query-8b178aed5728fa8ae8f7fd011a07a23a
Saarland
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 ?landkreis ?city ?cityLabel ?item ?itemLabel ?image
WHERE
{
VALUES ?saarland {wd:Q56279200}
?saarland wdt:P527 ?landkreis.
?landkreis wdt:P527 ?city.
?item wdt:P2817 ?city.
optional {
?item wdt:P18 ?image.
}
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;
v3("?city"):::projected
v5("?image"):::projected
v4("?item"):::projected
v2("?landkreis"):::projected
v1("?saarland")
c7(["de"]):::literal
c5(["bd:serviceParam"]):::iri
bind0[/VALUES ?saarland/]
bind0-->v1
bind00(["wd:Q56279200"])
bind00 --> bind0
v1 --"wdt:P527"--> v2
v2 --"wdt:P527"--> v3
v4 --"wdt:P2817"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P18".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end