In the database viewer of the console I don't see how I can find a document by id. I can only filter on the custom attributes. Am I missing something? See available filter options in the image.
Appwrite Console might not have a direct option to search for a document by its ID
But you can programmatically retrieve a document by ID using the Appwrite API.
You can go through Appwrite API: https://appwrite.io/docs/apis/rest
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...