14 lines
298 B
GraphQL
14 lines
298 B
GraphQL
query TeamsStatistics($teamId: ID, $aggregationEpochs: Int) {
|
|
teamsStatistics(teamId: $teamId, aggregationEpochs: $aggregationEpochs) {
|
|
edges {
|
|
node {
|
|
teamId
|
|
totalQuantumVolume
|
|
totalQuantumRewards
|
|
totalGamesPlayed
|
|
gamesPlayed
|
|
}
|
|
}
|
|
}
|
|
}
|