portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
29 lines (27 loc) • 381 B
text/typescript
import gql from 'graphql-tag';
export const usageItemFragment = gql`
fragment UsageItemFragment on UsageItem {
title
type
isPrimary
infinite
included {
usageType
amount
unit
text
}
usage {
usageType
amount
unit
text
}
remaining {
usageType
amount
unit
text
}
}
`;