
When I use the appwrite CLI to create an appwrite.json
with appwrite pull collections --all --force
, I get indices that look like this:
{
"key": "obj_types",
"type": "key",
"status": "available",
"attributes": [
"obj_types"
],
"orders": [
null
]
},
The problem here is the "orders": [null]
, this is invalid and causes appwrite push collections --all --force
to quit with an error. It should be "orders": []
.
Recommended threads
- cli 5.0.5 command for pull and push of d...
Hi i am using selfhosted appwrite 1.5.10, for migration (duplicate project) purpose i am using cli 5.0.5, but i am unable to find commands for pull and push, wh...
- 404 for self-host
docker-compose.yml: x-logging: &x-logging logging: driver: 'json-file' options: max-file: '5' max-size: '10m' services: traefik: ima...
- Is p-limit compatible with Appwrite?
I have a function that makes asynchronous calls to different Appwrite collections. This is how I make the call: ```js await Promise.allSettled([ ...
