
I'm trying to create a function that replicates a newly created user to a document in a collection(triggered by event)
I just get a Server Error occured trying to replicate the user: doge@doge.com
in the logs.
TypeScript
import { Client, Databases, Permission, Role } from 'node-appwrite';
export default async ({ req, res, log, error }) => {
const client = new Client();
client
.setEndpoint(process.env.API_ENDPOINT)
.setProject(process.env.PROJECT_ID)
.setKey(process.env.APPWRITE_API_KEY);
const databases = new Databases(client);
const { $id, name, email } = req.body
try {
await databases.createDocument(process.env.DB_ID, process.env.COLLECTION_ID, $id, {
name,
email,
},
[
Permission.read(Role.any()),
Permission.update(Role.user($id))
])
} catch (e) {
error(`Error: ${e} occurred trying to replicate the user: ${email}.`)
return res.send("Error occurred");
}
return res.send("User created");
};
Any ideas?
TL;DR
Function is trying to duplicate a user into a document but encountering a server error. Check the API key and permissions. Make sure your endpoint, project ID, and database IDs are correct.Recommended threads
- How do I display images from my storage?
I am trying to display images stored in my storage and I need help displaying them on my webapp I am using react.
- Function deployment is stuck on original...
It seems that anything to do with deployments gets stuck at a previous version no matter what I do. I don't know what to do except abandon appwrite altogether s...
- How do I bulk add a large amount of imag...
Hello If anyone can help me adding a large amount of images to my storage that would be extremly helpful! I am trying to do it through the console or some sort ...
