
user_id = data["user_id"]
followed_id = data["followed_id"]
result=None
query=[Query.equal("follower",user_id),Query.equal("following",followed_id)]
try:
result=databases.list_documents(databaseID,followCollectionID,queries=query)
print(result)
except Exception as e:
print(e)
result=None```
when i search one by one query it comes but i actually want to search if the collection has a document which satisfies both the queries how can i do that ?
if i use this syntax i get an index error

What do you mean? You want this?
follower == user id AND following == followed id

Yess i want to see if that exists in the same document

I got a workaround using 2 requests and checking if id matches

It should work...whats the result of the API call?

An error index does not exist

But when called individually it comes

So...did you create 1 index with both the attributes?

No 2 🤔 we had to create one idex with both?

In it

Yep!

Let me try that asal

Asap *
Recommended threads
- Hello all, does anyone know if it is po...
I'm looking for information on how to migrate to here from Mocha, while retaining my ties with stripe and react. Any Ideas ?
- Problem marking Apple Push-Notificaton a...
I was able to set up Push-Notifications via Appwrite function for my iOS App. I now wanted to increase the Badge count everytime the user gets a notifcation. Us...
- 404 messaging console bug 1.7.4
i upgraded from 1.6.1 to 1.6.2 and then to 1.7.4 Everything went well and seems to be working. The only issue is in the console When i browse anywhere in my pr...
