You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an interesting case, and I am not 100% sure if this is a bug, but the way fast_jsonapi handles it is different than how AMS handles it. Also ember-data 2.13 seems to have issues with the way fast_jsonapi handles it as well.
Given a relationship like
class Parent
has_many :children
end
class Child
belongs_to :parent
end
When a child is created and the include param is like parent.children the created child is both in the top level data field (as expected), and it is also in the included records.
With AMS it seems that the record in data is not repeated in the included records.
I could not find mention of this in the json api spec.
The text was updated successfully, but these errors were encountered:
Are issues being actively dealt with? I have seen a decrease in responsiveness, and commits for this project. I have an open pull request for this issue, and I have received no feedback on it. It would be helpful for the community to know the maintainability of this project going forward.
This is an interesting case, and I am not 100% sure if this is a bug, but the way fast_jsonapi handles it is different than how AMS handles it. Also ember-data 2.13 seems to have issues with the way fast_jsonapi handles it as well.
Given a relationship like
When a child is created and the include param is like
parent.children
the created child is both in the top level data field (as expected), and it is also in the included records.With AMS it seems that the record in data is not repeated in the included records.
I could not find mention of this in the json api spec.
The text was updated successfully, but these errors were encountered: