$query
->formatDate('createdAt', 'Y-m-d')->as('date')
->fromUnixTime('publishedAt', 'Y-m-d H:i:s')->as('published')
->strToDate('dateString', '%Y-%m-%d')->as('parsed')
->dateDiff('endDate', 'startDate')->as('daysDiff')
->dateAdd('startDate', '+1 month')->as('nextMonth')
->dateSub('endDate', '+7 days')->as('weekBefore')
->year('createdAt')->as('yr')
->month('createdAt')->as('mo')
->day('createdAt')->as('dy')
->now()->as('currentDateTime')
->currentTimestamp()->as('ts')
->currentDate()->as('today')
->currentTime()->as('nowTime');