Any helper functionality to create a Database/Collection/Attributes using a schema?
- 1
- Databases
I couldn't find any - but wanted to check if there is any helper functionality to read schema configuration (say some simeple JSON or any other format) and create DB/Collections/Attributes etc.?
It is not hard to write one - but it would be helpful if there is a tested/trusted one that new comers can use without having to worry about making mistakes.
Sure, using the appwrite cli you can get a json file that mirrors the setup of your project.
https://appwrite.io/docs/tooling/command-line/deployment#appwrite-json
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...