Finding Records
The Ember Data store provides an interface for retrieving records of a single type.
Retrieving a Single Record
Use store.findRecord() to retrieve a record by its type and ID. This will return a promise that fulfills with the requested record:
var blogPost = this.get('store').findRecord('blog-post', 1); // => GET /blog-posts/1
Use store.peekRecord() to retrieve a record by its type and ID, without making a network request. This will return the record only if it is already p