Hello, i try to update a document, but i get this error I use cloud appwrite
{
"message": "Invalid document structure: Unknown attribute: \"startDate\"",
"code": 400,
"type": "document_invalid_structure",
"version": "1.6.2"
}
I use the appwrite package 17.0.0, and i have no trace of some "startDate"
PATCH https://cloud.appwrite.io/v1/databases/DATABASE_ID/collections/tournaments/documents/DOCUMENT_ID
{"data":{"name":"Duel commander","playerCount":64}}
databases.updateDocument(
dbId,
collectionId,
docId,
{
name: "Duel commander",
playerCount: 64
},
permissions
),
I precise, i have no attribute "startDate" inside my collection
Have you ever had this attribute in your collection?
Recommended threads
- fastly error
Hey! I'm hitting a Fastly error on the www version of our site, but the root domain works fine. We have a wildcard set up, so I expected the subdomain to be cov...
- Facebook's scraper facebookexternalhit g...
share.bardbliss.com but works fine on the raw fra.appwrite.run URL. No execution logs appear when Facebook hits the custom domain. This was working before. How ...
- How to Display File in Web?
I'm trying to use Appwrite's Storage to store images and display them in my app, however when I use the `getFileView`, `getFileDownload` or `getFilePreview` met...