You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let someEntity =this.backend.get('/some/endpoint')
115
115
```
116
116
117
+
### avoidNPlusOneRequests
118
+
When accessing the elements of an embedded collection, and some of the elements of the collection have not been loaded from the API before, this library will automatically try to avoid N+1 queries by eager fetching the whole collection.
119
+
In case you run into problems with this behaviour with your API, you can disable it by setting the `avoidNPlusOneRequests` option to false:
When requesting an entity, some HAL JSON APIs will not always return the same `self` link as it was in the request.
119
126
An example would be if the API added a `page=0` query parameter to the `self` link of a collection, even if the request was done without that parameter:
0 commit comments