query-6bca7df91952945c55fcf4ef24b8e185

rq turtle/ttl

Items in Lithuania that have coordinates missing an image SELECT ?item ?itemLabel ?coord WHERE { ?item wdt:P17 wd:Q37 . ?item wdt:P625 ?coord . FILTER NOT EXISTS { ?item wdt:P18 ?image } SERVICE wikibase:label { bd:serviceParam wikibase:language "lt" } }

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#>
# Items in Lithuania that have coordinates missing an image
SELECT ?item ?itemLabel ?coord
WHERE
{
    ?item wdt:P17 wd:Q37 .
    ?item wdt:P625 ?coord .
    FILTER NOT EXISTS {
        ?item wdt:P18 ?image
    } 
    SERVICE wikibase:label { bd:serviceParam wikibase:language "lt" }
}

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(["lt"]):::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