coalesceFindRequests{boolean}
Inherited from DS.Adapter but overwritten in addon/adapters/rest.js:300
By default the RESTAdapter will send each find request coming from a store.find or from accessing a relationship separately to the server. If your server supports passing ids as a query string, you can set coalesceFindRequests to true to coalesce all find requests within a single runloop. For example, if you have an initial payload of: {
post: {
id: 1,
comments: [1, 2]
}
}
By d