I am trying to access drive items of my joined teams. I do get drives through the API and then I try to get items in that drive.
there are a total of 6 drive items but I only get 4. I do not get the other 2. Not sure what the reason is.
I make the following calls
var AllDrives = await graphClient.Groups[joinedTeams[t].Id].Drives.Request().GetAsync();
This gets me the drive
var children = await graphClient.Drives[AllDrives[d].Id].Root.Children.Request().GetAsync();
And this gets me all the folders/channels on the drive except 2 of them
