query-9405e78bfc9c1beb12cb55961c21e1cb
Items with KLEKs ID but without coordinatesHi, I would like to have two lists: A list of cemeteries (Q39614) with P5556 (KLEKs ID), and a list of all items with P5556 (KLEKs ID) but without P625 (coordinate location). 10:58, 9 August 2018 (UTC)) talk (ChristianSWKind regards! --:. ChristianSW@
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#>
SELECT DISTINCT ?item ?itemLabel ?klek
WHERE
{
?item wdt:P31/wdt:P279* wd:Q39614 .
?item wdt:P5556 ?klek .
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;
v1("?item"):::projected
v2("?klek"):::projected
a1((" "))
c6(["bd:serviceParam"]):::iri
c8(["de,en"]):::literal
c3(["wd:Q39614"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P5556"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end