Replymessage unavailable
async getPosts(){
try {
return await this.databases.listDocuments(conf.appwriteDatabaseId,conf.appwriteCollectionId,
[Query.equal('status','active')])
} catch (error) {
console.log("Appwrite serive :: getPosts :: error", error);
return false
}
}
this is the code of getPost() function