Filters and sorts for wallet transactions list
input WalletTransactionSearchInput {
currency: Currency
status: WalletTransactionStatus
reason: WalletTransactionReason
feeType: WalletTransactionFeeType
# Get only buy deals
isBuyer: Boolean
# Get only sell deals
isSeller: Boolean
# Wallet transaction reasons
reasons: [WalletTransactionReason!]
# Wallet method deposit
walletMethodsDeposit: [String!]
# Wallet method withdrawal
walletMethodsWithdrawal: [String!]
# Currency deposit
initialCurrencyDeposit: [Currency!]
# Currency withdrawal
initialCurrencyWithdrawal: [Currency!]
createdAt: DateTimeRangeInput
# Sort
sort: WalletTransactionSortInput
}