Hi
When updating the order recipient address in the admin, I don’t get the address updates reflected in the assignedFulfillmentOrders.destination object.
Does anyone has faced the same problem, any solution ?
Steps to reproduce :
- Creates an order without recipient address (with products that belongs to a fulfillment service with fulfillmentOrderOptIn = true)
- Do fulfillment request
- Edit the order address
- Cancel the fulfillment request
- Do another fulfillment request
- Run the graphql query below and see that the destination didn’t update
{
shop {
assignedFulfillmentOrders(first: 10, assignmentStatus: FULFILLMENT_REQUESTED) {
edges {
node {
id
destination{
address1
address2
company
countryCode
lastName
firstName
city
zip
province
email
phone
}
}
}
}
}
}