groupRecordsForFindMany (store, snapshots) Array
Organize records into groups, each of which is to be passed to separate calls to findMany.
For example, if your api has nested URLs that depend on the parent, you will want to group records by their parent.
The default implementation returns the records as a single group.
Parameters:
-
store
DS.Store -
snapshots
Array
Returns:
-
Array - an array of arrays of records, each of which is to be loaded separately by `findMany`.
Please login to continue.