Given the following model ```ts @Model() export class B extends Resource { @Field() public id: string; } @Model() export class A extends Resource { @Field() public id: string; @ToMany() public toManyB: ToOneRelation<A,B>; } ``` Allow for ```ts a = new A(); await a.toManyB.fetch(); ```