This has no effect on backend call request. Any idea why and how to make a new odata request with added filter query.
public setFilter(filter: string) {
console.log("set filter ", filter);
this.filterValue = filter;
const odataService = this.gridOptions.backendServiceApi.service;
console.log("filterValue ", this.filterValue);
odataService.updateOptions({ filter: this.filterValue } as OdataOption);
console.log("odataService update ", odataService);
odataService.processOnFilterChanged
odataService.clearFilters();
this.aureliaGridObj.filterService.clearFilters();
return true;
}