import gql from 'graphql-tag';

export const errorFragment = gql`
 fragment ErrorFragment on Error {
    code
    message
  }
`;
