vimaltomar231Original post
Web Developer
I am getting this error while creating document in appwrite databse
const res= await databases.createDocument(
'6694241300092f029d7d',
'6694241d003574e82d23',
ID.unique(),
{body:"tasksss"}
);
Summary
Issue: Error message "Invalid document structure: Unknown attribute: "body"
Solution: Create an attribute called 'body' for the mentioned collection in the appwrite database as it seems the 'body' attribute is missing causing the error during document creation.