Open
Description
The this.store.query
(legacy adapters) isn't working correctly when we pass includes
as array.
this.store.query<Company>('company', {
filter: {
type: 'example',
},
include: ['ceo', 'employee'],
});
The query params result in url is: &include[]=ceo&include[]=employee
it should be &include=ceo,employee
This bug was fixed for findAll
& findRecord
in #9583
It was not fixed for query
(maybe also other) because this.buildQuery
will not be called inside that function
data/packages/adapter/src/rest.ts
Lines 587 to 595 in 83c176c
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
needs triage