query-643e1eca15c0063c215e58bc0264f5c0
Abfrage Objekte (Gebäude mit oder ohne KGS-ID) mit EGID-Nummer SELECT DISTINCT ?item ?itemLabel ?itemDescription WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". } { SELECT DISTINCT ?item WHERE { ?item p:P9665 ?statement0. ?statement0 (ps:P9665) _:anyValueP9665. } LIMIT 9000 } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Abfrage Objekte (Gebäude mit oder ohne KGS-ID) mit EGID-Nummer
SELECT DISTINCT ?item ?itemLabel ?itemDescription
WHERE
{
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
{
SELECT DISTINCT ?item
WHERE
{
?item p:P9665 ?statement0.
?statement0 (ps:P9665) _:anyValueP9665.
}
LIMIT 9000
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?statement0")
a1((" "))
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"p:P9665"--> v2
v2 --"p:statement/P9665"--> a1