Get-AADExportSubscribedSkus.ps1

<#
 .Synopsis
  Get the properties and relationships of the currently authenticated organization.
 
 .Description
  GET /organization
  https://docs.microsoft.com/en-us/graph/api/organization-get
 
 .Example
  Get-AADExportOrganization
#>


Function Get-AADExportSubscribedSkus {
  Invoke-Graph 'subscribedSkus'
}