As a newcomer to Angular, I find myself uncertain about what exactly qualifies as an endpoint and how it can be transformed into ORM. My current understanding suggests that an endpoint is where data is retrieved from a server, whether it's through an online API or a SQL database query.
After some research, I've learned that ORM simplifies coding by removing the need for direct SQL commands. But how does one actually implement this? And what if there isn't any SQL involved but instead a request made to an online API via a URL?
To provide context, my project involves working on a website built with Angular, which incorporates a combination of database, API, and UI elements. The API collects data from both external online APIs and local databases. Therefore, my inquiry focuses on how to revamp both types of endpoints in this scenario.