Hi @SAC_535 ,
Refer to example list-childfolders, the code snippet should be able to get list of folders of selected mail folder.
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var childFolders = await graphClient.Me.MailFolders["{mailFolder-id}"].ChildFolders
.Request()
.GetAsync();
Hope this helps,
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have further questions about this answer, please click "Comment".