Hey all, I am new here.
I am getting an internal server error when creating a new document using the React client SDK. Below is the code that is throwing this error.
The wierd part is that this document is created successfully on the database and I can browse it from the console.
const response = await database.createDocument(
process.env.REACT_APP_APPWRITE_DATABASE_ID,
process.env.REACT_APP_APPWRITE_COMPANIES_COLLECTION_ID,
ID.unique(),
action.payload
);
Env:
Web client sdk
Self-hosted Appium 1.4.9
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...