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 operation macro currently supports passing arguments for url params, request body and response schemas in a "simplified" way (as tuples/keyword lists).
It also supports passing operation structs like %Parameter{} and %Response{}.
However, it doesn't support passing %RequestBody{}, for example this:
The operation macro currently supports passing arguments for url params, request body and response schemas in a "simplified" way (as tuples/keyword lists).
It also supports passing operation structs like
%Parameter{}
and%Response{}
.However, it doesn't support passing
%RequestBody{}
, for example this:results in
%Operation{requestBody: nil}
.The expected behaviour would be to return
%Operation{requestBody: %RequestBody{}}
.I have submitted a simple fix here: #456
The text was updated successfully, but these errors were encountered: