-One of the challenges in working with `@ngrx/data` is that it assumes what your backend API URLs are. It makes an assumption that your URLs use the singular version of the entity name for single entity routes, and plural version of entity names for collection routes. So, it will call `GET /user/1` if you want to get a single user, and `GET /users` if you want to get all the users. It also appends a trailing slash. But your backend API routes could be named differently and that might be out of your control as a frontend developer. So as soon as you start working with `@ngrx/data` you are likely to run into this problem.
0 commit comments