query-b9539eb2226a6758ceba1fe2a0445112

rq turtle/ttl

title: List of satge winners, ordered by number of wins SELECT ?tour ?tourLabel ?item ?itemLabel ?date WHERE { ?tour wdt:P31 wd:Q33881; rdfs:label ?tourLabel. FILTER((LANG(?tourLabel)) = "[AUTO_LANGUAGE]") ?item wdt:P361 ?tour; rdfs:label ?itemLabel. FILTER((LANG(?itemLabel)) = "[AUTO_LANGUAGE]") ?item wdt:P585 ?date; p:P1346 ?statement. ?statement ps:P1346 wd:Q207713; pq:P642 wd:Q20882747. } ORDER BY ?date

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
#title: List of satge winners, ordered by number of wins
SELECT ?tour ?tourLabel ?item ?itemLabel ?date WHERE {
  ?tour wdt:P31 wd:Q33881;
    rdfs:label ?tourLabel.
  FILTER((LANG(?tourLabel)) = "[AUTO_LANGUAGE]")
  ?item wdt:P361 ?tour;
    rdfs:label ?itemLabel.
  FILTER((LANG(?itemLabel)) = "[AUTO_LANGUAGE]")
  ?item wdt:P585 ?date;
    p:P1346 ?statement.
  ?statement ps:P1346 wd:Q207713;
    pq:P642 wd:Q20882747.
}
ORDER BY ?date

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date"):::projected v5("?item"):::projected v2("?itemLabel"):::projected v6("?statement") v4("?tour"):::projected v3("?tourLabel"):::projected c3(["wd:Q33881"]):::iri c9(["wd:Q207713"]):::iri c11(["wd:Q20882747"]):::iri f0[["?itemLabel = '#91;AUTO_LANGUAGE#93;'"]] f0 --> v2 f1[["?tourLabel = '#91;AUTO_LANGUAGE#93;'"]] f1 --> v3 v4 --"p:direct/P31"--> c3 v4 --"rdfs:label"--> v3 v5 --"p:direct/P361"--> v4 v5 --"rdfs:label"--> v2 v5 --"p:direct/P585"--> v1 v5 --"p:P1346"--> v6 v6 --"p:statement/P1346"--> c9 v6 --"p:qualifier/P642"--> c11