public async Task <Unit> Handle(ShiftMeeting request, CancellationToken cancellationToken)
        {
            // TODO: implement handling
            // shift meeting in graph
            // save info about meeting shift in db
            try
            {
                await _graphClient.ShiftMeetingAsync(request.MeetingId, request.TeamId, request.NewStartTime);

                await _integrationRepository.InsertShiftMeetingEventAsync(request.MeetingId, request.TeamId, request.NewStartTime);
            }
            catch (Exception e)
            {
                throw e;
            }

            return(Unit.Value);
        }