We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug According to openapi schema https://github.com/formancehq/ledger/blob/main/openapi/v1.yaml#L516
We should use startTime but in code https://github.com/formancehq/ledger/blob/main/internal/api/v1/controllers_transactions.go#L59 is not supported.
startTime
Another thing is
if startTime := r.URL.Query().Get("start_time"); startTime != "" { clauses = append(clauses, query.Gte("date", startTime)) }
Column date not exists
date
To Reproduce Make request to transaction with time frames
Expected behavior Transactions are filtered
Environment (please complete the following information): Main master of ledger
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
According to openapi schema https://github.com/formancehq/ledger/blob/main/openapi/v1.yaml#L516
We should use
startTime
but in code https://github.com/formancehq/ledger/blob/main/internal/api/v1/controllers_transactions.go#L59 is not supported.Another thing is
Column
date
not existsTo Reproduce
Make request to transaction with time frames
Expected behavior
Transactions are filtered
Environment (please complete the following information):
Main master of ledger
The text was updated successfully, but these errors were encountered: