I'm building calendar with google calendar api but can't get it to work. So I'm using timeRange (day, week, month) so I can change between day, week and month view. I got the day and month view to work but can't get a week view.
I'm using this for getting the range. timeRange for a day and a month works normally. Is there synonym for a week in googles minds?
path: `https://www.googleapis.com/calendar/v3/calendars/${CALENDAR_ID}/events?maxResults=11&orderBy=updated&timeMin=${moment().toISOString()}&timeMax=${moment()
.endOf(timeRange).toISOString()}`,