query-eefbd87eaa09eb4c1244b5112f189cf5

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT (STRAFTER(STR(?item), STR(wd:)) AS ?1) ('Den' AS ?Den) (CONCAT('"', STR(REPLACE(?desc, 'Febraury', 'February')), '"') AS ?2) {
  ?item wdt:P31 wd:Q13442814; wdt:P577 ?date FILTER( MONTH( ?date ) = 2 ) .
  ?item schema:description ?desc FILTER( LANG( ?desc ) = 'en' && REGEX( ?desc, 'Febraury' ) ) .
} LIMIT 6000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?1") v6("?2") v5("?Den") v2("?date") v1("?desc"):::projected v3("?item"):::projected c5(["wd:Q13442814"]):::iri f0[["?desc = 'en'regex(?desc,'Febraury')"]] f0 --> v1 f1[["month-from-dateTime(?date) = '2^^xsd:integer'"]] f1 --> v2 v3 --"wdt:P31"--> c5 v3 --"wdt:P577"--> v2 v3 --"schema:description"--> v1 bind2[/"substring-after(str(?item),str('wd:'))"/] v3 --o bind2 bind2 --as--o v4 bind3[/"'Den'"/] bind3 --as--o v5 bind4[/"concat('"',str(replace(?desc,'Febraury','February')),'"')"/] v1 --o bind4 bind4 --as--o v6