
Hey I was doing appwrite deploy collections but it gave me an internal server error on a collection named participants i figured the problem was in its "indexes" as making them empty list solved the problem this is the indexes list
"indexes": [
{
"key": "roomId",
"type": "key",
"status": "available",
"error": "",
"attributes": [
"roomId"
],
"orders": [
"ASC"
]
},
{
"key": "uid",
"type": "key",
"status": "available",
"error": "",
"attributes": [
"uid"
],
"orders": [
"ASC"
]
},
{
"key": "roomUser",
"type": "key",
"status": "available",
"error": "",
"attributes": [
"uid",
"roomId"
],
"orders": [
"ASC",
"ASC"
]
}
]
what am i doing wrong here and this was the indexes json created by pulling the collection of my project via appwrite init collections

What are the queries you're performing? And what errors are you getting?

I have a appwrite.json

and then i do appwrite deploy collection
Recommended threads
- Invalid `queries` param: Queries must be...
I dont really understand why i am having this issues, ```import { Client, Users, Query } from 'node-appwrite'; export default async ({ req, res }) => { con...
- Appwrite CLI: ✗ Error Unexpected 'r'
I get this error when I try to run any command, I am logged in but anything like init project etc gives this error. I am using v20.0.0 of node and installed app...
- Appwrite CLI can't create TABLE"
hello everyone, i'm trying to create tables via the cli but its not working, it keep saying `NO TABLEs FOUND`, here are my json structure **profile.json** ```{...
