query-ebefa66cf3a1d489f5749f9619c355b6
Items in the Czech Republic that have coordinates missing an image SELECT ?item ?itemLabel ?coord WHERE { ?item wdt:P17 wd:Q213; wdt:P625 ?coord . MINUS { ?item wdt:P18 ?image } . SERVICE wikibase:label { bd:serviceParam wikibase:language "cs" } . }
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#>
# Items in the Czech Republic that have coordinates missing an image
SELECT ?item ?itemLabel ?coord
WHERE
{
?item wdt:P17 wd:Q213; wdt:P625 ?coord .
MINUS { ?item wdt:P18 ?image } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "cs" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?coord"):::projected
v3("?image")
v1("?item"):::projected
c8(["cs"]):::literal
c2(["wd:Q213"]):::iri
c6(["bd:serviceParam"]):::iri
v1 --"wdt:P17"--> c2
v1 --"wdt:P625"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P18"--> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end