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
currently the conversion lib describes the errors for any operation as a default response.
This behavior makes it really hard to do anything useful during code generation.
It should instead be using 4XX and 5XX response classes, for more information see this thread.
additionally for inner errors, the odata spec states the following
innererror: optional structured instance with service-defined content.
Which this conversion lib implements by simply declaring an object property with no properties.
But Microsoft Graph defines the inner error with two properties
inner error, of type inner error
code (string)
We could improve the experience by describing that type in the CSDL.
The conversion library would then locate it by naming convention (called innererror) or using an annotation.
currently the conversion lib describes the errors for any operation as a default response.
This behavior makes it really hard to do anything useful during code generation.
It should instead be using 4XX and 5XX response classes, for more information see this thread.
Update the library to:
Additional information
https://docs.microsoft.com/en-us/graph/errors
The text was updated successfully, but these errors were encountered: