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
data/addon/-private/system/references/record.js
Line 59 in 8fabf96
userRef.push({ data: { id: 1, MUST PRESENT->type: 'user', username: "@user" }}).then(function(user) { userRef.value() === user; });
The text was updated successfully, but these errors were encountered:
I believe what we want here in the docs is
userRef.push({ data: { id: "1", type: "user", attributes: { username: "@user" } } });
Sorry, something went wrong.
[DOCS] [BUGFIX] recordRef push param must be with type
5ca2026
Fixes emberjs#5808 Added type to push data with value "user"
@runspired Raised a PR #5889 for the same, can you please verify the fix
2858c32
Fixes #5808 Added type to push data with value "user"
No branches or pull requests
data/addon/-private/system/references/record.js
Line 59 in 8fabf96
userRef.push({ data: { id: 1, MUST PRESENT->type: 'user', username: "@user" }}).then(function(user) {
userRef.value() === user;
});
The text was updated successfully, but these errors were encountered: