import Controller from '@ember/controller'; export default class ApplicationController extends Controller { appName = 'Ember Twiddle'; constructor() { super(...arguments); this.user = this.store.push({ data: { type: 'user', id: '1', attributes: { name: 'bugs malone' }, relationships: { bestFriend: { data: { type: 'user', id: '2' } } } } }); } }