RxAndroid response of one call to make another request
问题 I'm new to RxAndroid and trying to chain responses. I'm using this github API to retrieve data. Along with each issue there are comments link and events link associated with it which I want to fetch and update existing object with list of comments and events to form something like this. [ issue: { comments: [ { . . }, { . . } ] events : [ { . . }, { . . } ] ] ] I could retrieve initial response with following code GitHubService gitHubService = ServiceFactory.createServiceFrom(GitHubService