32 lines
847 B
GraphQL
32 lines
847 B
GraphQL
query TrafficUsageByViewerClientsList(
|
|
$input: ClientTrafficUsageByClientsListInput
|
|
) {
|
|
viewer {
|
|
login
|
|
client {
|
|
id
|
|
statistics {
|
|
trafficUsageByClients(input: $input) {
|
|
nodes {
|
|
clientId
|
|
clientName
|
|
totalUsageFormatted
|
|
limitFormatted
|
|
limitRemainingFormatted
|
|
limitUsagePercent
|
|
}
|
|
pageInfo {
|
|
current
|
|
total
|
|
pageCount
|
|
}
|
|
sortInfo {
|
|
sortColumn
|
|
sortDirection
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|