import gql from 'graphql-tag';

export const invoiceFragment = gql`
  fragment InvoiceFragment on Invoice {
    id
    title
    date
    amount
    isOpen
    pdfLink
    documentLink
    invoiceNumber
  }
`;
