query-88a0debbc9df3ee9a08c10473c5ce412

rq turtle/ttl

Objekte an/in Straße

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#>
#defaultView:Map;Table
SELECT DISTINCT ?item ?itemLabel ?coordinate 
WHERE {
  ?item wdt:P669 wd:Q1618455 . # Objekt liegt in der Hildesheimer Straße
  OPTIONAL { ?item wdt:P625 ?coordinate . }
  MINUS { ?item (wdt:P31/wdt:P279*) wd:Q79007 . } # Objekt ist keine Straße oder Unterklasse davon
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,[AUTO_LANGUAGE]" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?coordinate"):::projected v1("?item"):::projected a1((" ")) c8(["bd:serviceParam"]):::iri c2(["wd:Q1618455"]):::iri c6(["wd:Q79007"]):::iri c10(["de,#91;AUTO_LANGUAGE#93;"]):::literal v1 --"wdt:P669"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v2 end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end