Closed hasyee closed 7 years ago
If I send a $filter=contains(Name,'c')&$orderby=UnitPrice request, the visitor looks like this:
$filter=contains(Name,'c')&$orderby=UnitPrice
{ query: { Name: /c/gi }, sort: { NameUnitPrice: 1 }, ... }
And if I send a $filter=contains(Name,'c')&$orderby=Name request, the visitor is:
$filter=contains(Name,'c')&$orderby=Name
{ query: { Name: /c/gi }, sort: { NameName: 1 }, ... }
It works fine if I skip the $filter or the $orderby: $orderby=UnitPrice or $filter=contains(Name,'c')
$orderby=UnitPrice
$filter=contains(Name,'c')
If I send a
$filter=contains(Name,'c')&$orderby=UnitPrice
request, the visitor looks like this:And if I send a
$filter=contains(Name,'c')&$orderby=Name
request, the visitor is:It works fine if I skip the $filter or the $orderby:
$orderby=UnitPrice
or$filter=contains(Name,'c')