How to make application looks faster using REST API?

Hi team,

How can I make application looks instantaneous by adding a new data to a list when using REST API?

What I’m doing now is to add a record to the rest API resource but in order to show it, I need to make another query to get the data collection and show and that makes the application feels slow.

Thanks!

Hi,

You can save the new record data in a variable, and use that to show the information after the user creates the record. Since there’s no REST API involved it would be shown immediately while the backend keeps updating in the background.

Thanks Cecilia_Berg :wink: