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
{{ message }}
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.
This makes it simple to create logical entities that are partially and lazily loaded on demand. Also, this extends to being able to fetch multiple entities in a single HTTP call [WIP]:
### Multi entity fetchGET http://localhost:9000/data/User,Contacts/Id1
That is, we want to be able to comma-separate DataEntity-types to do a server-side fan-out. We also want this:
### Multi entity fetchGET http://localhost:9000/data/User,Contacts/Id1,Id2,Id3
We want this (from README.md):
This makes it simple to create logical entities that are partially and lazily loaded on demand. Also, this extends to being able to fetch multiple entities in a single HTTP call [WIP]:
That is, we want to be able to comma-separate DataEntity-types to do a server-side fan-out. We also want this:
To do a multi-dimensional fan-out.
Suggested return format (single ID):
Suggested return format (multiple IDs):
...where the position matches the ID-position in the query string, the same way the currently implemented multi-fetch does it.
The text was updated successfully, but these errors were encountered: