Skip to content

List all persons that have birthday the current month

Contributed via Discord

Show all birthdays for this month

Basic

LIST birthday
FROM "10 Example Data/people"
WHERE birthday.month = date(today).month

Variants

As inline query

$=dv.pages('"10 Example Data/people"').where(p => p.birthday).where(p => p.birthday.month == dv.date('today').month).file.link