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 } } } } } }