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 Fragments.res module's definitions for parse and serialize are not marked as uncurried functions:
139 ┆ Js.log2("mutate.update To-Do: ", todo)
140 ┆ let _unusedRef = writeFragment(
141 ┆ ~fragment=module(Fragments.TodoItem),
142 ┆ ~data={
143 ┆ __typename: todo.__typename,
Signature mismatch:
...
Values do not match:
let parse: Raw.t => t (curried)
is not included in
let parse: Raw.t => t (uncurried)
This seems to be that generate_fragment_signature doesn't use wrap_sig_uncurried_fn for these, like generate_operation_signature does.