PaackEng / paack-remotedata / Remote.Errors


type RemoteError transportError customError
    = Custom customError
    | Transport transportError

Abstract union for merging transport errors with custom decoder errors.


type alias GraphqlHttpError customError =
RemoteError (Graphql.Http.RawError () Graphql.Http.HttpError) customError

Implementation of RemoteError for failures containing Graphql.Http.GraphqlError