updater

package
v0.18.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 7, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AfterOpContext added in v0.12.0

type AfterOpContext struct {
	Col          *mongo.Collection `opt:"-"`
	*CondContext `opt:"-"`
}

func NewAfterOpContext added in v0.12.0

func NewAfterOpContext(col *mongo.Collection, condContext *CondContext, opts ...AfterOpContextOption) *AfterOpContext

type AfterOpContextOption added in v0.12.0

type AfterOpContextOption func(*AfterOpContext)

type BeforeOpContext added in v0.12.0

type BeforeOpContext struct {
	Col          *mongo.Collection `opt:"-"`
	*CondContext `opt:"-"`
}

func NewBeforeOpContext added in v0.12.0

func NewBeforeOpContext(col *mongo.Collection, condContext *CondContext, opts ...BeforeOpContextOption) *BeforeOpContext

type BeforeOpContextOption added in v0.12.0

type BeforeOpContextOption func(*BeforeOpContext)

type CondContext added in v0.12.0

type CondContext struct {
	Filter      any `opt:"-"`
	Updates     any
	Replacement any
}

func NewCondContext added in v0.12.0

func NewCondContext(filter any, opts ...CondContextOption) *CondContext

type CondContextOption added in v0.12.0

type CondContextOption func(*CondContext)

func WithReplacement added in v0.12.0

func WithReplacement(replacement any) CondContextOption

func WithUpdates added in v0.12.0

func WithUpdates(updates any) CondContextOption

type Updater

type Updater[T any] struct {
	// contains filtered or unexported fields
}

func NewUpdater

func NewUpdater[T any](collection *mongo.Collection) *Updater[T]

func (*Updater[T]) Filter

func (u *Updater[T]) Filter(filter any) *Updater[T]

Filter is used to set the filter of the query

func (*Updater[T]) RegisterAfterHooks added in v0.12.0

func (u *Updater[T]) RegisterAfterHooks(hooks ...afterHookFn) *Updater[T]

func (*Updater[T]) RegisterBeforeHooks added in v0.12.0

func (u *Updater[T]) RegisterBeforeHooks(hooks ...beforeHookFn) *Updater[T]

func (*Updater[T]) Replacement added in v0.11.0

func (u *Updater[T]) Replacement(replacement any) *Updater[T]

func (*Updater[T]) UpdateMany

func (u *Updater[T]) UpdateMany(ctx context.Context, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error)

func (*Updater[T]) UpdateOne

func (u *Updater[T]) UpdateOne(ctx context.Context, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error)

func (*Updater[T]) Updates

func (u *Updater[T]) Updates(updates any) *Updater[T]

Updates is used to set the updates of the update

func (*Updater[T]) UpdatesWithOperator added in v0.0.4

func (u *Updater[T]) UpdatesWithOperator(operator string, value any) *Updater[T]

func (*Updater[T]) Upsert added in v0.11.0

func (u *Updater[T]) Upsert(ctx context.Context, opts ...*options.ReplaceOptions) (*mongo.UpdateResult, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL