query-db9bb7282a0c4d6f24d5e3d6d4f76197
Wikidata-Items in Stuttgart mit geographischer Koordinate aber ohne Bild SELECT ?item ?itemLabel ?itemDescription ?coordinate # Liste der ausgegebenen Variablen WHERE { ?item wdt:P17 wd:Q183 . # ?item liegt im Staat Deutschland ?item wdt:P131 wd:Q1022 . # ?item liegt in der Verwaltungseinheit Stuttgart ?item wdt:P625 ?coordinate . # ?item hat die geographische Koordinate ?coordinate
# Bedingung: Es existiert kein Bild FILTER NOT EXISTS { ?item wdt:P18 ?bild }
# dieser SERVICE erzeugt die Ausgabe von ?itemLabel SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en". } }
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#>
# Wikidata-Items in Stuttgart mit geographischer Koordinate aber ohne Bild
SELECT ?item ?itemLabel ?itemDescription ?coordinate # Liste der ausgegebenen Variablen
WHERE
{
?item wdt:P17 wd:Q183 . # ?item liegt im Staat Deutschland
?item wdt:P131 wd:Q1022 . # ?item liegt in der Verwaltungseinheit Stuttgart
?item wdt:P625 ?coordinate . # ?item hat die geographische Koordinate ?coordinate
# Bedingung: Es existiert kein Bild
FILTER NOT EXISTS { ?item wdt:P18 ?bild }
# dieser SERVICE erzeugt die Ausgabe von ?itemLabel
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;
v2("?bild")
v3("?coordinate"):::projected
v1("?item"):::projected
c8(["bd:serviceParam"]):::iri
c3(["wd:Q183"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
c5(["wd:Q1022"]):::iri
f0[["not "]]
subgraph f0e0["Exists Clause"]
e0v1 --"wdt:P18"--> e0v2
e0v2("?bild"):::projected
e0v1("?item"):::projected
end
f0--EXISTS--> f0e0
f0 --> v1
f0 --> c1
f0 --> v2
v1 --"wdt:P18"--> v2
v1 --"wdt:P17"--> c3
v1 --"wdt:P131"--> c5
v1 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end