The following ngrx select is deprecated.
this.store.select(state => state.academy.academy).subscribe((academy) => { this.academy = academy; });
As per NgRx 7, the select method is un-deprecated.
select
For more info, see the associated Pull Request.