Skip to main content

OrderWithdrawalConnection

No description

type OrderWithdrawalConnection {
edges: [OrderWithdrawalEdge!]!
pageInfo: PageInfo
totalCount: Int
}

Fields

edges ● [OrderWithdrawalEdge!]!

The edges of the connection

pageInfo ● PageInfo

The pagination data of the connection

totalCount ● Int

The total number of withdrawals matching the filter

Example

{
"edges": [
{
"node": {
"id": 3312,
"orderId": 10341,
"status": "NEW",
"comment": "Changed my mind about the purchase",
"createdAt": "2024-05-03T11:52:33Z",
"updatedAt": "2024-05-03T11:52:33Z",
"rows": [
{
"orderRowId": 23422
}
]
}
}
],
"pageInfo": {},
"totalCount": 20
}