15 Aug, 2026, 13:55
setup
TypeScript
appwrite 1.9.5 self-hosted
bun 1.3
node-appwrite 27.1.0
issue
Im running a function on a self hosted 1.9.5 with "node-appwrite": "^27.1.0", doing createRow then printing to log the createRow result the result is showing listRows and no entry on the database is created :/
what could be the possible issue?
TL;DR
User is running a function on self-hosted 1.9.5 Appwrite with node-appwrite "^27.1.0" and using createRow. However, the result is showing listRows and no database entry is created. Possible issue might be due to incorrect usage of createRow method. 15 Aug, 2026, 13:56
TypeScript
tablesDB.createRow({
databaseId: "db_ID",
tableId: "table_ID",
rowId: ID.unique(),
data: {},
});
Recommended threads
- Local function execution results in HTTP...
Hi all, I'm trying to develop a new function on my Ubuntu 24.04 machine running the latest version of docker. I've read through the documentation to install and...
- Accidental deletion of two production da...
Hello Appwrite Support, We accidentally deleted two production databases and urgently need your help restoring them. What happened: On 2026-08-14 at approxima...
- Functions Failing on CRON Schedule
I set up an hourly CRON Schedule for my function and It only executes successfully every after 3 hours sometimes 10 hours. When I execute it manually it works e...