I'm trying to find out a way to search for documents before the current date. I found a solution using the following in the query:
{
range: {
last_published_date: {
lte: 'now/m'
}
}
}
but I'm wondering what 'now'
means to a user in Asia, if all my documents are saved specifying a time zone.