ENUM
OrderState
Possible values for the state of an order
link GraphQL Schema definition
1 enum OrderState { 2 3 # The initial state of the order and changes when the order is closed 4 5 6 # The order has been processed and closed successfully. The user has also received 7 # the entitlement. 8 9 10 # The order was completed unsuccessfully as an expected failure. 11 # Ex: The customer failed ordering eligibility checks. 12 13 }