Can I trigger another function when one function returns a response.
For example if I have a function Function A
can I trigger function B
when A completed execution and pass return data as a parameter.
As of now it think that functions trigger are disabled in the cloud.
But, in general you can make a function trigger when any status change of a different function.
Using the functions.*.executions.*.update
event.
Then inside the B function you'll need to check that the function has finished successfully and then check the data.
You can find all functions events here: https://appwrite.io/docs/events#functions-events
[Solved]Trigger another function when one function returns response
Recommended threads
- self-hosted auth: /v1/account 404 on saf...
Project created in React/Next.js, Appwrite version 1.6.0. Authentication works in all browsers except Safari (ios), where an attempt to connect to {endpoint}/v1...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...