The default JSON:API spec for allowing page, sort etc are not working. From what I can read, only filter is working.
This should work:
this.store.query('model', {
page: {
limit: 2,
},
filter: {}
}),
This should send a request like: /model?page[limit]=2... but is sending model?filter[page][value]=2 instead.
Can the adapter be updated to include all query types?
The default JSON:API spec for allowing
page,sortetc are not working. From what I can read, onlyfilteris working.This should work:
This should send a request like:
/model?page[limit]=2...but is sendingmodel?filter[page][value]=2instead.Can the adapter be updated to include all query types?