walletTransactionsConnection
Lists the organization's wallet transactions (credits and debits), ordered newest first. Use it to audit how the balance changed over time. Requires the 'view_billing' org permission. Relay cursor connection; prefer this over the offset-based walletTransactions.
walletTransactionsConnection(
orgId: BigInt!
first: Int
after: String
): WalletTransactionsConnection!
Arguments
walletTransactionsConnection.orgId ● BigInt! non-null scalar
Organization id (BigInt as a decimal string) whose transactions to list.
walletTransactionsConnection.first ● Int scalar
Return the first N edges after after. Default 50; clamped to 1..200.
walletTransactionsConnection.after ● String scalar
Opaque cursor: return edges after this one. Pass a previous page's pageInfo.endCursor. Omit for the first page.
Type
WalletTransactionsConnection object
A Relay cursor connection over WalletTransaction records. Page with first/after; pass pageInfo.endCursor back as after for the next page.