I have the following store structure for users:
usersState = {
isLoading: boolean;
items: {
entities: {},
ids: []
}
}
adapter.getSelectors()
only works for the top level keys, whereas I want to apply it inside the items key. How can that be done?
Thanks.