I posted this to Ember Discord, as well; in the #help channel.
Hello everyone I think I have an ember data issue, but I’m not 100% sure.
// queryParameters = {
// page: {
// number: 1,
// size: 10
// }
// }
const records = yield parent.query("child", queryParameters);
// GET /api/parent/:id/child?page[number]=1&page[size]=10
// queryParameters = {
// page: {
// number: 2,
// size: 10
// }
// }
const records = yield parent.query("child", queryParameters);
// GET child/:id <- was previously loaded; new query params ignored
I’m using Ember 3.24. This works as expected in Ember 2.18. I bring that up because I’m trying to upgrade our application.
How can I debug this? How can I make the 2nd, and subsequent requests go all the way to the back-end?
This query is inside a function that is used to populate an ember-light-table component. I’ll try to provide more information if requested. Thanks, in advance, for any assistance.