- or download this
$schema->resultset("Artist")->populate([
{ artistid => 4, name => 'Manufactured Crap', cds => [
...
],
},
]);
- or download this
my $artistsAndTitles = $schema->resultset('Artist')->
search(...)->search_related_rs('cds', {...})->as_data
...
my $artistsAndTitles = $schema->resultset('Artist')->
cds()->as_data ;
- or download this
[
{ artistid => 4, name => 'Manufactured Crap', cds => [
...
],
}
]