You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there's listEventsInRange(), however for an event to be returned it must have a start or end date that is within the range, meaning, a 3 day event won't be returned if you only get events on the second day. This means, if you currently want dates on a particular date you actually have to get events within a larger range than that singular day, and then filter events that don't actually overlap, and unless your range goes from the oldest to newest event, you could hypothetically still miss an event.
A more ideal solution is either a function akin to listEventsOnDate() or simply letting listEventsInRange() also return events that happen within the range, but dont start or end in it.
The text was updated successfully, but these errors were encountered:
Currently there's
listEventsInRange()
, however for an event to be returned it must have a start or end date that is within the range, meaning, a 3 day event won't be returned if you only get events on the second day. This means, if you currently want dates on a particular date you actually have to get events within a larger range than that singular day, and then filter events that don't actually overlap, and unless your range goes from the oldest to newest event, you could hypothetically still miss an event.A more ideal solution is either a function akin to
listEventsOnDate()
or simply lettinglistEventsInRange()
also return events that happen within the range, but dont start or end in it.The text was updated successfully, but these errors were encountered: