Using Iron Router to waitOn subscription that's dependent on data from a doc that will come from another subscription
I'm having trouble configuring the waitOn portion of a route where one of the subscription's parameters is determined by the value from a doc that comes from a different subscription. The collections in play are Candidates and Interviews. An interview will have one and only one candidate. Here's some sample data: candidate = { _id: 1 firstName: 'Some', lastName: 'Developer' //other props }; interview = { _id: 1, candidateId: 1 //other props }; The route is configured as follows. this.route('conductInterview', { path: '/interviews/:_id/conduct', //:_id is the interviewId waitOn: function () {