32 lines
892 B
GraphQL
32 lines
892 B
GraphQL
query TrafficUsageByResellerClientsList(
|
|
$clientNodeId: ID!,
|
|
$input: ClientTrafficUsageByClientsListInput,
|
|
) {
|
|
client: node(id: $clientNodeId) {
|
|
... on Client {
|
|
id
|
|
statistics {
|
|
trafficUsageByClients(input: $input) {
|
|
nodes {
|
|
clientId
|
|
clientName
|
|
totalUsageFormatted
|
|
limitFormatted
|
|
limitRemainingFormatted
|
|
limitUsagePercent
|
|
}
|
|
pageInfo {
|
|
current
|
|
total
|
|
pageCount
|
|
}
|
|
sortInfo {
|
|
sortColumn
|
|
sortDirection
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|