query-18fa9aa84b8623eb8aa7153e046df524

rq turtle/ttl

MapGeneral template to get a map of all jewish commercial enterprises addresses:

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{"hide":"?geo"}
#addresses of all jewish commercial enterprises
SELECT DISTINCT ?company ?companyLabel ?geo WHERE {
  ?company (wdt:P31/(wdt:P279*)) wd:Q4830453;
    (wdt:P2868/(wdt:P279*)) wd:Q19287329;
    wdt:P625 ?geo.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?company"):::projected v2("?geo"):::projected a1((" ")) a2((" ")) c10(["de"]):::literal c8(["bd:serviceParam"]):::iri c5(["wd:Q19287329"]):::iri c3(["wd:Q4830453"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P2868"--> a2 a2 --"wdt:P279"--> c5 v1 --"wdt:P625"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end