Is it possible to instantiate a PersistedModel subclass without having to wait for the database transaction to go through? I know ModelClass.create({...}) will return a promise which resolves when the instance is created, but is there a version of that which just returns an unsaved ModelClass instance?Is it possible to instantiate a PersistedModel