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 idea behind the GraphQL Error interface is that every Error type will always at least have the two fields defined by the Error interface: description! and hint. However, because of serde-rs/serde#912, we can't fallback on something like an Other type. It would be possible if it was an unit type, but that would remove access to the description and hint.
The text was updated successfully, but these errors were encountered:
The idea behind the GraphQL
Error
interface is that every Error type will always at least have the two fields defined by theError
interface:description!
andhint
. However, because of serde-rs/serde#912, we can't fallback on something like anOther
type. It would be possible if it was an unit type, but that would remove access to thedescription
andhint
.The text was updated successfully, but these errors were encountered: