query-684b82731d203f02af591c4c91744083

rq turtle/ttl

title:Items in Lithuania that have coordinates but missing an image SELECT ?item ?itemLabel ?coord WHERE { ?item wdt:P17 wd:Q37; wdt:P625 ?coord. FILTER(NOT EXISTS { ?item wdt:P18 ?image. }) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }

Use at

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:Items in Lithuania that have coordinates but missing an image
SELECT ?item ?itemLabel ?coord WHERE {
  ?item wdt:P17 wd:Q37;
    wdt:P625 ?coord.
  FILTER(NOT EXISTS { ?item wdt:P18 ?image. })
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v2("?image") v1("?item"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q37"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P18"--> e0v2 e0v2("?image"):::projected e0v1("?item"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> v2 v1 --"wdt:P18"--> v2 v1 --"wdt:P17"--> c3 v1 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end