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, using a custom type with different schema type and underlying go type panics.
In the example below, the schema type is string (via implementing encoding.TextUnmarshaler), but the go type is not a string.
This picks up from this discussion: #228 (comment)
Currently, using a custom type with different schema type and underlying go type panics.
In the example below, the schema type is
string
(via implementingencoding.TextUnmarshaler
), but the go type is not a string.This leads to:
I suspect
convertType
must be extended to also recognize the same special-casing for types that can be converted to strings?The text was updated successfully, but these errors were encountered: