Hi. I think I found a bug relating to the filter functions on GraphQL.
I'm trying to show all "trips" that are on a specific month. In my query, I filter the trips by selecting a month; therefore, I filter by the range from day 0 to the final day of that specific month.
What I found is that when I filter this way it does so incorrectly. It gives me trips that are outside of that range.
Possible reproduction:
- Create documents
- Filter by month by providing a range like
datefrom_after: "2023-07-01", dateto_before: "2023-07-30"