Flutter – Query using multiple links in Objectbox
I have these 2 entities in objectbox: @Entity() class Account { @Id() int id = 0; } @Entity() class Transaction { @Id() int id = 0; final fromAccount = ToOne<Account>(); final toAccount = ToOne<Account>(); } I need to query all…