Hi i successfully upgraded my self hosted appwrite from 1.4.3 to 1.5.4 yesterday but now i get errors when i try to create a fulltext search index on an array
error: fulltext index forbidden on array attributes
I think the only reason to set a fulltext search index on an array would be to do a Query.search. Instead of using Query.search you now need to use Query.contains. As far as I know you don't need an index to use Query.contains.
It was a bit hacky so it was removed in that version. As @WhiteWalker72 said, now it's better using contains query
thank you
No problem! Feel free add [SOLVED] in front of the title so others can see your issue is solved 🙂
Recommended threads
- TOO_MANY_REDIRECTS after temporarily ena...
I am losing my mind over this, I enabled this setting because I was having issues with sites not making links with https. I enabled it, ran into issues, so I di...
- TablesDB `updateRows` returns `database_...
Hi Appwrite team! I’m seeing a strange issue with TablesDB bulk row updates on a self-hosted Appwrite instance. **Environment** - Appwrite self-hosted `1.9.0` ...
- [SOLVED] Realtime Missing Channels
```js useEffect(() => { let subscription: RealtimeSubscription; async function loadChips() { try { const {rows: chi...