import gql from 'graphql-tag';

export const CANCELLING_REASONS = gql`
  query ReasonsForCancel($order: [ReasonsForCancellingContractOrder_cfContent]) {
    reasonsForCancellingContractCollection(order: $order) {
      items {
        id
        order
        reason
        sys {
          id
        }
        optionsCollection {
          items {
            title
          }
        }
      }
    }
  }
`;
