findMany (store, type, ids, snapshots) Promise
Inherited from DS.Adapter but overwritten in addon/adapters/rest.js:548
Called by the store in order to fetch several records together if coalesceFindRequests is true For example, if the original payload looks like: {
"id": 1,
"title": "Rails is omakase",
"comments": [ 1, 2, 3 ]
}
The IDs will be passed as a URL-encoded Array of IDs, in this form: ids[]=1&ids[]=2&ids[]=3
Many servers, such as Rails and PHP, will automatically co