orderCancel Mutation
Description
Cancels an order, optionally relisting stock, recording a note, a refund status and a Discogs cancellation reason for marketplace orders.
mutation orderCancel(
$orderRef: ID!
$note: String
$relist: Boolean
$discogsReason: String
$refundStatus: String
) {
orderCancel(
orderRef: $orderRef
note: $note
relist: $relist
discogsReason: $discogsReason
refundStatus: $refundStatus
) {
_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": "2ea27dbc6057a056c4e5ebc0",
"note": "note",
"relist": true,
"discogsReason": "discogsReason",
"refundStatus": "refundStatus"
}
Response
{
"orderCancel": {
"_id": "1a3a7e79683707ff1f9a0dc9",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1753753712796,
"modified": 1757658778606,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1771550088199,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1730165175562,
"refundDate": 1722221240173
},
"orderId": "example",
"notes": [
{
"date": 1727713287305,
"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": "30ba3314acf01971771b72d4",
"quantity": 1,
"unavailable": true,
"added": 1730233471114
}
],
"messages": [
{
"_id": "54a6fb2f47ef9ad5e3f1e301",
"created": 1758642482764,
"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": "a6cb212c9b8f1673be52c38a",
"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": 1730794629008,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "950582fb99f7782bc3b2c5b8"
},
"updated": 1731719061792,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "5cc702bcf7973837471d9bec",
"id": "example",
"created": 1779363148931,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}
Arguments
| Name | Type | Description |
|---|---|---|
orderRef | ID! | Reference ID of the order to cancel. |
note | String | Optional cancellation note added to the order history. |
relist | Boolean | Whether to restore (relist) the stock quantities of the order's items. |
discogsReason | String | Cancellation reason to report to Discogs for marketplace orders. |
refundStatus | String | Refund status to set on the order's billing (e.g. "Refunded", "Partially Refunded"). |