AddReferenceCount adds v to the "reference_count" field.
(v int)
| 749 | |
| 750 | // AddReferenceCount adds v to the "reference_count" field. |
| 751 | func (u *EntityUpsertOne) AddReferenceCount(v int) *EntityUpsertOne { |
| 752 | return u.Update(func(s *EntityUpsert) { |
| 753 | s.AddReferenceCount(v) |
| 754 | }) |
| 755 | } |
| 756 | |
| 757 | // UpdateReferenceCount sets the "reference_count" field to the value that was provided on create. |
| 758 | func (u *EntityUpsertOne) UpdateReferenceCount() *EntityUpsertOne { |