query-224802dc3820980c1a0ba246ee177b16

rq turtle/ttl

Deportistas peruanos que han obtenido el primer puesto en cualquier competencia este año Deportistas peruanos que han obtenido el primer puesto en cualquier competencia este año Deportistas peruanos que han obtenido el primer puesto en cualquier competencia este año Peruaanse sporters die dit jaar de eerste plaats hebben behaald in een competitie

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
  ?peruano
  ?peruanoLabel
  ?puesto
  ?evento
  ?eventoLabel
{ 
  ?deporte wdt:P31/wdt:P279* wd:Q2312410;
           wdt:P3095 ?deportista.

  {?peruano wdt:P27 wd:Q419 }
  UNION
  {?peruano wdt:P19/wdt:P131* wd:Q419 }

  ?peruano wdt:P27 wd:Q419;
           wdt:P106 ?deportista;
           p:P1344 ?evento_enunciado.

  ?evento_enunciado ps:P1344 ?evento;
                    pq:P1352 ?puesto.

  ?evento wdt:P585 ?tiempo.

  FILTER(YEAR(?tiempo) = YEAR(NOW()))
  FILTER(?puesto = 1)

  SERVICE wikibase:label { bd:serviceParam wikibase:language "es,[AUTO_LANGUAGE]". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?deporte") v4("?deportista") v7("?evento"):::projected v6("?evento_enunciado") v5("?peruano"):::projected v1("?puesto"):::projected v2("?tiempo") a1((" ")) a2((" ")) c18(["es,#91;AUTO_LANGUAGE#93;"]):::literal c7(["wd:Q419"]):::iri c16(["bd:serviceParam"]):::iri c4(["wd:Q2312410"]):::iri f0[["?puesto = '1^^xsd:integer'"]] f0 --> v1 f1[["year-from-dateTime(?tiempo) = year-from-dateTime(NOW())"]] f1 --> v2 v3 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c4 v3 --"p:direct/P3095"--> v4 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v5 --"p:direct/P19"--> a2 a2 --"p:direct/P131"--> c7 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v5 --"p:direct/P27"--> c7 end union0r <== or ==> union0l end v5 --"p:direct/P27"--> c7 v5 --"p:direct/P106"--> v4 v5 --"p:P1344"--> v6 v6 --"p:statement/P1344"--> v7 v6 --"p:qualifier/P1352"--> v1 v7 --"p:direct/P585"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c16 --"wikibase:language"--> c18 end