import gql from 'graphql-tag';

export const availableRateplanFragment = gql`
  fragment AvailableRateplanFragment on Rateplan {
    id,
    title,
    shortTitle,
    typeId,
    price,
    description,
    isPrepaid,
    receiptText,
    isVip,
    includedDataAmountInMb,
  }
`;
