query-8f2bebeb67d03cabcaefe97c5d47aa8a

rq turtle/ttl

Staged Performing Arts Productions (Co-)Produced by a Swiss Production Company Staged Performing Arts Productions (Co-)Produced by a Swiss Production Company Staged producties uitvoerende kunst (co-)geproduceerd door een Zwitsers productie-bedrijf

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#>
SELECT DISTINCT ?item ?itemLabel ?date_of_first_performance WHERE {
  ?item (wdt:P31/wdt:P279*) wd:Q43099500.   #performing arts production
  MINUS { ?item (wdt:P31/wdt:P279*) wd:Q59163902 }  #filter out musical productions
  ?item wdt:P272/wdt:P131*/wdt:P17 wd:Q39.  #production company located in Switzerland
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
  OPTIONAL { ?item wdt:P1191 ?date_of_first_performance. }
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?date_of_first_performance"):::projected v1("?item"):::projected a1((" ")) a2((" ")) a3((" ")) a4((" ")) c12(["#91;AUTO_LANGUAGE#93;,de"]):::literal c3(["wd:Q43099500"]):::iri c8(["wd:Q39"]):::iri c4(["wd:Q59163902"]):::iri c10(["bd:serviceParam"]):::iri v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> a2 a2 --"wdt:P279"--> c4 end v1 --"wdt:P272"--> a3 a3 --"wdt:P131"--> a4 a4 --"wdt:P17"--> c8 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1191".-> v2 end