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
fmt.Errorf("Unsupported field '%s'; err: %w", name, err)
Or simply inline underlying error via %v, as loader.go doesn't declare those as public error variables (e.g. ErrArrayUnsupported) to be checked against.
The text was updated successfully, but these errors were encountered:
cayley/schema/loader.go
Lines 325 to 329 in ab2941b
Wrap error if supporting Go 1.13
Or simply inline underlying error via
%v
, asloader.go
doesn't declare those as public error variables (e.g.ErrArrayUnsupported
) to be checked against.The text was updated successfully, but these errors were encountered: