I have a promise calling another promise but I don't know how to access the variable memberContractInfo where I am trying to store all of the promises. In the below code I have 2 questions labeled QUESTION 1 and QUESTION 2.
export function sendRequestAndLoadResponseForAllMemberContractInfo() {
    return function sendRequestAndLoadResponseForAllMemberContractInfoThunk(dispatch) {
        dispatch(getRequestsAction());
        return returnPromiseWithAllMemberContracts()
        .then(promiseWithAllMemberContracts => {
            // Step 1) get all member ids in response
            let contracts = promiseWithAllMemberContracts.response.contract;
            let memberContractInfo = []; // <==== I want to store result of all 2nd promises here
            for (let i in contracts) {
                const memberID = contracts[i].member_id;
                returnPromiseWithAllMemberInfo(memberID)
                .then(secondAPICallResponse => {
                    // Step 2) make 2nd API call using memberIDs as parameter
                    memberContractInfo.push(secondAPICallResponse);
                    console.log('secondAPICallResponse = ', secondAPICallResponse);
                    if (memberContractInfo.length === 2) {
                        console.log('memberContractInfo.length = 2'); 
                        // QUESTION 1: I can access memberContractInfo here but I there must also be
                        // another place I can access it right?
                    }
                })
            }
            console.log('memberContractInfo = ', memberContractInfo); // <== QUESTION 2: Why is this empty?
        });
    }
} 
function returnPromiseWithAllMemberContracts() {
    return fetchData('/api-proxy/contract/contract'); 
}
function returnPromiseWithAllMemberInfo(memberID) {
    let servicePath = '/api-proxy/member?id='.concat(memberID);
    console.log('fetchData(', servicePath);
    return fetchData(servicePath);
}
 
     
    