I want to avoid doing multiple conditionals per key value - a case in which , say, "$first_node['logo'];" is not avalable
foreach ( $arr as $key => $value ) {
// I want to avoid conditional here for each node
$first_node = $value[0];
$logo = $first_node['logo'];
$name = $first_node['name'];
break;
}