query-8129121660eb123467fcdbd127868185
title: Landtagswahlkreise in Niedersachsen SELECT DISTINCT ?Landtagswahlkreis ?LandtagswahlkreisLabel ?geoForm WHERE { ?Landtagswahlkreis wdt:P31 wd:Q18226756 ; wdt:P131 wd:Q1197 ; wdt:P1545 ?Ordnungsnummer . OPTIONAL{ ?Landtagswahlkreis wdt:P3896 ?geoForm. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" } } ORDER BY ?Ordnungsnummer
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#>
#title: Landtagswahlkreise in Niedersachsen
SELECT DISTINCT ?Landtagswahlkreis ?LandtagswahlkreisLabel ?geoForm
WHERE
{
?Landtagswahlkreis wdt:P31 wd:Q18226756 ;
wdt:P131 wd:Q1197 ;
wdt:P1545 ?Ordnungsnummer .
OPTIONAL{ ?Landtagswahlkreis wdt:P3896 ?geoForm. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
}
ORDER BY ?Ordnungsnummer
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?Landtagswahlkreis"):::projected
v1("?Ordnungsnummer")
v3("?geoForm"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q18226756"]):::iri
c4(["wd:Q1197"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
v2 --"wdt:P31"--> c2
v2 --"wdt:P131"--> c4
v2 --"wdt:P1545"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P3896".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end