GiftCardConnection
Representation of a paginated connection of gitcards
type GiftCardConnection {
edges: [GiftCardEdge!]!
pageInfo: PageInfo
totalCount: Int
}
Fields
edges ● [GiftCardEdge!]!
The edges of the connection
pageInfo ● PageInfo
The pagination info of the connection
totalCount ● Int
Total amount of edges
Example
{
"edges": [
{
"node": {
"currency": {
"code": "USD",
"rate": 11.355,
"prefix": "$"
},
"paidAt": "2024-05-03T11:52:33Z"
}
}
],
"pageInfo": {}
}