I’ve noticed that when querying picks_per_day and packs_per_day there are inconsistencies with the timezones of the provided date filters and the returned dates. For example:
query {
packs_per_day (date_from: "2024-01-03T13:34:00", date_to: "2024-01-03T18:00:00"){
request_id
data (first: 5) {
edges {
node{
id
created_at
}
}
}
}
}
For context the request id is 6595b81ca4f5b32c26d8bf1e.
In the response there is a data point with created_at “2024-01-03T19:35:20”. It appears the date filter is in CST and the response is in UTC.
Is there a way to have it so the date filters are in UTC?
It seems someone else had this issue a few years back: Packs_per_day query not reporting correct data for the date filter