Problem retrieving related lists

Problem retrieving related lists

Hi, I'm having issue retrieving related lists records when using a loop. As the first record doesn't have a value for the related list, the rest of the loop fails ( No Content) and stop after this first record. If I target the record outside of the loop, using an ID with a known value, it is ok. 

  
  1. foreach ( $records as $record ) {
  2. $bulkAPIResponseList = $record->getRelatedListRecords( "Formations_initiales11" );
  3. $relatedRecordsList = $bulkAPIResponseList->getData();
  4. }

As the first result has no value for Formations_initiales11, I get the No content error.