Glide To Postgre

why Make integration with Glide is not working properly I added the module Get Rows and then I inserted those rows into the Postgre but it only gets row data when is there are more than 10 rows and the same for the data insertion in the Postre, it pushes the first row of the table again and again instead of m, moving to next one and I didn’t see any option to solve this a bit complex scenario.

@Qasim_Javed paste screenshot of scenario and modules setting while explaining what and how you are doing. I am assuming you need to use array aggregator or text aggregator in here

Princy Jain
Make consultant,
For consulting support: Follow up Automated

2 Likes

Welcome to the Make community!

You are using the Glide “Get Rows” module. This is a SEARCH module, and you will always get (up to the limit) results every time the scenario is run, and not just new rows.

Screenshot_2024-04-19_230443

What you need to use is a TRIGGER module that only fetches NEW rows. But unfortunately it seems that Make has deprecated this module.

Screenshot_2024-04-19_230429

For technical issues like this, directly contacting support can often lead to a faster resolution. They have access to your specific account details, scenario and scenario logs, server-side logs, and internal tools and resources, which allows them to investigate more thoroughly than what you have access to. You can open a new ticket, or if you are unable to login for some reason, you also can reach support using the contact form on the website.

If the external service allows you to register webhooks, then you can create a trigger to wait for incoming webhook requests in Make using the generic Webhook “Custom webhook” module.

If you need assistance in setting up the app’s universal module, or the generic HTTP module, please provide additional information about what you have tried with regards to the external service’s Developer API Reference – how you are setting the connection up, a link to the endpoint are you trying to connect to, and what errors you are encountering.

samliewrequest private consultation

2 Likes

like i have a table named test just to test the Make and Glide integration for Postgre
In this scenario, I am trying to get all the rows of the table test and then trying to insert these rows into the Postgre database but it only gets the first row data as you can see in the image I used a repeater and repeater does the same like I set repeater to 15 and it inserts the first row 15 times in the Postgre,
what else do I have to do to achieve this: I want to run the action and it gets all the rows from the Glide table and then inserts/updates data in the Postgre database based on a Column maybe id, like if incoming data contains the same data then update that row else insert the new record.