usage would be ```ts @MutationField({ castTo: GroupModelAsAdmin }) async group( @Arg({ type: PositiveInt }) id: number, @Context ctx: UserSessionContext ) { return ctx.organisation .$relatedQuery<GroupModelAsAdmin>('groups') .findById(id) } ```