orderEditBuyer Mutation
Description
Updates the buyer associated with an order. Changes the buyer reference for the order.
mutation orderEditBuyer($orderRef: ID!, $buyerRef: ID) {
orderEditBuyer(orderRef: $orderRef, buyerRef: $buyerRef) {
_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": "5e4e6d98517371a886535230",
"buyerRef": "70110411671e679ab02d8457"
}
Response
{
"orderEditBuyer": {
"_id": "cde5d85a8c273088d44ad4b6",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1709563020472,
"modified": 1750746328895,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1748113863057,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1713137469424,
"refundDate": 1765497488542
},
"orderId": "example",
"notes": [
{
"date": 1743571264224,
"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": "868bb0b582e4aee623184867",
"quantity": 1,
"unavailable": true,
"added": 1715225580284
}
],
"messages": [
{
"_id": "ea889fe2e5dac63cfdf66d48",
"created": 1713488495193,
"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": "d688567ed00c4874ad52bdc8",
"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": 1716670261556,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "9caa8997a81eeea607fa0f5e"
},
"updated": 1724885000631,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "8e3a7f7757787d1b9faa1a7a",
"id": "example",
"created": 1731712686666,
"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. |
buyerRef | ID | Reference ID of the new buyer to associate with the order. If not provided, removes the buyer association. |