I'm rewriting all my PowerShell script from MSOnline to Microsoft Graph PowerShell.
One of my existing script below is about to disable specific user's MFA settings.
Set-MsolUser -UserPrincipalName $UserPrincipalName -StrongAuthenticationRequirements @()
I can't find a way to implement in Microsoft Graph PowerShell. I checked Update-MgUser page. There is no relevant arguments related to this.