You can use `@Url` in that case ``` interface User...
# squarelibraries
j
You can use
@Url
in that case
Copy code
interface UserService {
    @GET("/users")
    Call<List<User>> getAll()
 
    @GET
    Call<List<User>> getNextPage(@Url url: String)
}