It sounds like you are using the Date field without the “include Time field” selected. This means you need to convert this to an ISO string, and then cut the time part out of the string. So something like today.toISOString().substring(0, 10)
Here’s a thread asking a very similar question that might help.