portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
28 lines (26 loc) • 470 B
text/typescript
import gql from 'graphql-tag';
export const USAGE_CHARGES = gql`
query usageCharges($input: UsageChargeInput!) {
usageCharges(input: $input) {
usageCharges {
orderId
order {
id
customerId
status
created
totalDue
}
subscriptionId
msisdn
status
usageRecords {
id
time
amount
msisdn
}
}
}
}
`;