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?
2024-04/graphql.json
{
“query”: “{ shopifyPaymentsAccount { id payoutStatementDescriptor balanceTransactions(first: 100) { edges { node { id net { amount currencyCode } transactionDate } } } } }”
}