- or download this
print Dumper \@executions, scalar(@executions);
- or download this
my @executions = $jobInfo->{'content'}{'executions'};
- or download this
my @executions = $jobInfo->{'content'}{'executions'}->@*; # requires P
+erl 5.36+
# Alternatively
my @executions = @{ $jobInfo->{'content'}{'executions'} };