I am trying to use ellipsis with plumber as input json may vary
#' @post /predict
calculate_prediction <- function(...){
arguments =list(...)
print(arguments)
return(arguments)
This throws me error below :
<simpleError: No method asJSON S3 class: R6>
How to resolve this issue