Skip to main content

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": "711227cf234eb2f2dd021ff7",
"note": "note",
"relist": true,
"discogsReason": "discogsReason",
"refundStatus": "refundStatus"
}

Response

{
"orderCancel": {
"_id": "45ac8de6032237ea11244091",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1724837845341,
"modified": 1727972664672,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1743948777915,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1731405240095,
"refundDate": 1776556664099
},
"orderId": "example",
"notes": [
{
"date": 1755196118063,
"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": "f3c9ad1d7cc900abe8f684fa",
"quantity": 1,
"unavailable": true,
"added": 1763471767874
}
],
"messages": [
{
"_id": "9352919e646b1cc8dc9b4bd2",
"created": 1738087652540,
"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": "3a0783fa1a3354e074378303",
"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": 1772456553148,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "9aa917105f4f24907e60566b"
},
"updated": 1736468417507,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "2ad1db9698ab94b21a9d97d6",
"id": "example",
"created": 1723220776517,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}

Arguments

NameTypeDescription
orderRefID!Reference ID of the order to cancel.
noteStringOptional cancellation note added to the order history.
relistBooleanWhether to restore (relist) the stock quantities of the order's items.
discogsReasonStringCancellation reason to report to Discogs for marketplace orders.
refundStatusStringRefund status to set on the order's billing (e.g. "Refunded", "Partially Refunded").

Returns

Order!