I need a service call which has two query parameters. One with a default hardcoded value and other the user would supply. I tried creating :
ServiceCall<NotUsed, String> randomCall(String abc)
using restCall(Method.GET, "/testing?a=something&abc", this::randomCall)
But received IllegalArgumentException. Is there any way to do this in Lagom?