@@ -3956,6 +3956,9 @@ func (s *ParentStore) Transaction(callback func(*ParentStore) error) error {
3956
3956
// RemoveChildren removes the given items of the Children field of the
3957
3957
// model. If no items are given, it removes all of them.
3958
3958
// The items will also be removed from the passed record inside this method.
3959
+ // Note that is required that `Children` is not empty. This method clears the
3960
+ // the elements of Children in a model, it does not retrieve them to know
3961
+ // what relationships the model has.
3959
3962
func (s * ParentStore ) RemoveChildren (record * Parent , deleted ... * Child ) error {
3960
3963
var updated []* Child
3961
3964
var clear bool
@@ -4555,6 +4558,9 @@ func (s *ParentNoPtrStore) Transaction(callback func(*ParentNoPtrStore) error) e
4555
4558
// RemoveChildren removes the given items of the Children field of the
4556
4559
// model. If no items are given, it removes all of them.
4557
4560
// The items will also be removed from the passed record inside this method.
4561
+ // Note that is required that `Children` is not empty. This method clears the
4562
+ // the elements of Children in a model, it does not retrieve them to know
4563
+ // what relationships the model has.
4558
4564
func (s * ParentNoPtrStore ) RemoveChildren (record * ParentNoPtr , deleted ... Child ) error {
4559
4565
var updated []Child
4560
4566
var clear bool
@@ -5228,6 +5234,9 @@ func (s *PersonStore) Transaction(callback func(*PersonStore) error) error {
5228
5234
// RemovePets removes the given items of the Pets field of the
5229
5235
// model. If no items are given, it removes all of them.
5230
5236
// The items will also be removed from the passed record inside this method.
5237
+ // Note that is required that `Pets` is not empty. This method clears the
5238
+ // the elements of Pets in a model, it does not retrieve them to know
5239
+ // what relationships the model has.
5231
5240
func (s * PersonStore ) RemovePets (record * Person , deleted ... * Pet ) error {
5232
5241
var updated []* Pet
5233
5242
var clear bool
@@ -6670,6 +6679,9 @@ func (s *QueryFixtureStore) RemoveRelation(record *QueryFixture) error {
6670
6679
// RemoveNRelation removes the given items of the NRelation field of the
6671
6680
// model. If no items are given, it removes all of them.
6672
6681
// The items will also be removed from the passed record inside this method.
6682
+ // Note that is required that `NRelation` is not empty. This method clears the
6683
+ // the elements of NRelation in a model, it does not retrieve them to know
6684
+ // what relationships the model has.
6673
6685
func (s * QueryFixtureStore ) RemoveNRelation (record * QueryFixture , deleted ... * QueryRelationFixture ) error {
6674
6686
var updated []* QueryRelationFixture
6675
6687
var clear bool
0 commit comments