Note: if you are running CloudGraph locally you can view the interactive, automatically generated documentation in either GraphQL Playground or Altair by clicking the docs button on the right-hand side of the screen. After reading the below information we highly suggest you use one of these tools to test your queries as they will autocomplete fields for you and let you know if your queries are valid before you even submit them.
You can currently query the following attributes and connections on an Azure Virtual Machine Scale Set
query {
queryazureVirtualMachineScaleSet{
id
name
type
kind
subscriptionId
region
resourceGroupId
provisioningState
overprovision
doNotRunExtensionsOnOverprovisionedVMs
singlePlacementGroup
platformFaultDomainCount
uniqueId
virtualMachineProfile{
osProfile{
computerNamePrefix
adminUsername
allowExtensionOperations
requireGuestProvisionSignal
linuxConfiguration{
disablePasswordAuthentication
provisionVMAgent
ssh{
publicKeys {
path
keyData
}
}
}
windowsConfiguration{
provisionVMAgent
enableAutomaticUpdates
timeZone
ssh{
publicKeys {
path
keyData
}
}
}
secrets{
sourceVault{
id
}
vaultCertificates {
certificateUrl
certificateStore
}
}
}
storageProfile{
imageReference{
id
sku
offer
version
publisher
}
osDisk{
caching
createOption
osType
diskSizeGB
writeAcceleratorEnabled
managedDisk{
storageAccountType
}
}
}
networkProfile{
networkInterfaceConfigurations{
id
name
primary
enableAcceleratedNetworking
enableFpga
enableIPForwarding
deleteOption
networkSecurityGroup{
id
}
dnsSettings{
dnsServers
}
ipConfigurations{
id
name
privateIPAddressVersion
primary
subnetId
applicationGatewayBackendAddressPools{
id
}
applicationSecurityGroups{
id
}
loadBalancerBackendAddressPools{
id
}
loadBalancerInboundNatPools{
id
}
}
}
}
diagnosticsProfile{
bootDiagnostics{
enabled
}
}
extensionProfile{
extensions{
id
name
forceUpdateTag
type
type1
typeHandlerVersion
publisher
provisioningState
provisionAfterExtensions
autoUpgradeMinorVersion
enableAutomaticUpgrade
settings
}
}
}
scaleInPolicy{
rules
}
resourceGroup{
id
}
tags{
id
key
value
}
}
}

Get data for a single Azure Virtual Machine Scale Set key that you know the ID for:
query {
getazureVirtualMachineScaleSet(id: "12345") {
id
}
}

Get data for all of the Virtual Machine Scale Sets in a certain Azure subscription:
query {
queryazureVirtualMachineScaleSet(filter: { subscriptionId: { eq: "12345" } }) {
id
}
}

Get data for all of the Virtual Machine Scale Sets that are NOT in a certain Azure subscription:
query {
queryazureVirtualMachineScaleSet(filter: { not: { subscriptionId: { eq: "12345" } } }) {
id
}
}

Get data for all of the Virtual Machine Scale Sets that are connected to a resourceGroup:
query {
queryazureVirtualMachineScaleSet(filter: { has: resourceGroup }) {
id
}
}

You can order the results you get back either asc or desc depending on your preference:
query {
queryazureVirtualMachineScaleSet(order: { desc: name }) {
id
}
}

Only select and return the first two Virtual Machine Scale Sets that are found:
query {
queryazureVirtualMachineScaleSet(first: 2, order: { desc: name }) {
id
}
}

Only select and return the first two Virtual Machine Scale Sets that are found, but offset by one so keys two & three are returned:
query {
queryazureVirtualMachineScaleSet(first: 2, order: { desc: name }, offset: 1) {
id
}
}

Count the number of Virtual Machine Scale Sets across all scanned Azure subscriptions:
query {
aggregateazureVirtualMachineScaleSet {
count
}
}

