I am trying to fetch individual users chat for that i have created =>{ id1: my_uid+""+friends_uid , id2: friends_uid+""+my_uid }
and using thid syntax to fetch the data => Query.and([
Query.equal("id1",myInfo?.$id+""+selectedID),
Query.equal("id2", selectedID+""+myInfo?.$id)
])
But i am getting this query data Query.equal("id1",myInfo?.$id+""+selectedID), second Query.equal("id2", selectedID+""+myInfo?.$id) its not getting true not getting second query data.
Recommended threads
- Invalid document structure: missing requ...
I just pick up my code that's working a week ago, and now I got this error: ``` code: 400, type: 'document_invalid_structure', response: { message: 'Inv...
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...