Hello, I am unable to query the bulkOperation
using the updated_at
field. I want to filter the data by both date and time, but the time-based filter does not seem to be working as expected.
Can you share your full query?
I have had this issue before, what fixed it for me was putting single quotes. When I did the following updated_at:>2025-05-17T06:10Z
it ignored the time, and filtered only be date, however when I did the following updated_at:>'2025-05-17T06:10Z'
it worked correctly.
1 Like
Thanks to @SRCB for providing the solution—really appreciate your help!
1 Like