
I have tons of attributes to add. is there a way to programmatically do so instead of manually? It's a web app using nodejs/typescript

Sure, you can create databases, collections and attributes entirely programatically.
https://appwrite.io/docs/references/cloud/server-nodejs/databases#create https://appwrite.io/docs/references/cloud/server-nodejs/databases#createCollection https://appwrite.io/docs/references/cloud/server-nodejs/databases#createBooleanAttribute

Are you creating attributes at runtime? If so, why?

no I'm not

in addition to Kenny's suggestion, I would also recommend using the Appwrite CLI to maintain your schema with the appwrite.json
Recommended threads
- transaction like functionality
As I understand it appwrite doesn't support transactions. I'm attempting to make a document in three separate collections at the same time when a user register...
- Error while login the member which is in...
Facing some error. Error logging in: Exception: No team access. Please contact your administrator. But the email/name/ new client I have created is in my tea...
- Document already existed
Hi, I am trying to add a document via cloud function using nodejs22. Everytime I do `await db.createDocument( dbid, collectionid, customDocId, data);` it will g...
