
I am currently applying a very ugly way to manage adding and subtracting team members to the team, is there a better way to do this?:
export async function removeMembersFromTeam( teamId: string, memberIds: string[] ): Promise<void> { try { const team = await databases.getDocument( config.databaseId!, config.teamsCollectionId!, teamId );
const updatedMembers = team.members.filter(
(member: any) => !memberIds.includes(member.$id)
);
await databases.updateDocument(
config.databaseId!,
config.teamsCollectionId!,
teamId,
{ members: updatedMembers }
);
console.log("Members removed successfully.");
} catch (error) { console.error("Error removing members from team:", error); throw error; } }
Recommended threads
- Query.startswith problem
Hi, i have a problem: const result = await database.listDocuments(envs.DATABASE_ID,envs.COLLECTION_ID,[Query.startsWith('date', '2025-04-01')]) this one does...
- Cannot delete account using appwrite aut...
other things working well, but my delete isn't working : deleteAccount: async (password: string) => { try { // First, delete all active ses...
- Error uploading PDF: [AppwriteException:...
here is the my code export const uploadPDF = async (pdf) => { try { console.log("Uploading file:", pdf); const file = pdf.assets[0]; console....
