Hi @Nishant Lakhlani
Can you share your test code? Make sure you are using the correct drive id/site id and item id in your code. Before running your project, use Postman or Graph Explorer to test it locally to see if it can return data correctly.
Also refer to my sample snippet, it works fine:
var graphClient = new GraphServiceClient(requestAdapter);
try {
var result = await graphClient.Drives["{drive id}"].Items["{driveItem-id}"].Children.GetAsync();
Console.WriteLine(result);
}
catch(ODataError odataError) {
Console.WriteLine(odataError.Error.Code);
Console.WriteLine(odataError.Error.Message);
}
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.