INPUT_OBJECT

PaymentTransactionConnectionCriteriaInput

Filter and sorting options for querying all transactions for a Twitch purchaser.

link GraphQL Schema definition

1input PaymentTransactionConnectionCriteriaInput {
4
2# Only show transactions purchased after this date.
3purchasedAfter: Time
7
5# Only show transactions purchased before this date.
6purchasedBefore: Time
10
8# Sort transactions by... defaults to date desc.
9sortBy: PaymentTransactionSort
14
11# Only show transactions that purchased products of a certain type, defaults to
12# ALL.
13type: PaymentTransactionTypeFilter
17
15# Purchaser ID.
16userID: ID!
18}