@johnnyicon wrote:
Hi all,
I’m hoping someone can help me with understanding how to load related data into the data store. I think I’m following the right method of using the
include
directive on a request and my API seems to be returning the correct information, but theincluded
data in the JSON response isn’t loaded into the data store.
- I’m using DS.JSONAPIAdapter and I also have a JSON API Spec compliant backend (using fastjson_api gem for RoR).
- I’m requesting from the API a single
user
and I’m using theinclude
option to also return theorganization
that user is associated with- The request is formatted correctly (e.g.,
/users/1?include=organization
)- The response returns the following:
{ "data":{ "id":"1", "type":"user", "attributes":{ "id":1, "email":"john@test.com", "first_name":"John" }, "relationships":{ "organization":{ "data":{ "id":"1", "type":"organization" } } } }, "included":[ { "id":"1", "type":"organization", "attributes":{ "id":1, "name":"Awesome Co." } } ] }
I should probably note that the relationship is defined in the
ember/models/user.js
as:organization: belongsTo('agency')
In the ember app, the data is represented as an
agency
. In the API/backend, it’s represented as anorganization
.Using Ember Inspector to look at the ember data store, I can only see the
user
loaded. I do not see theorganization
.Is there something else I should be doing?
Posts: 1
Participants: 1