Hello, I have 2 collections (users and exercises) and I would like to have a record collection with 2 relationships (users and exercises) and a value. I've therefore chosen the many to many relationship (since users can have several records and the same goes for exercises), but the problem is that I have to use arrays. How can I avoid using them? Ty
It needs to be an array?
One user can have many exercises that would be an array of exercises on the user object
Recommended threads
- listRows result parsing issue
I'm using Appwrite Dart SDK "24.2.0". When I perform a listRows call in dart, I have this reponse in JSON: in " Future<models.RowList> listRows()" { "total" :...
- Index for combination of columns
How am i suppposed to apply index so that combination of two columns alwasy remain unique in appwrite table though console
- Broken Flutter SDK >=24.1.0
Row.fromMap now does: ``` data: Map<String, dynamic>.from(map["data"] ?? {}) ``` But Appwrite Cloud TablesDB row responses return custom row columns flattene...