query-8a6f5387b307c78efb89b692eddd8a50
requête permettant de lister les direct-rice-eur-s artistique comme fonction SELECT ?itemLabel ?organisationLabel ?remplaceLabel ?début ?fin ?remplacéparLabel ?item WHERE { ?item wdt:P31 wd:Q5 ; # L'élément est un humain wdt:P39 wd:Q706364 ; # qui est directeur artistique p:P39 ?fonction . # ce directeur artistique ?fonction pq:P642 ?organisation ; # de cette organisation pq:P580 ?début ; #a commencé pq:P582 ?fin ; #a terminé pq:P1365 ?remplace ; #a remplacé pq:P1366 ?remplacépar ; #a été remplacé par SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?début
Use at
- https://query.wikidata.org/sparql
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 p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#requête permettant de lister les direct-rice-eur-s artistique comme fonction
SELECT ?itemLabel ?organisationLabel ?remplaceLabel ?début ?fin ?remplacéparLabel ?item
WHERE
{
?item wdt:P31 wd:Q5 ; # L'élément est un humain
wdt:P39 wd:Q706364 ; # qui est directeur artistique
p:P39 ?fonction . # ce directeur artistique
?fonction pq:P642 ?organisation ; # de cette organisation
pq:P580 ?début ; #a commencé
pq:P582 ?fin ; #a terminé
pq:P1365 ?remplace ; #a remplacé
pq:P1366 ?remplacépar ; #a été remplacé par
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY ?début
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?début"):::projected
v5("?fin"):::projected
v3("?fonction")
v2("?item"):::projected
v4("?organisation")
v6("?remplace")
v7("?remplacépar")
c12(["bd:serviceParam"]):::iri
c4(["wd:Q706364"]):::iri
c2(["wd:Q5"]):::iri
c14(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"p:direct/P31"--> c2
v2 --"p:direct/P39"--> c4
v2 --"p:P39"--> v3
v3 --"p:qualifier/P642"--> v4
v3 --"p:qualifier/P580"--> v1
v3 --"p:qualifier/P582"--> v5
v3 --"p:qualifier/P1365"--> v6
v3 --"p:qualifier/P1366"--> v7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c12 --"wikibase:language"--> c14
end