query-e2b5c50fddbd07b9dad750e2f77d43d5
Vu le grand nombre de personne ayant interprété certains personnages, il semble plus logique d'indiquer le rôle directement sur l’œuvre. Si ensuite, on veut la liste par personne, il suffit d'extraire les données (par exemple en SPARQL ou en LUA).: (pour Jean Marais, qui est le seul actuellement) et on peut donc faire une requête comme ceciQ2394596#P161Par exemple, l'info est présente sur
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?acteur ?acteurLabel ?q ?qLabel WHERE {
?q p:P161 ?claim .
?claim ps:P161 ?acteur .
?claim pq:P453/wdt:P1074* wd:Q129857 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
- https://www.wikidata.org/w/index.php?title=Topic:W4jsducarfzvechh&topic_showPostId=w4jtjlzh89z1i0po#flow-post-w4jtjlzh89z1i0po
- https://www.wikidata.org/wiki/Topic:W4jsducarfzvechh
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?acteur"):::projected
v2("?claim")
v1("?q"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c5(["wd:Q129857"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"p:P161"--> v2
v2 --"p:statement/P161"--> v3
v2 --"p:qualifier/P453"--> a1
a1 --"p:direct/P1074"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end