query-4ad9d144f741536f0a4b5395dfb08d42

rq turtle/ttl

Deportes en los que Perú tiene más medallas en los Olympic Games Deportes en los que Perú tiene más medallas en los Olympic Games Deportes en los que Perú tiene más medallas en los Olympic Games Sportwedstrijden waarin Peru de meeste medailles heeft behaald op Olympic Games

Use at

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 DISTINCT
  ?deporte
  ?deporteLabel
  (COUNT(?deporte) AS ?count)
{
  # Campeones en los Juegos Olímpicos

  ?juego_olímpico
    wdt:P31/wdt:P279* wd:Q18536594;
    wdt:P641 ?deporte;
    p:P1346 ?declaración.

  ?declaración
    ps:P1346 ?campeón;
    pq:P642 ?medalla.

  # El valor de la variable "medalla" debe ser un valor que exprese posición en los 3 primeros puestos

  VALUES ?medalla {
    # Primer puesto
    wd:Q15243387
    wd:Q20882667
    # Segundo puesto
    wd:Q15889641
    wd:Q20882668
    # Tercer puesto
    wd:Q15889643
    wd:Q20882669
  }

  # El campeón debe ser un peruano

  {?campeón wdt:P27 wd:Q419 }
  UNION
  {?campeón wdt:P19/wdt:P131* wd:Q419 }

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?deporte ?deporteLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?campeón") v6("?count") v3("?declaración") v2("?deporte"):::projected v1("?juego_olímpico") v6("?medalla") a1((" ")) a2((" ")) c3(["wd:Q18536594"]):::iri c9(["wd:Q419"]):::iri c13(["bd:serviceParam"]):::iri c15(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 v1 --"p:direct/P641"--> v2 v1 --"p:P1346"--> v3 v3 --"p:statement/P1346"--> v4 v3 --"p:qualifier/P642"--> v6 bind0[/VALUES ?medalla/] bind0-->v6 bind00(["wd:Q15243387"]) bind00 --> bind0 bind01(["wd:Q20882667"]) bind01 --> bind0 bind02(["wd:Q15889641"]) bind02 --> bind0 bind03(["wd:Q20882668"]) bind03 --> bind0 bind04(["wd:Q15889643"]) bind04 --> bind0 bind05(["wd:Q20882669"]) bind05 --> bind0 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P19"--> a2 a2 --"p:direct/P131"--> c9 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v4 --"p:direct/P27"--> c9 end union0r <== or ==> union0l end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c13 --"wikibase:language"--> c15 end bind2[/"count(?deporte)"/] v2 --o bind2 bind2 --as--o v6