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
The operation ID generator wrongly assumes that the endpoint is secondary only when the secondary resource type differs from the primary resource type. This is incorrect when both types are the same.
This generates "operationId": "getNodeCollection" for both /nodes and /nodes/{id}/parent. The C# client generator then produces methods GetNodeCollectionAsync and GetNodeCollection2Async.
The text was updated successfully, but these errors were encountered:
The operation ID generator wrongly assumes that the endpoint is secondary only when the secondary resource type differs from the primary resource type. This is incorrect when both types are the same.
For example:
This generates
"operationId": "getNodeCollection"
for both/nodes
and/nodes/{id}/parent
. The C# client generator then produces methodsGetNodeCollectionAsync
andGetNodeCollection2Async
.The text was updated successfully, but these errors were encountered: