I am using Microsoft graph API to get the event and in that event Object I am getting the start and end date like this
"start": {
"dateTime": "2022-09-17T12:00:00.0000000",
"timeZone": "UTC"
},
"end": {
"dateTime": "2022-09-17T12:20:00.0000000",
"timeZone": "UTC"
},
but it is in UTC
in DB I have this start and end DateTime in IST so I want to match the DB event with the events I am getting from Graph API and for that, I am using the DateTime property for that
I am thinking of first converting the graph API events DateTime property into IST formate and then matching it is there any way to do that