Skip to content

Commit 507e6de

Browse files
authored
Merge pull request #209 from erizocosmico/docs/clarify-remove-notempty
clarify the relationship to remove must not be empty
2 parents f22b0a1 + 33a2594 commit 507e6de

File tree

5 files changed

+36
-2
lines changed

5 files changed

+36
-2
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,22 @@ For one to one relationships:
394394
err := store.RemoveThing(user)
395395
```
396396

397+
Note that for that to work, the thing you're deleting must **not** be empty. That is, you need to eagerly load (or set afterwards) the relationships.
398+
399+
```go
400+
user, err := store.FindOne(NewUserQuery())
401+
checkErr(err)
402+
403+
// THIS WON'T WORK! We've not loaded "Things"
404+
err := store.RemoveThings(user)
405+
406+
user, err := store.FindOne(NewUserQuery().WithThings())
407+
checkErr(err)
408+
409+
// THIS WILL WORK!
410+
err := store.RemoveThings(user)
411+
```
412+
397413
## Query models
398414

399415
### Simple queries

benchmarks/kallax.go

+3
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,9 @@ func (s *PersonStore) Transaction(callback func(*PersonStore) error) error {
327327
// RemovePets removes the given items of the Pets field of the
328328
// model. If no items are given, it removes all of them.
329329
// The items will also be removed from the passed record inside this method.
330+
// Note that is required that `Pets` is not empty. This method clears the
331+
// the elements of Pets in a model, it does not retrieve them to know
332+
// what relationships the model has.
330333
func (s *PersonStore) RemovePets(record *Person, deleted ...*Pet) error {
331334
var updated []*Pet
332335
var clear bool

generator/cli/kallax/cmd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"gopkg.in/urfave/cli.v1"
99
)
1010

11-
const version = "1.2.18"
11+
const version = "1.2.19"
1212

1313
func main() {
1414
newApp().Run(os.Args)

generator/templates/model.tgo

+4-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func (r *{{.Name}}) SetRelationship(field string, rel interface{}) error {
6262
{{else}}r.{{.Name}} = *val{{end}}
6363
return nil
6464
{{else}}case "{{.Name}}":
65-
records, ok := rel.([]kallax.Record)
65+
records, ok := rel.([]kallax.Record)
6666
if !ok {
6767
return fmt.Errorf("kallax: relationship field %s needs a collection of records, not %T", field, rel)
6868
}
@@ -508,6 +508,9 @@ func (s *{{.StoreName}}) Transaction(callback func(*{{.StoreName}}) error) error
508508
// Remove{{.Name}} removes the given items of the {{.Name}} field of the
509509
// model. If no items are given, it removes all of them.
510510
// The items will also be removed from the passed record inside this method.
511+
// Note that is required that `{{.Name}}` is not empty. This method clears the
512+
// the elements of {{.Name}} in a model, it does not retrieve them to know
513+
// what relationships the model has.
511514
func (s *{{.Model.StoreName}}) Remove{{.Name}}(record *{{.Model.Name}}, deleted ...{{if $.IsPtrSlice .}}*{{end}}{{$.GenTypeName .}}) error {
512515
var updated []{{if $.IsPtrSlice .}}*{{end}}{{$.GenTypeName .}}
513516
var clear bool

tests/kallax.go

+12
Original file line numberDiff line numberDiff line change
@@ -3956,6 +3956,9 @@ func (s *ParentStore) Transaction(callback func(*ParentStore) error) error {
39563956
// RemoveChildren removes the given items of the Children field of the
39573957
// model. If no items are given, it removes all of them.
39583958
// 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.
39593962
func (s *ParentStore) RemoveChildren(record *Parent, deleted ...*Child) error {
39603963
var updated []*Child
39613964
var clear bool
@@ -4555,6 +4558,9 @@ func (s *ParentNoPtrStore) Transaction(callback func(*ParentNoPtrStore) error) e
45554558
// RemoveChildren removes the given items of the Children field of the
45564559
// model. If no items are given, it removes all of them.
45574560
// 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.
45584564
func (s *ParentNoPtrStore) RemoveChildren(record *ParentNoPtr, deleted ...Child) error {
45594565
var updated []Child
45604566
var clear bool
@@ -5228,6 +5234,9 @@ func (s *PersonStore) Transaction(callback func(*PersonStore) error) error {
52285234
// RemovePets removes the given items of the Pets field of the
52295235
// model. If no items are given, it removes all of them.
52305236
// 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.
52315240
func (s *PersonStore) RemovePets(record *Person, deleted ...*Pet) error {
52325241
var updated []*Pet
52335242
var clear bool
@@ -6670,6 +6679,9 @@ func (s *QueryFixtureStore) RemoveRelation(record *QueryFixture) error {
66706679
// RemoveNRelation removes the given items of the NRelation field of the
66716680
// model. If no items are given, it removes all of them.
66726681
// 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.
66736685
func (s *QueryFixtureStore) RemoveNRelation(record *QueryFixture, deleted ...*QueryRelationFixture) error {
66746686
var updated []*QueryRelationFixture
66756687
var clear bool

0 commit comments

Comments
 (0)