It already supports that. Like this: ``` @GET("se...
# arrow-contributors
l
It already supports that. Like this:
Copy code
@GET("search/repositories")
    fun getRepositoriesEffect(@Query("q") language: String,
                              @Query("sort") order: String,
                              @Query("page") page: Int): CallK<GithubAnswerDto>
We tried with Kind<F, GithubAnswerDto>, but the Response cannot have Parametrized types