query-22228d7f5c53a722d906147f544a2861
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?klek
WHERE
{
?item wdt:P5556 ?klek .
MINUS { ?item wdt:P625 ?coord. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coord")
v1("?item"):::projected
v2("?klek"):::projected
c4(["bd:serviceParam"]):::iri
c6(["de,en"]):::literal
v1 --"wdt:P5556"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P625"--> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end