query-0225dcdd63f0121de0d84b15490b1d3c
Die Flurnamen des Herzogtums Braunschweig
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?start ?LonLat WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
?item p:P1343 ?statement.
?statement ps:P1343 wd:Q89404596.
OPTIONAL {
?statement pq:P1545 ?start.
FILTER(!(ISBLANK(?start)))
}
OPTIONAL {
?item wdt:P625 ?LonLat .
FILTER(!(ISBLANK(?start)))
}
}
ORDER BY (?itemLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?LonLat"):::projected
v3("?item"):::projected
v1("?itemLabel"):::projected
v2("?start"):::projected
v4("?statement")
c4(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c2(["bd:serviceParam"]):::iri
c7(["wd:Q89404596"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v3 --"p:P1343"--> v4
v4 --"p:statement/P1343"--> c7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."p:qualifier/P1545".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."p:direct/P625".-> v5
end