for that band and eventually resolves with the returned record 3. Returns undefined What does store.findRecord(‘band’, 1) do if the record is NOT in the store?
for that band and eventually resolves with the returned record 3. Returns undefined What does store.findRecord(‘band’, 1) do if the record is NOT in the store?
background refetching of the record 2. Returns an Ember.ObjectProxy with the record 3. Returns the record What does store.findRecord(‘band’, 1) do if the record is in the store?
background refetching of the record 2. Returns an Ember.ObjectProxy with the record 3. Returns the record What does store.findRecord(‘band’, 1) do if the record is in the store?
2. Returns an Ember.ArrayProxy with the records in the store 3. Returns an Ember.ArrayProxy with the records in the store and triggers a background refetching of all bands What does store.findAll(‘band’) do if there is at least one band in the store?
2. Returns an Ember.ArrayProxy with the records in the store 3. Returns an Ember.ArrayProxy with the records in the store and triggers a background refetching of all bands What does store.findAll(‘band’) do if there is at least one band in the store?
and triggers a background request to fetch all of them 2. Returns an Ember.ArrayProxy with the bands in the store 3. Returns an array with the bands in the store What does store.peekAll(‘band’) do if there is at least one band in the store?
and triggers a background request to fetch all of them 2. Returns an Ember.ArrayProxy with the bands in the store 3. Returns an array with the bands in the store What does store.peekAll(‘band’) do if there is at least one band in the store?
all bands in the background 2. Returns undefined 3. Returns an Ember.ArrayProxy backed by an empty array What does store.peekAll(‘band’) do if there are NO bands in the store?
the store? 1. Returns an Ember.ArrayProxy and triggers a request to fetch all bands in the background 2. Returns undefined 3. Returns an Ember.ArrayProxy backed by an empty array