Hi,
I have a query like this:
const max = yield Database .table('contacts') .select('updated_at')
How can I add a method, that only the most recent updated_at column is displayed?
updated_at
Thank you!
Try
const max = yield Database .table('contacts') .max('updated_at')
From the knex docs
Closing since not actionable
Most helpful comment
Try
From the knex docs