Skip to main content

orderGeneratePdf Mutation

Description

Generates a PDF invoice for an order and updates the order with the generated PDF URL. The PDF is stored and can be accessed via the order's invoice PDF field.

mutation orderGeneratePdf($orderRef: ID!) {
orderGeneratePdf(orderRef: $orderRef) {
_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": "e77cbdd2a5696725a3065fb9"
}

Response

{
"orderGeneratePdf": {
"_id": "0143113227b4613ad6e352fe",
"id": "example",
"incId": 42,
"origin": "example",
"created": 1707197894899,
"modified": 1726268481039,
"shipping": {
"status": "Pending",
"fulfilled": true,
"date": 1744494495812,
"method": "example",
"freeShippingThreshold": 1.23,
"tracking": "example",
"shopCollection": true,
"weight": 1.23,
"packingSlip": "example"
},
"billing": {
"status": "example",
"fulfilled": true,
"paymentDate": 1721929745300,
"refundDate": 1733822902169
},
"orderId": "example",
"notes": [
{
"date": 1726466974119,
"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": "7a1994849500cb879c5b6172",
"quantity": 1,
"unavailable": true,
"added": 1723064277202
}
],
"messages": [
{
"_id": "02edb0878b600a9557fb3e7c",
"created": 1757147300380,
"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": "7a52d4b8c4dc0690df0ad15f",
"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": 1752490581296,
"ip": "example"
}
],
"seller": {
"type": "example",
"name": "example",
"email": "email@example.com",
"ref": "51f4297e6ec3d1d140f38910"
},
"updated": 1722640559375,
"status": "example",
"discogsStatus": "example",
"buyerWasContacted": true,
"unreadMessagesCount": 42,
"mergeableOrders": [
{
"_id": "e4db687c9f3f8623cd98fc06",
"id": "example",
"created": 1764526078437,
"total": 29.99,
"description": "example"
}
],
"path": "/release/1763553751/release-artist-release-name"
}
}

Arguments

NameTypeDescription
orderRefID!Reference ID of the order to generate a PDF invoice for.

Returns

Order!