fulfillmentOrderMove mutation

Moves a fulfillment order to a new location.

Required access

write_merchant_managed_fulfillment_orders access scope.

On this page

Interactive example

This is an example mutation query. Use the embedded interactive tool below to edit the query.

Hint: use Ctrl + Space for autocompleting fields.

mutation fulfillmentOrderMove($id: ID!, $newLocationId: ID!) { fulfillmentOrderMove(id: $id, newLocationId: $newLocationId) {
  1. <font style="color:#1F61A0;">movedFulfillmentOrder</font> <font style="color:#555555;">{</font>
  2. <font style="color:#1F61A0;">id</font>
  3. <font style="color:#555555;">}</font>
  4. <font style="color:#1F61A0;">originalFulfillmentOrder</font> <font style="color:#555555;">{</font>
  5. <font style="color:#1F61A0;">id</font>
  6. <font style="color:#555555;">}</font>
  7. <font style="color:#1F61A0;">remainingFulfillmentOrder</font> <font style="color:#555555;">{</font>
  8. <font style="color:#1F61A0;">id</font>
  9. <font style="color:#555555;">}</font>
  10. <font style="color:#1F61A0;">userErrors</font> <font style="color:#555555;">{</font>
  11. <font style="color:#1F61A0;">field</font>
  12. <font style="color:#1F61A0;">message</font>
  13. <font style="color:#555555;">}</font>
} } { “id”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=”, “newLocationId”: “Z2lkOi8vU2hvcGlmeS9FeGFtcGxlLzE=” }

Arguments

Argument Description
id
(
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

) REQUIRED
The ID of the fulfillment order to be moved.
newLocationId
(
[ID!](https://shopify.dev/docs/admin-api/graphql/reference/scalar#id-2021-01)

) REQUIRED
The ID of the location where the fulfillment order will be moved.

Return fields

  • movedFulfillmentOrder ([FulfillmentOrder](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmentorder))
    A new fulfillment order representing all items that were able to be moved to the new location.
  • originalFulfillmentOrder ([FulfillmentOrder](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmentorder))
    The fulfillment order that was moved. On success, this fulfillment order will be closed.
  • remainingFulfillmentOrder ([FulfillmentOrder](https://shopify.dev/docs/admin-api/graphql/reference/shipping-and-fulfillment/fulfillmentorder))
    A new fulfillment order representing any items still assigned to the original location. This is created if all line items on the original fulfillment order could not be moved to the new location due to not being stocked there.
  • userErrors ([[UserError!]!](https://shopify.dev/docs/admin-api/graphql/reference/usererror))
    List of errors that occurred executing the mutation.