feat: show usage data

This commit is contained in:
Ali BARIN
2023-03-06 20:26:43 +00:00
parent cc31b7c210
commit 930653c86d
4 changed files with 96 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
import { gql } from '@apollo/client';
export const GET_USAGE_DATA = gql`
query GetUsageData {
getUsageData {
allowedTaskCount
consumedTaskCount
remainingTaskCount
nextResetAt
}
}
`;