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
    }
  }
`;
