-
-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Description
When I am making a call and adding a filter to the query for a guid lookup. It is not removing the quotes when parsing out the request.
this.sideNavService.selectedSeasonID.subscribe(x => {
this.seasonID = x;
if (x) {
this.queryFilter = { "field": "SeasonID", operator: 'eq', value: x as Guid, removeQuotes: true };
}
else {
this.queryFilter = undefined;
}
this.refreshData();
})
When making the call it comes out as this with the added string encoding quotes on the guid (the %27)
https://localhost:4200/api/League/GetByFilter?$filter=SeasonID%20eq%20%27114a2d5d-d41b-46e5-3cc9-08dddf287571%27&$top=5&$skip=1
Any help on how I could go about fixing this would be great. thanks
Metadata
Metadata
Assignees
Labels
No labels