Count the number of Virtual Machine Scale Sets in a single account. Note that you can apply all of the same filters that are listed above to aggregate queries:
query {
aggregateazureVirtualMachineScaleSet(filter: { subscriptionId: { eq: "12345" } }) {
count
}
}

Find all of the Virtual Machine Scale Sets that are in the eastus region across all your accounts:
query {
queryazureVirtualMachineScaleSet(filter: { region: { eq: "eastus" } }) {
id
}
}

Find all of the Virtual Machine Scale Sets that have a tag of Environment:Production for a single Azure Subscription:
query {
queryazureTag(
filter: { key: { eq: "Environment" }, value: { eq: "Production" } }
) {
virtualMachineScaleSets(filter: { subscriptionId: { eq: "12345" } }) {
id
}
}
}

With CloudGraph you can run multiple queries at the same time so you can combine the above two queries if you like:
query {
queryazureVirtualMachine(filter: { region: { eq: "eastus" } }) {
id
}
queryazureTag(
filter: { key: { eq: "Environment" }, value: { eq: "Production" } }
) {
virtualMachineScaleSets(filter: { subscriptionId: { eq: "12345" } }) {
id
}
}
}

Putting it all together; get all data for all Virtual Machine Scale Sets across all regions for all scanned Azure subscriptions in a single query. For the purposes of this example, we will only get direct children of the keys but if you want to it's easy to go from say, disk -> virtualMachine -> networkInterface ...etc:
query {
queryazureVirtualMachineScaleSet {
id
name
type
kind
subscriptionId
region
resourceGroupId
provisioningState
overprovision
doNotRunExtensionsOnOverprovisionedVMs
singlePlacementGroup
platformFaultDomainCount
uniqueId
virtualMachineProfile {
osProfile {
computerNamePrefix
adminUsername
allowExtensionOperations
requireGuestProvisionSignal
linuxConfiguration {
disablePasswordAuthentication
provisionVMAgent
ssh {
publicKeys {
path
keyData
}
}
}
windowsConfiguration {
provisionVMAgent
enableAutomaticUpdates
timeZone
ssh {
publicKeys {
path
keyData
}
}
}
secrets {
sourceVault {
id
}
vaultCertificates {
certificateUrl
certificateStore
}
}
}
storageProfile {
imageReference {
id
sku
offer
version
publisher
}
osDisk {
caching
createOption
osType
diskSizeGB
writeAcceleratorEnabled
managedDisk {
storageAccountType
}
}
}
networkProfile {
networkInterfaceConfigurations {
id
name
primary
enableAcceleratedNetworking
enableFpga
enableIPForwarding
deleteOption
networkSecurityGroup {
id
}
dnsSettings {
dnsServers
}
ipConfigurations {
id
name
privateIPAddressVersion
primary
subnetId
applicationGatewayBackendAddressPools {
id
}
applicationSecurityGroups {
id
}
loadBalancerBackendAddressPools {
id
}
loadBalancerInboundNatPools {
id
}
}
}
}
diagnosticsProfile {
bootDiagnostics {
enabled
}
}
extensionProfile {
extensions {
id
name
forceUpdateTag
type
type1
typeHandlerVersion
publisher
provisioningState
provisionAfterExtensions
autoUpgradeMinorVersion
enableAutomaticUpgrade
settings
}
}
}
scaleInPolicy {
rules
}
resourceGroup {
id
name
type
kind
subscriptionId
region
managedBy
disks {
id
}
appServicePlans {
id
}
appServiceWebApps {
id
}
disks {
id
}
dns {
id
}
eventGrids {
id
}
eventHubs {
id
}
firewalls {
id
}
functionApps {
id
}
keyVaults {
id
}
networkInterfaces {
id
}
publicIps {
id
}
securityGroups {
id
}
storageAccounts {
id
}
storageBlobs {
id
}
storageContainers {
id
}
virtualMachines {
id
}
virtualMachineScaleSets {
id
}
virtualNetworks {
id
}
privateDns {
id
}
tags {
id
key
value
}
}
tags {
id
key
value
}
}
}