How to filter transactions by date or last request?

Hi, I have api request to get all transactions, but I want to filter them by date of creation or by some different filter for ex. last requested time… can someone suggest something? :slightly_smiling_face:

2024-04/graphql.json

{
“query”: “{ shopifyPaymentsAccount { id payoutStatementDescriptor balanceTransactions(first: 100) { edges { node { id net { amount currencyCode } transactionDate } } } } }”
}