-
-
Notifications
You must be signed in to change notification settings - Fork 29
Discussion
Fernando Correa de Oliveira edited this page Mar 16, 2019
·
11 revisions
new example on #17:
model Artist {
has UInt $.id is column{ :id };
has CD @.cds is relationship{ .artist-id };
has Tracks @.tracks = $!cds.flatmap: *.tracks;
}