How does one unload an embedded record in Ember Data?
This jsbin illustrates that:
this.store.unloadRecord(record);
works on the parent record but not on the embedded child record (documented here).
Is there another way to remove the embedded child record from the store without sending a delete request to the server?