ENUM

OrderStatusEnum

The current status of an order.

link GraphQL Schema definition

  • enum OrderStatusEnum {
  • # An order that has been created but not paid for
  • NEW
  • # An order that has progressed to the checkout page, but not been paid for
  • CHECKOUT
  • # An order that has been manually marked as 'abandoned' by an Admin
  • ABANDONED
  • # An order that has been successfully completed.
  • COMPLETE
  • # An order that is complete, but with a failed payment.
  • PAYMENT_FAILED
  • # An order that is complete, but whose payment hasn't been finalised
  • #
  • # (e.g. a direct debit payment waiting on confirmation from the bank).
  • PAYMENT_IN_PROGRESS
  • # An order that is pending fraud review
  • PENDING_REVIEW
  • }