query-682d397292a4002c37c302e17fdb84cc

rq turtle/ttl

Dates and places of work of composerThis query :

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 ?lieuTravail ?lieuTravailLabel ?dateDebut ?dateFin
WHERE {
  ?compositeur wdt:P31 wd:Q5 ; 
               wdt:P106 wd:Q36834 ; 
               wdt:P937 ?lieuTravail ;  
               wdt:P2031 ?dateDebut .  
  OPTIONAL {
    ?compositeur wdt:P2032 ?dateFin .  
  }
  FILTER (?compositeur = wd:Q1340)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr,en"} # le label viendra de préférence dans votre langue, et autrement en anglais
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?compositeur") v3("?dateDebut"):::projected v4("?dateFin"):::projected v2("?lieuTravail"):::projected c10(["bd:serviceParam"]):::iri c3(["wd:Q5"]):::iri c12(["#91;AUTO_LANGUAGE#93;,fr,en"]):::literal c5(["wd:Q36834"]):::iri f0[["?compositeur = 'wd:Q1340'"]] f0 --> v1 v1 --"wdt:P31"--> c3 v1 --"wdt:P106"--> c5 v1 --"wdt:P937"--> v2 v1 --"wdt:P2031"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P2032".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end