query-9fabf303b07acf5013eaee2578f284d8
Et il n'y a pas de raison pourquoi vous ne devriez pas voir le "statement" - ça devrait aider :
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 ?item ?itemLabel (year(?when) as ?year) ?statement ?winnerLabel ?score
WHERE
{
?item wdt:P31 wd:Q57776091. # L'élément est une Sweet Adelines International chorus competition
?item wdt:P585 ?when. # L'élément possède une date
?item p:P1346 ?statement. # L'élément a une valeur pour vainqueur (P1346), (cela crée l'URI)
?statement ps:P1346 ?winner. # identité du vainqueur
?statement pq:P1351 ?score. # nombre de points enregistré par le vainqueur
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} order by desc(?year)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v6("?score"):::projected
v4("?statement"):::projected
v3("?when"):::projected
v5("?winner")
v7("?year")
c2(["wd:Q57776091"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"p:direct/P31"--> c2
v2 --"p:direct/P585"--> v3
v2 --"p:P1346"--> v4
v4 --"p:statement/P1346"--> v5
v4 --"p:qualifier/P1351"--> v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind0[/"year-from-dateTime(?when)"/]
v3 --o bind0
bind0 --as--o v7