query-5fcf266c52738472dadfbccf32012256
TODO
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 ?item ?itemLabel ?website ?coordinates ?BundeslandLabel
WHERE
{
?item wdt:P31 wd:Q42744322. # Item is German city
?item wdt:P856 ?website.
OPTIONAL { ?item wdt:P625 ?coordinates. }
?item wdt:P131+ ?Bundesland.
?Bundesland wdt:P31 wd:Q1221156.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?Bundesland")
v3("?coordinates"):::projected
v1("?item"):::projected
v2("?website"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q42744322"]):::iri
c6(["wd:Q1221156"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P856"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P625".-> v3
end
v1 --"wdt:P131"--> v4
v4 --"wdt:P31"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end