We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is on alpha.14. After fetching the data it goes through the Cache but errors out on
alpha.14
Uncaught (in promise) TypeError: recordArrayManager._keyedArrays is undefined
Looking through the code it seems that _keyedArray is not defined in the constructor`. See
_keyedArray is not defined in the
data/packages/store/src/-private/managers/record-array-manager.ts
Line 81 in 15049be
Manually adding this._keyedArrays = new Map(); to the constructor fixes this problem but I don't know if this is the right way.
this._keyedArrays = new Map();
constructor
For me though I got around 😃 I did a this.store.findAll('model') and got finally my data from the store 🎉.
this.store.findAll('model')
store
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This is on
alpha.14
.After fetching the data it goes through the Cache but errors out on
Looking through the code it seems that
_keyedArray is not defined in the
constructor`. Seedata/packages/store/src/-private/managers/record-array-manager.ts
Line 81 in 15049be
Manually adding
this._keyedArrays = new Map();
to theconstructor
fixes this problem but I don't know if this is the right way.For me though I got around 😃 I did a
this.store.findAll('model')
and got finally my data from thestore
🎉.The text was updated successfully, but these errors were encountered: