I want to listen to create document only! How can I achieve that?
In realtime you're not listening to specific events but rather to channels.
But, what could be your solution is to use Webhooks in which you can set a out-webhook based on single event
is there any examples that I can rely on to do that?
For which part? the webhook?
yes..
I want to listen to only create document event of that database not on update/delete
This way you can create a webhook
In this example the webhook will run only when the user.create
event was fired
But you'll need some endpoint that will listen to it
Recommended threads
- Realtime with multiple connections
I need the Realtime on multiple Collections for diffrent applicational logic. So my question is: Is there a way to have only 1 Websocket connection or do I need...
- i am getting 404 not found in my current...
in my current appwrite i am getting 404 not found from backend side and in frontend getting error of CORS error as backend is not working
- How to create a custom authentication sy...
I’m looking to create an Appwrite function that first verifies a client using some custom logic, like providing a secret key. Once this verification is complete...