Quantcast
Channel: Ember.JS - Latest topics
Viewing all articles
Browse latest Browse all 4826

Ember Data & Relationships. Related data not loading into data store

$
0
0

@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 the included 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 the include option to also return the organization 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 theember/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 an organization.

Using Ember Inspector to look at the ember data store, I can only see the user loaded. I do not see the organization.

Is there something else I should be doing?

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 4826

Trending Articles