I slightly modified example from the current doc. On saving and entity with Refs that were created from the not saved entitied, do the refs get saved as well? In my case the driver has @Parent - a car.
@Entity
class Car {
@Id Long id;
@Load Ref<Person> driver; // Person is an @Entity
}
Car car = new Car();
car.driver = Ref.create(driver);
ofy().save().entity(car).now();