xSenny_Original post
Android Developer
Is there any way to do something like this
JavaScript
const messages = await databases.listDocuments( appwriteConfig.databaseId, appwriteConfig.messagesCollectionId, [ Query.or( [ Query.equal("senderId", id), Query.equal("getterId", id), ] ) ] );```, ``[TypeError: _reactNativeAppwrite.Query.or is not a function (it is undefined)]`` ik Query.or does not exist. I'm using appwrite sdk for native reactSummary
The developer is trying to use the `Query.or` method from Appwrite SDK in a native React project but is facing a TypeError stating that `Query.or is not a function`. The issue is that the `Query.or` does not exist in the SDK for React Native.