OBJECT

PaymentTransactionConnection

A paginated list of payment transactions, and its metadata.

link GraphQL Schema definition

1type PaymentTransactionConnection {
2
3# The list of payment transactions on this page.
4edges: [PaymentTransactionEdge!]
5
6# The payment date of the earliest PaymentTransaction among all possible pages.
7firstPurchasedAt: Time
8
9# The payment date of the latest PaymentTransaction among all possible pages.
10lastPurchasedAt: Time
11
12# Information about this page of payment transactions.
13pageInfo: PageInfo!
14
15# The total number of payment transactions in the overall collection.
16totalCount: Int
17
18}