orderAddNote Mutation
Description
Adds a note to an order. The note is added to the order's log and visible in the order history.
mutation orderAddNote($orderRef: ID!, $orderAddNoteInput: String) {
orderAddNote(orderRef: $orderRef, orderAddNoteInput: $orderAddNoteInput) {
_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": "83d7120957c43943c9e15cbe",
"orderAddNoteInput": "orderAddNoteInput"
}
Response
{
"orderAddNote": {
"_id": "5756026f21dc7c0df308c014",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1734073866691,
"modified": 1725400155752,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1758268892121,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1720960544479,
"refundDate": 1724865777751
},
"orderId": "example",
"notes": [
{
"date": 1734926497883,
"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": "968081d4ca7b6c5e5a3aa5ec",
"quantity": 1,
"unavailable": true,
"added": 1730403632421
}
],
"messages": [
{
"_id": "bb9fedebce0b3d75515e5be8",
"created": 1757165911249,
"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": "ba8457399aadcd20ab759ae7",
"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": 1718012969375,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "cd9e45c9fd6287938b516f2b"
},
"updated": 1752483517656,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "0308eb63953fd949630bb145",
"id": "example",
"created": 1769259406695,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}
Arguments
| Name | Type | Description |
|---|---|---|
orderRef | ID! | Reference ID of the order to add a note to. |
orderAddNoteInput | String | Note text to add to the order. |