We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8440ff4 commit 1eb28a2Copy full SHA for 1eb28a2
src/main/java/app/banking/repository/TransactionGroupRepo.java
@@ -9,6 +9,6 @@
9
@Repository
10
public class TransactionGroupRepo extends CommonCrud<TransactionGroup, Long> {
11
public List<TransactionGroup> findAllByAccountId(Long id) {
12
- return listFromQueries(Queries.select().where().equals("@id", id).end());
+ return listFromQueries(Queries.select().where().equals("id_account", id).end());
13
}
14
0 commit comments