refactor: remove useBillingAndUsageData hook

This commit is contained in:
Rıdvan Akca
2024-04-08 14:49:37 +02:00
parent 88c50e014d
commit d2a7889fc9
9 changed files with 20 additions and 257 deletions
@@ -1,37 +0,0 @@
import { gql } from '@apollo/client';
export const GET_BILLING_AND_USAGE = gql`
query GetBillingAndUsage {
getBillingAndUsage {
subscription {
status
monthlyQuota {
title
action {
type
text
src
}
}
nextBillDate {
title
action {
type
text
src
}
}
nextBillAmount {
title
action {
type
text
src
}
}
}
usage {
task
}
}
}
`;