query-d78db6e8fc3f54a529e5d63d6e5589aa

rq turtle/ttl

QualifierHello, ? (Q688336)Alain Tanner as in (P485)archives at of the value of (P217)inventory number could you help me to display the value of the qualifier

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?naissance ?archives ?archivesLabel ?archivesDescription ?inventaire ?filmLabel ?recompenseLabel 
{
  ?item wdt:P106 wd:Q2526255; #un élément dont l'une des occupations est d'être un réalisateur.
        wdt:P569 ?naissance. #date de naissance
  OPTIONAL {?item wdt:P485 ?archives.} #option avoir déposé ses archives dans une institution
  OPTIONAL {?archives pq:P217 ?inventaire.} #option avoir pour qualificatif un numéro d'inventaire.
  FILTER (year(?naissance) > 1920).#être né après 1920
  FILTER (year(?naissance) < 1930).#être né avant 1930
  ?film wdt:P166 ?recompense. #un film ayant reçu une récompense.
  ?film wdt:P57 ?item. #que ce film aille été réalisé par l'élément recherché plus haut.
  ?recompense wdt:P31 wd:Q28444913. #que la récompense soit attribuée par le Festival de Cannes.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de,it". }
}
ORDER BY DESC(?archivesLabel) #trier par ordre décroissant de titre d'institution

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?archives"):::projected v1("?archivesLabel"):::projected v6("?film") v5("?inventaire"):::projected v3("?item"):::projected v2("?naissance"):::projected v7("?recompense") c13(["bd:serviceParam"]):::iri c4(["wd:Q2526255"]):::iri c11(["wd:Q28444913"]):::iri c15(["#91;AUTO_LANGUAGE#93;,en,de,it"]):::literal f0[["year-from-dateTime(?naissance) < '1930^^xsd:integer'"]] f0 --> v2 f1[["year-from-dateTime(?naissance) > '1920^^xsd:integer'"]] f1 --> v2 v3 --"wdt:P106"--> c4 v3 --"wdt:P569"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P485".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v4 -."pq:P217".-> v5 end v6 --"wdt:P166"--> v7 v6 --"wdt:P57"--> v3 v7 --"wdt:P31"--> c11 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c13 --"wikibase:language"--> c15 end