18 lines
361 B
GraphQL
18 lines
361 B
GraphQL
query ClientTrafficUsageIntervals(
|
|
$clientId: ID!
|
|
) {
|
|
client: node(id: $clientId) {
|
|
... on Client {
|
|
id
|
|
statistics {
|
|
trafficUsageIntervals {
|
|
key
|
|
month
|
|
year
|
|
formattedTotalUsage
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|