transactions
List of transactions of a project.
Implements the Relay Connection interface, used to paginate lists of elements. (Learn More) For a Project access token, this is all the transactions of the project (only available with project access token)
transactions(
  first: Int! = 50
  after: String
  orderBy: TransactionsOrderByInput
  filters: TransactionsFiltersInput
): TransactionConnection!
Arguments
transactions.first ● Int! non-null scalar
the number of elements to load (default value 50, maximum: 100)
transactions.after ● String scalar
the index (a unique reference in string form) from which you will load the following elements
transactions.orderBy ● TransactionsOrderByInput input
an order you can apply to your list of connections (default value UpdatedAt desc)
transactions.filters ● TransactionsFiltersInput input
a filtering table you can apply to your list of connections
Type
TransactionConnection object
Please see the Connection interface