orderUpdateTrackingLink Mutation
Description
Updates only the tracking link for an order. This does not change shipping status/date and does not trigger shipping confirmation side effects.
mutation orderUpdateTrackingLink($orderRef: ID!, $trackingLink: String) {
orderUpdateTrackingLink(orderRef: $orderRef, trackingLink: $trackingLink) {
_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": "67018177607bcb436bc14ecc",
"trackingLink": "trackingLink"
}
Response
{
"orderUpdateTrackingLink": {
"_id": "4f5eba270c2a19da156613da",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1761101264444,
"modified": 1733025435496,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1758798541167,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1719130432339,
"refundDate": 1744334333783
},
"orderId": "example",
"notes": [
{
"date": 1770056061835,
"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": "38171b8ee5cfb737ff24dcf5",
"quantity": 1,
"unavailable": true,
"added": 1771179261226
}
],
"messages": [
{
"_id": "91009a689a2388932faffa2a",
"created": 1729341085595,
"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": "985b41fd7471793f19d835b4",
"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": 1746564100194,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "afe0fdd04cc9b993c7e3ca0b"
},
"updated": 1721409588245,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "e87d8d5b96f884c7dca6d918",
"id": "example",
"created": 1719646332622,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}
Arguments
| Name | Type | Description |
|---|---|---|
orderRef | ID! | Reference ID of the order to update. |
trackingLink | String | Tracking link or tracking number for the shipment. |