You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A search query that uses nore than one sort property is not handled properly sort(-attributes/type,+features/some),size(200),cursor(...).
In the case where there is no cursor there is no error. But in case a cursor is included the problem manifests.
In ThingSearchRoute in the calculateOptions method options are parsed by comma which leads to incorectly dividing the sort part and leading to { "status": 400, "error": "thing-search:search.option.invalid", "message": "Invalid input '+', expected Sort, Limit, Cursor or Size (line 1, column 35):\nsort(-/attributes/type,+/thingId),+thingId),size(2),cursor(....)\n, "description": "At least one provided option is invalid." }
The text was updated successfully, but these errors were encountered:
A search query that uses nore than one sort property is not handled properly sort(-attributes/type,+features/some),size(200),cursor(...).
In the case where there is no cursor there is no error. But in case a cursor is included the problem manifests.
In ThingSearchRoute in the calculateOptions method options are parsed by comma which leads to incorectly dividing the sort part and leading to
{ "status": 400, "error": "thing-search:search.option.invalid", "message": "Invalid input '+', expected Sort, Limit, Cursor or Size (line 1, column 35):\nsort(-/attributes/type,+/thingId),+thingId),size(2),cursor(....)\n, "description": "At least one provided option is invalid." }
The text was updated successfully, but these errors were encountered: