v1.0.2
This release makes a small change around the API for CombinedError. Specifically, the module type t for CombinedError now refers to the record exposed by the module rather than the Js.t / OCaml class binding urql's native CombinedError class. Better documentation for CombinedError was also added.
Added
- More documentation on
CombinedErrorin the API docs. PR by @Schmavery and @parkerziegler here.
Changed
CombinedError.tnow references the record exposed by theCombinedErrormodule containing fields formessage,networkError,graphQLErrors, andmessage. PR by @Schmavery and @parkerziegler here.
Fixed
- Capitalization / casing for the
graphQLErrorsfield onCombinedError.t. Previously this was bound asgraphqlErrors, which would always result inNonebeing returned asurqlhas nographqlErrorsfield. PR by @Schmavery here.