Hi,
I would like to create a list of records. I can add one record just fine:
my $records = [
{ ID => 5342755,
NAME => 'Me',
} ,
];
When I try to add another record, the other records disappear:
$records = [ {
ID => 1212121,
} ];
What is the problem and how can I resolve this?