I'm trying to wrap my head around where AppWrite fits and what it can do for me. I have experimented a little with Directus, so that's my point of reference. Upon skimming through the documentation, it appears like
- AppWrite is much more flexible in that it is intended to integrate with whatever development frameworks you're already using (in contrast to Directus which only integrates with various frontend frameworks)
- AppWrite is however much less flexible in terms of storage, in that Directus lets you choose from several databases and (as far as I can tell so far) AppWrite does not.
- AppWrite seems aimed at doing the boring and repetetive parts of development, while Directus seems aimed at being a sort of CMS + complete LowCode development tool all in one.
Am I at all close to being accurate with those statements? (At least as it relates to Appwrite?) Please tell me what I'm mising and what I got wrong.
Recommended threads
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...