magento / magento2-pwa

Other
15 stars 13 forks source link

Adding Magento_SalesGraphQlAux to provide order state #4

Open fooman opened 2 years ago

fooman commented 2 years ago

To be able to address https://github.com/magento/pwa-studio/issues/3716 it is helpful to have access to the order state. This pull request adds this for the following query:

query {
    customer {
        orders {
            items {
                order_number
                state
            }
        }
    }
}