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 a Network Interface
query {
queryazureNetworkInterface{
id
name
type
kind
subscriptionId
region
resourceGroupId
macAddress
privateIpAddress
internalDnsNameLabel
enableIpForwarding
virtualMachineId
enableAcceleratedNetworking
internalDomainNameSuffix
ipConfiguration{
gatewayLoadBalancer{
id
}
privateIPAddress
privateIPAllocationMethod
privateIPAddressVersion
subnetId
primary
provisioningState
id
name
etag
type
}
appliedDnsServers
dnsServers
publicIps{
id
}
resourceGroup{
id
}
securityGroups{
id
}
virtualMachines{
id
}
virtualNetworks{
id
}
}
}

Get data for a single Network Interface key that you know the ID for:
query {
getazureNetworkInterface(id: "12345") {
id
}
}

Get data for all of the Network Interfaces in a certain Azure subscription:
query {
queryazureNetworkInterface(filter: { subscriptionId: { eq: "12345" } }) {
id
}
}

Get data for all of the Network Interfaces that are NOT in a certain Azure subscription:
query {
queryazureNetworkInterface(filter: { not: { subscriptionId: { eq: "12345" } } }) {
id
}
}

Get data for all of the Network Interfaces that are connected to a virtualNetwork:
query {
queryazureNetworkInterface(filter: { has: virtualNetworks }) {
id
}
}

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

Only select and return the first two Network Interfaces that are found:
query {
queryazureNetworkInterface(first: 2, order: { desc: name }) {
id
}
}

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

Count the number of Network Interfaces across all scanned Azure subscriptions:
query {
aggregateazureNetworkInterface {
count
}
}

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

Find all of the Network Interfaces that are in the eastus region across all your accounts:
query {
queryazureNetworkInterface(filter: { region: { eq: "eastus" } }) {
id
}
}

Find all of the Network Interfacesetwork that have a tag of Environment:Production for a single Azure Subscription:
query {
queryazureTag(
filter: { key: { eq: "Environment" }, value: { eq: "Production" } }
) {
networkInterfaces(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 {
queryazureNetworkInterface(filter: { region: { eq: "eastus" } }) {
id
}
queryazureTag(
filter: { key: { eq: "Environment" }, value: { eq: "Production" } }
) {
networkInterfaces(filter: { subscriptionId: { eq: "12345" } }) {
id
}
}
}

Putting it all together; get all data for all NetworkInterfaces 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, firewall -> virtualNetwork -> networkInterface ...etc:
query {
queryazureNetworkInterface{
id
name
type
kind
subscriptionId
region
resourceGroupId
macAddress
privateIpAddress
internalDnsNameLabel
enableIpForwarding
virtualMachineId
enableAcceleratedNetworking
internalDomainNameSuffix
ipConfiguration{
gatewayLoadBalancer{
id
}
privateIPAddress
privateIPAllocationMethod
privateIPAddressVersion
subnetId
primary
provisioningState
id
name
etag
type
}
appliedDnsServers
dnsServers
tags{
id
key
value
}
resourceGroup{
id
name
type
kind
subscriptionId
region
managedBy
}
virtualNetworks{
id
name
type
kind
subscriptionId
region
addressSpacePrefixes
dnsServers
ddosProtectionPlans {
id
}
enableDdosProtection
enableVmProtection
flowTimeoutInMinutes
provisioningState
resourceGuid
firewalls{
id
}
networkInterfaces{
id
}
virtualMachines{
id
}
resourceGroup{
id
}
}
publicIps{
id
name
type
kind
subscriptionId
region
resourceGroupId
tier
allocationMethod
ipVersion
dnsSettings{
domainNameLabel
fqdn
reverseFqdn
}
ipTags{
ipTagType
tag
}
ipAddress
idleTimeoutInMinutes
resourceGuid
zones
firewalls{
id
}
networkInterface{
id
}
resourceGroup{
id
}
}
securityGroups {
id
name
type
kind
subscriptionId
region
resourceGroupId
resourceGuid
provisioningState
etag
securityRules{
description
protocol
sourcePortRange
destinationPortRange
sourceAddressPrefix
sourceAddressPrefixes
sourceApplicationSecurityGroups{
provisioningState
etag
}
destinationAddressPrefix
destinationAddressPrefixes
destinationApplicationSecurityGroups{
provisioningState
etag
}
sourcePortRanges
destinationPortRanges
access
priority
direction
provisioningState
name
etag
type
}
defaultSecurityRules{
description
protocol
sourcePortRange
destinationPortRange
sourceAddressPrefix
sourceAddressPrefixes
sourceApplicationSecurityGroups{
provisioningState
etag
}
destinationAddressPrefix
destinationAddressPrefixes
destinationApplicationSecurityGroups{
provisioningState
etag
}
sourcePortRanges
destinationPortRanges
access
priority
direction
provisioningState
name
etag
type
}
networkInterfaces{
id
}
resourceGroup{
id
}
}
virtualMachines{
id
name
type
kind
subscriptionId
region
resourceGroupId
managedBy
vmSize
osProfile{
computerName
windowsConfiguration{
provisionVMAgent
enableAutomaticUpdates
timeZone
}
linuxConfiguration{
disablePasswordAuthentication
provisionVMAgent
}
allowExtensionOperations
requireGuestProvisionSignal
}
osType
storageImageReference{
publisher
offer
sku
version
exactVersion
}
bootDiagnostics
licenseType
disks{
id
}
networkInterfaces{
id
}
virtualNetworks{
id
}
resourceGroup{
id
}
}
}
}