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
I have identified an inconsistency when composing queries for URL generation. In my TypeScript code, I observed that the order of the expand and select functions affects the resulting URL, which I believe is unintended behavior.
This discrepancy suggests that the order of the operations should not affect the result, and I believe this behavior may be a bug. Consistent results should be returned regardless of the order in which expand and select functions are applied.
The text was updated successfully, but these errors were encountered:
I have identified an inconsistency when composing queries for URL generation. In my TypeScript code, I observed that the order of the expand and select functions affects the resulting URL, which I believe is unintended behavior.
When I use the following code snippet:
I obtain the URL: http://localhost:5226/api/v1/teachers?$select=id,firstName,lastName
However, when I switch the order of the functions:
I get the desired URL: http://localhost:5226/api/v1/teachers?$expand=class($select=id,name)&$select=id,firstName,lastName
This discrepancy suggests that the order of the operations should not affect the result, and I believe this behavior may be a bug. Consistent results should be returned regardless of the order in which expand and select functions are applied.
The text was updated successfully, but these errors were encountered: