query-39e9441db6bf9bf5e4d41bbad0b89ec6

rq turtle/ttl

Peruanos que cumplen años hoy Peruanos que cumplen años hoy Peruanos que cumplen años hoy Peruanen die vandaag hun verjaardag hebben

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT
  ?peruano
  ?peruanoLabel
  ?peruanoDescription
{
  {?peruano wdt:P27 wd:Q419 }
  UNION
  {?peruano wdt:P19/wdt:P131* wd:Q419 }

  FILTER NOT EXISTS {?peruano wdt:P570 ?fecha_de_fallecimiento}

  ?peruano wdt:P569 ?fecha_de_nacimiento.

  FILTER(MONTH(?fecha_de_nacimiento) = MONTH(NOW()))
  FILTER(DAY(?fecha_de_nacimiento) = DAY(NOW()))

  SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
}
ORDER BY ?peruanoLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?fecha_de_fallecimiento") v2("?fecha_de_nacimiento") v3("?peruano"):::projected v1("?peruanoLabel"):::projected a1((" ")) c8(["bd:serviceParam"]):::iri c3(["wd:Q419"]):::iri c10(["es"]):::literal f0[["day-from-dateTime(?fecha_de_nacimiento) = day-from-dateTime(NOW())"]] f0 --> v2 f1[["month-from-dateTime(?fecha_de_nacimiento) = month-from-dateTime(NOW())"]] f1 --> v2 f2[["not "]] subgraph f2e0["Exists Clause"] e0v1 --"wdt:P570"--> e0v2 e0v2("?fecha_de_fallecimiento"):::projected e0v1("?peruano"):::projected end f2--EXISTS--> f2e0 f2 --> v3 f2 --> c1 f2 --> v4 v3 --"wdt:P570"--> v4 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v3 --"wdt:P19"--> a1 a1 --"wdt:P131"--> c3 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v3 --"wdt:P27"--> c3 end union0r <== or ==> union0l end v3 --"wdt:P569"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end