How to pass parameters from Retool custom component Javascript to Retool Database query?

I am building retool custom component with devexpress gantt chart.
Here, when new task is inserted in gantt chart, I get that event correctly. and I have to insert this new task to tasks table of Retool Database.
How can I do this?

Hi @Alex_Napoles Thanks for reaching out! You can trigger a query from your custom component to run the insert query. You'll also want to update your custom component's model with the newly added event & then you can refer to the custom component's model, as described here ({{customComponentName.model}})

Here's a similar example that may help! Instead of triggering a JS query that updates temporary state, it sounds like you will be writing to Retool Database.