List of all supported order status

Hi

Can you please provide me all the available order status or any query which I can check.

I was looking for statuses like partial_fulfilled or partial_refund. but don’t know whether Shiphero supports these or not :slight_smile:

Please reply :slight_smile:
Thanks in Advance,

Hi @khungersumit!
You could filter by status, something like this:

query {
  orders(fulfillment_status: "partial_fulfilled") {
    request_id
    complexity
    data(first: 1) {
      edges {
        node {
          id
          legacy_id
          order_number
          partner_order_id
          shop_name
          fulfillment_status
          order_date
          total_tax
          subtotal
          total_discounts
          total_price
          auto_print_return_label
          custom_invoice_url
          account_id
          email
          profile
          packing_note
          required_ship_date
          flagged
          saturday_delivery
          ignore_address_validation_errors
          priority_flag
          allocation_priority
        }
      }
    }
  }
} 

but partial_fulfilled needs to be a custom status defined at https://app.shiphero.com/dashboard/order-statuses

On the other hand, we are currently working on adding a filter for all “Unfulfilled” orders, something like we have on https://app.shiphero.com/dashboard/orders/manage

Let me know if that doesn’t work for you.
Thanks in advance!
Tom