I am using ember and ember data in my application . How can we remove manually a record from the store in Ember . Currently i am pushing the record to store using push metho
record.unloadRecord() or store.unloadRecord(record), additionally you can remove all records for a type, store.unloadAll(type)
record.unloadRecord()
store.unloadRecord(record)
store.unloadAll(type)