Skip to main content

orderMerge Mutation

Description

Merges a source order into a target order. The source order's items are added to the target order, and the source order is marked as merged. Only orders with status "New Order", without vouchers, and without credit note payments can be merged.

mutation orderMerge($orderRef: ID!, $orderSourceRef: ID!) {
orderMerge(orderRef: $orderRef, orderSourceRef: $orderSourceRef) {
_id
id
incId
origin
created
modified
shipping {
status
fulfilled
date
method
freeShippingThreshold
tracking
shopCollection
weight
packingSlip
}
billing {
status
fulfilled
paymentDate
refundDate
}
orderId
notes {
date
content
}
instructions
totals {
subtotal
subtotalBeforeTaxes
tax
grand
leftToPay
itemQuantity
discount
shipping
creditNote
balance
}
items {
_id
quantity
unavailable
added
}
messages {
_id
created
subject
message
fromBuyer
flagged
content
read
orderId
orderIncId
uri
via
}
buyer {
_id
firstName
lastName
email
name
path
telephone
organisation
taxNumber
}
logs {
action
description
date
ip
}
seller {
type
name
email
ref
}
updated
status
discogsStatus
buyerWasContacted
unreadMessagesCount
mergeableOrders {
_id
id
created
total
description
}
path
}
}

Variables

{
"orderRef": "e80e9f7cafdb1f887f61fd7e",
"orderSourceRef": "c8a9582b5374b7bbc14f6fe5"
}

Response

{
"orderMerge": {
"_id": "953383dc360db31d3f6ac867",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1758771636758,
"modified": 1720501654020,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1736817571608,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1727947511420,
"refundDate": 1709303667907
},
"orderId": "example",
"notes": [
{
"date": 1761997125534,
"content": "example"
}
],
"instructions": "example",
"totals": {
"subtotal": 1.23,
"subtotalBeforeTaxes": 1.23,
"tax": 1.23,
"grand": 1.23,
"leftToPay": 1.23,
"itemQuantity": 1.23,
"discount": 0.1,
"shipping": 1.23,
"creditNote": 1.23,
"balance": 1.23
},
"items": [
{
"_id": "59ad0e679fa9b27216a8f1e2",
"quantity": 1,
"unavailable": true,
"added": 1703317629240
}
],
"messages": [
{
"_id": "433f21f11fbcddb5ddfaf3d4",
"created": 1755580606259,
"subject": "example",
"message": "example",
"fromBuyer": true,
"flagged": true,
"content": "example",
"read": true,
"orderId": "example",
"orderIncId": 42,
"uri": "https://www.my-common-ground-store.com/release/1763553751/release-artist-release-name",
"via": "example"
}
],
"buyer": {
"_id": "b964a7b76a38627f584c5abe",
"firstName": "example",
"lastName": "example",
"email": "email@example.com",
"name": "example",
"path": "/release/1763553751/release-artist-release-name",
"telephone": "example",
"organisation": "example",
"taxNumber": "example"
},
"logs": [
{
"action": "example",
"description": "example",
"date": 1752713371672,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "2f796d5199e78e4e9fdd0027"
},
"updated": 1722205642262,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "a10e315047339bde7e48580d",
"id": "example",
"created": 1734446501792,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}

Arguments

NameTypeDescription
orderRefID!Reference ID of the target order to merge into.
orderSourceRefID!Reference ID of the source order to merge from. The source order will be marked as merged after the operation.

Returns

Order!