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 Route 53 Record:
query {
queryawsRoute53Record {
id
accountId
zoneId
alias {
zoneId
name
evaluateTargetHealth
}
type
ttl
records
route53HostedZone {
arn
}
elb {
arn
}
alb {
arn
}
restApi {
arn
}
}
}
Get data for a single Route 53 Record that you know the id for:
query {
getawsRoute53Record(id: "12345") {
id
}
}
Get data for all of the Route 53 Records in a certain AWS account:
query {
queryawsRoute53Record(filter: { accountId: { eq: "12345" } }) {
id
}
}
Get data for all of the Route 53 Records that are NOT in a certain AWS account:
query {
queryawsRoute53Record(filter: { not: { accountId: { eq: "12345" } } }) {
id
}
}
Get data for all of the Route 53 Records that have a Hosted Zone:
query {
queryawsRoute53Record(filter: { has: route53HostedZone }) {
id
}
}
Use multiple filter selectors, (i.e. has, and, not, or) to get data for all of the Route 53 Records that have a restApi AND records OR that do not have an alb. Note that you can use has, and, not, or completely independently of each other:
query {
queryawsRoute53Record(
filter: {
has: restApi
and: { has: records }
or: { not: { has: alb } }
}
) {
id
}
}
You may also filter using a regex when filtering on a string field like, type if you want to look for a value that matches say, cname (case insensitive):
query {
queryawsRoute53Record(
filter: { type: { regexp: "/.*cname*./i" } }
) {
arn
}
}
You can order the results you get back either asc or desc depending on your preference:
query {
queryawsRoute53Record(order: { desc: type }) {
zoneId
}
}
Only select and return the first two Route 53 Records that are found:
query {
queryawsRoute53Record(first: 2, order: { desc: type }) {
id
}
}
Only select and return the first two Route 53 Records that are found, but offset by one so Route 53 Records two & three are returned:
query {
queryawsRoute53Record(first: 2, order: { desc: type }, offset: 1) {
id
}
}
Count the number of Route 53 Records across all scanned AWS accounts:
query {
aggregateawsRoute53Record {
count
}
}
Count the number of Route 53 Records in a single account. Note that you can apply all of the same filters that are listed above to aggregate queries:
query {
aggregateawsRoute53Record(filter: { accountId: { eq: "12345" } }) {
count
}
}
Get All the Route 53 Records along with their albs and Hosted Zones for AWS Account 12345:
query {
queryawsRoute53Record(filter: { accountId: { eq: "12345" } }) {
id
alb {
arn
}
route53HostedZone {
arn
}
}
}
With CloudGraph you can run multiple queries at the same time so you can combine the above two queries if you like:
query {
aggregateawsRoute53Record(filter: { accountId: { eq: "12345" } }) {
count
}
queryawsRoute53Record(filter: { accountId: { eq: "12345" } }) {
id
alb {
arn
}
route53HostedZone {
arn
}
}
}
Putting it all together; get all data for all Route 53 Records across all regions for all scanned AWS accounts in a single query. For the purposes of this example we will only get direct children of the API Gateway REST APIs but if you want to it's easy to go from say, Route 53 Record -> ALB -> VPC ...etc:
query {
queryawsRoute53Record {
id
accountId
zoneId
type
ttl
records
alias {
zoneId
name
evaluateTargetHealth
}
route53HostedZone {
id
accountId
arn
name
comment
delegationSetId
nameServers
route53Record {
id
}
vpc {
arn
}
}
elb {
id
accountId
arn
dnsName
hostedZone
createdAt
type
status
scheme
vpcId
sourceSecurityGroup {
groupName
}
securityGroupsIds
subnets
accessLogs
crossZoneLoadBalancing
idleTimeout
instances {
id
}
healthCheck {
target
}
listeners {
id
}
tags {
id
key
value
}
cloudfrontDistribution {
arn
}
securityGroups {
arn
}
vpc {
arn
}
route53Record {
id
}
subnet {
arn
}
}
alb {
id
accountId
arn
dnsName
scheme
type
subnets
hostedZone
defaultVpc
ipAddressType
idleTimeout
deletionProtection
http2
accessLogsEnabled
dropInvalidHeaderFields
createdAt
status
tags {
id
key
value
}
securityGroups {
arn
}
ec2Instance {
arn
}
vpc {
arn
}
route53Record {
id
}
listeners {
arn
}
subnet {
arn
}
}
restApi {
id
accountId
arn
description
policy {
id
}
endpointConfiguration {
id
types
vpcEndpointIds
}
apiKeySource
createdDate
minimumCompressionSize
binaryMediaTypes
tags {
id
key
value
}
stages {
arn
}
resources {
arn
}
route53Record {
id
}
}
}
}