import gql from 'graphql-tag';

export const autoRefillFragment = gql`
  fragment AutoRefillFragment on AutoRefill {
    id
    refillId
    triggerType
    type
    nextRefill
    paymentMethod {
      maskedCardNumber
      expiryMonth
      expiryYear
      nick
      type
    }
    info {
      title
      price
      shortTitle
      typeId
    }
  }
`;
