Handling Metadata
Along with the records returned from your store, you'll likely need to handle some kind of metadata. Metadata is data that goes along with a specific model or type instead of a record.
Pagination is a common example of using metadata. Imagine a blog with far more posts than you can display at once. You might query it like so:
let result = this.get('store').query('post', {
limit: 10,
offset: 0
});
To get different pages of data, you'd simply change your offset in increme