ent

package
v0.0.0-...-0707337 Latest Latest
Warning

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

Go to latest
Published: Nov 11, 2024 License: MIT Imports: 24 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Operation types.
	OpCreate    = ent.OpCreate
	OpDelete    = ent.OpDelete
	OpDeleteOne = ent.OpDeleteOne
	OpUpdate    = ent.OpUpdate
	OpUpdateOne = ent.OpUpdateOne

	// Node types.
	TypeHistory = "History"
	TypeMeta    = "Meta"
	TypeTag     = "Tag"
	TypeUser    = "User"
)

Variables

View Source
var ErrTxStarted = errors.New("ent: cannot start a transaction within a transaction")

ErrTxStarted is returned when trying to start a new transaction from a transactional client.

Functions

func Asc

func Asc(fields ...string) func(*sql.Selector)

Asc applies the given fields in ASC order.

func Desc

func Desc(fields ...string) func(*sql.Selector)

Desc applies the given fields in DESC order.

func IsConstraintError

func IsConstraintError(err error) bool

IsConstraintError returns a boolean indicating whether the error is a constraint failure.

func IsNotFound

func IsNotFound(err error) bool

IsNotFound returns a boolean indicating whether the error is a not found error.

func IsNotLoaded

func IsNotLoaded(err error) bool

IsNotLoaded returns a boolean indicating whether the error is a not loaded error.

func IsNotSingular

func IsNotSingular(err error) bool

IsNotSingular returns a boolean indicating whether the error is a not singular error.

func IsValidationError

func IsValidationError(err error) bool

IsValidationError returns a boolean indicating whether the error is a validation error.

func MaskNotFound

func MaskNotFound(err error) error

MaskNotFound masks not found error.

func NewContext

func NewContext(parent context.Context, c *Client) context.Context

NewContext returns a new context with the given Client attached.

func NewTxContext

func NewTxContext(parent context.Context, tx *Tx) context.Context

NewTxContext returns a new context with the given Tx attached.

Types

type AggregateFunc

type AggregateFunc func(*sql.Selector) string

AggregateFunc applies an aggregation step on the group-by traversal/selector.

func As

As is a pseudo aggregation function for renaming another other functions with custom names. For example:

GroupBy(field1, field2).
Aggregate(ent.As(ent.Sum(field1), "sum_field1"), (ent.As(ent.Sum(field2), "sum_field2")).
Scan(ctx, &v)

func Count

func Count() AggregateFunc

Count applies the "count" aggregation function on each group.

func Max

func Max(field string) AggregateFunc

Max applies the "max" aggregation function on the given field of each group.

func Mean

func Mean(field string) AggregateFunc

Mean applies the "mean" aggregation function on the given field of each group.

func Min

func Min(field string) AggregateFunc

Min applies the "min" aggregation function on the given field of each group.

func Sum

func Sum(field string) AggregateFunc

Sum applies the "sum" aggregation function on the given field of each group.

type Client

type Client struct {

	// Schema is the client for creating, migrating and dropping schema.
	Schema *migrate.Schema
	// History is the client for interacting with the History builders.
	History *HistoryClient
	// Meta is the client for interacting with the Meta builders.
	Meta *MetaClient
	// Tag is the client for interacting with the Tag builders.
	Tag *TagClient
	// User is the client for interacting with the User builders.
	User *UserClient
	// contains filtered or unexported fields
}

Client is the client that holds all ent builders.

func FromContext

func FromContext(ctx context.Context) *Client

FromContext returns a Client stored inside a context, or nil if there isn't one.

func NewClient

func NewClient(opts ...Option) *Client

NewClient creates a new client configured with the given options.

func Open

func Open(driverName, dataSourceName string, options ...Option) (*Client, error)

Open opens a database/sql.DB specified by the driver name and the data source name, and returns a new client attached to it. Optional parameters can be added for configuring the client.

func (*Client) BeginTx

func (c *Client) BeginTx(ctx context.Context, opts *sql.TxOptions) (*Tx, error)

BeginTx returns a transactional client with specified options.

func (*Client) Close

func (c *Client) Close() error

Close closes the database connection and prevents new queries from starting.

func (*Client) Debug

func (c *Client) Debug() *Client

Debug returns a new debug-client. It's used to get verbose logging on specific operations.

client.Debug().
	History.
	Query().
	Count(ctx)

func (*Client) Intercept

func (c *Client) Intercept(interceptors ...Interceptor)

Intercept adds the query interceptors to all the entity clients. In order to add interceptors to a specific client, call: `client.Node.Intercept(...)`.

func (*Client) Mutate

func (c *Client) Mutate(ctx context.Context, m Mutation) (Value, error)

Mutate implements the ent.Mutator interface.

func (*Client) Tx

func (c *Client) Tx(ctx context.Context) (*Tx, error)

Tx returns a new transactional client. The provided context is used until the transaction is committed or rolled back.

func (*Client) Use

func (c *Client) Use(hooks ...Hook)

Use adds the mutation hooks to all the entity clients. In order to add hooks to a specific client, call: `client.Node.Use(...)`.

type CommitFunc

type CommitFunc func(context.Context, *Tx) error

The CommitFunc type is an adapter to allow the use of ordinary function as a Committer. If f is a function with the appropriate signature, CommitFunc(f) is a Committer that calls f.

func (CommitFunc) Commit

func (f CommitFunc) Commit(ctx context.Context, tx *Tx) error

Commit calls f(ctx, m).

type CommitHook

type CommitHook func(Committer) Committer

CommitHook defines the "commit middleware". A function that gets a Committer and returns a Committer. For example:

hook := func(next ent.Committer) ent.Committer {
	return ent.CommitFunc(func(ctx context.Context, tx *ent.Tx) error {
		// Do some stuff before.
		if err := next.Commit(ctx, tx); err != nil {
			return err
		}
		// Do some stuff after.
		return nil
	})
}

type Committer

type Committer interface {
	Commit(context.Context, *Tx) error
}

Committer is the interface that wraps the Commit method.

type ConstraintError

type ConstraintError struct {
	// contains filtered or unexported fields
}

ConstraintError returns when trying to create/update one or more entities and one or more of their constraints failed. For example, violation of edge or field uniqueness.

func (ConstraintError) Error

func (e ConstraintError) Error() string

Error implements the error interface.

func (*ConstraintError) Unwrap

func (e *ConstraintError) Unwrap() error

Unwrap implements the errors.Wrapper interface.

type Histories

type Histories []*History

Histories is a parsable slice of History.

type History

type History struct {

	// ID of the ent.
	ID int `json:"id,omitempty"`
	// CreateTime holds the value of the "create_time" field.
	CreateTime time.Time `json:"create_time,omitempty"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the HistoryQuery when eager-loading is set.
	Edges HistoryEdges `json:"edges"`
	// contains filtered or unexported fields
}

History is the model entity for the History schema.

func (*History) QueryItem

func (h *History) QueryItem() *MetaQuery

QueryItem queries the "item" edge of the History entity.

func (*History) QueryUser

func (h *History) QueryUser() *UserQuery

QueryUser queries the "user" edge of the History entity.

func (*History) String

func (h *History) String() string

String implements the fmt.Stringer.

func (*History) Unwrap

func (h *History) Unwrap() *History

Unwrap unwraps the History entity that was returned from a transaction after it was closed, so that all future queries will be executed through the driver which created the transaction.

func (*History) Update

func (h *History) Update() *HistoryUpdateOne

Update returns a builder for updating this History. Note that you need to call History.Unwrap() before calling this method if this History was returned from a transaction, and the transaction was committed or rolled back.

func (*History) Value

func (h *History) Value(name string) (ent.Value, error)

Value returns the ent.Value that was dynamically selected and assigned to the History. This includes values selected through modifiers, order, etc.

type HistoryClient

type HistoryClient struct {
	// contains filtered or unexported fields
}

HistoryClient is a client for the History schema.

func NewHistoryClient

func NewHistoryClient(c config) *HistoryClient

NewHistoryClient returns a client for the History from the given config.

func (*HistoryClient) Create

func (c *HistoryClient) Create() *HistoryCreate

Create returns a builder for creating a History entity.

func (*HistoryClient) CreateBulk

func (c *HistoryClient) CreateBulk(builders ...*HistoryCreate) *HistoryCreateBulk

CreateBulk returns a builder for creating a bulk of History entities.

func (*HistoryClient) Delete

func (c *HistoryClient) Delete() *HistoryDelete

Delete returns a delete builder for History.

func (*HistoryClient) DeleteOne

func (c *HistoryClient) DeleteOne(h *History) *HistoryDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*HistoryClient) DeleteOneID

func (c *HistoryClient) DeleteOneID(id int) *HistoryDeleteOne

DeleteOneID returns a builder for deleting the given entity by its id.

func (*HistoryClient) Get

func (c *HistoryClient) Get(ctx context.Context, id int) (*History, error)

Get returns a History entity by its id.

func (*HistoryClient) GetX

func (c *HistoryClient) GetX(ctx context.Context, id int) *History

GetX is like Get, but panics if an error occurs.

func (*HistoryClient) Hooks

func (c *HistoryClient) Hooks() []Hook

Hooks returns the client hooks.

func (*HistoryClient) Intercept

func (c *HistoryClient) Intercept(interceptors ...Interceptor)

Intercept adds a list of query interceptors to the interceptors stack. A call to `Intercept(f, g, h)` equals to `history.Intercept(f(g(h())))`.

func (*HistoryClient) Interceptors

func (c *HistoryClient) Interceptors() []Interceptor

Interceptors returns the client interceptors.

func (*HistoryClient) MapCreateBulk

func (c *HistoryClient) MapCreateBulk(slice any, setFunc func(*HistoryCreate, int)) *HistoryCreateBulk

MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates a builder and applies setFunc on it.

func (*HistoryClient) Query

func (c *HistoryClient) Query() *HistoryQuery

Query returns a query builder for History.

func (*HistoryClient) QueryItem

func (c *HistoryClient) QueryItem(h *History) *MetaQuery

QueryItem queries the item edge of a History.

func (*HistoryClient) QueryUser

func (c *HistoryClient) QueryUser(h *History) *UserQuery

QueryUser queries the user edge of a History.

func (*HistoryClient) Update

func (c *HistoryClient) Update() *HistoryUpdate

Update returns an update builder for History.

func (*HistoryClient) UpdateOne

func (c *HistoryClient) UpdateOne(h *History) *HistoryUpdateOne

UpdateOne returns an update builder for the given entity.

func (*HistoryClient) UpdateOneID

func (c *HistoryClient) UpdateOneID(id int) *HistoryUpdateOne

UpdateOneID returns an update builder for the given id.

func (*HistoryClient) Use

func (c *HistoryClient) Use(hooks ...Hook)

Use adds a list of mutation hooks to the hooks stack. A call to `Use(f, g, h)` equals to `history.Hooks(f(g(h())))`.

type HistoryCreate

type HistoryCreate struct {
	// contains filtered or unexported fields
}

HistoryCreate is the builder for creating a History entity.

func (*HistoryCreate) Exec

func (hc *HistoryCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*HistoryCreate) ExecX

func (hc *HistoryCreate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*HistoryCreate) Mutation

func (hc *HistoryCreate) Mutation() *HistoryMutation

Mutation returns the HistoryMutation object of the builder.

func (*HistoryCreate) OnConflict

func (hc *HistoryCreate) OnConflict(opts ...sql.ConflictOption) *HistoryUpsertOne

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.History.Create().
	SetCreateTime(v).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.HistoryUpsert) {
		SetCreateTime(v+v).
	}).
	Exec(ctx)

func (*HistoryCreate) OnConflictColumns

func (hc *HistoryCreate) OnConflictColumns(columns ...string) *HistoryUpsertOne

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.History.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*HistoryCreate) Save

func (hc *HistoryCreate) Save(ctx context.Context) (*History, error)

Save creates the History in the database.

func (*HistoryCreate) SaveX

func (hc *HistoryCreate) SaveX(ctx context.Context) *History

SaveX calls Save and panics if Save returns an error.

func (*HistoryCreate) SetCreateTime

func (hc *HistoryCreate) SetCreateTime(t time.Time) *HistoryCreate

SetCreateTime sets the "create_time" field.

func (*HistoryCreate) SetItem

func (hc *HistoryCreate) SetItem(m *Meta) *HistoryCreate

SetItem sets the "item" edge to the Meta entity.

func (*HistoryCreate) SetItemID

func (hc *HistoryCreate) SetItemID(id int) *HistoryCreate

SetItemID sets the "item" edge to the Meta entity by ID.

func (*HistoryCreate) SetNillableCreateTime

func (hc *HistoryCreate) SetNillableCreateTime(t *time.Time) *HistoryCreate

SetNillableCreateTime sets the "create_time" field if the given value is not nil.

func (*HistoryCreate) SetNillableItemID

func (hc *HistoryCreate) SetNillableItemID(id *int) *HistoryCreate

SetNillableItemID sets the "item" edge to the Meta entity by ID if the given value is not nil.

func (*HistoryCreate) SetNillableUserID

func (hc *HistoryCreate) SetNillableUserID(id *int) *HistoryCreate

SetNillableUserID sets the "user" edge to the User entity by ID if the given value is not nil.

func (*HistoryCreate) SetUser

func (hc *HistoryCreate) SetUser(u *User) *HistoryCreate

SetUser sets the "user" edge to the User entity.

func (*HistoryCreate) SetUserID

func (hc *HistoryCreate) SetUserID(id int) *HistoryCreate

SetUserID sets the "user" edge to the User entity by ID.

type HistoryCreateBulk

type HistoryCreateBulk struct {
	// contains filtered or unexported fields
}

HistoryCreateBulk is the builder for creating many History entities in bulk.

func (*HistoryCreateBulk) Exec

func (hcb *HistoryCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*HistoryCreateBulk) ExecX

func (hcb *HistoryCreateBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*HistoryCreateBulk) OnConflict

func (hcb *HistoryCreateBulk) OnConflict(opts ...sql.ConflictOption) *HistoryUpsertBulk

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.History.CreateBulk(builders...).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.HistoryUpsert) {
		SetCreateTime(v+v).
	}).
	Exec(ctx)

func (*HistoryCreateBulk) OnConflictColumns

func (hcb *HistoryCreateBulk) OnConflictColumns(columns ...string) *HistoryUpsertBulk

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.History.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*HistoryCreateBulk) Save

func (hcb *HistoryCreateBulk) Save(ctx context.Context) ([]*History, error)

Save creates the History entities in the database.

func (*HistoryCreateBulk) SaveX

func (hcb *HistoryCreateBulk) SaveX(ctx context.Context) []*History

SaveX is like Save, but panics if an error occurs.

type HistoryDelete

type HistoryDelete struct {
	// contains filtered or unexported fields
}

HistoryDelete is the builder for deleting a History entity.

func (*HistoryDelete) Exec

func (hd *HistoryDelete) Exec(ctx context.Context) (int, error)

Exec executes the deletion query and returns how many vertices were deleted.

func (*HistoryDelete) ExecX

func (hd *HistoryDelete) ExecX(ctx context.Context) int

ExecX is like Exec, but panics if an error occurs.

func (*HistoryDelete) Where

func (hd *HistoryDelete) Where(ps ...predicate.History) *HistoryDelete

Where appends a list predicates to the HistoryDelete builder.

type HistoryDeleteOne

type HistoryDeleteOne struct {
	// contains filtered or unexported fields
}

HistoryDeleteOne is the builder for deleting a single History entity.

func (*HistoryDeleteOne) Exec

func (hdo *HistoryDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*HistoryDeleteOne) ExecX

func (hdo *HistoryDeleteOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*HistoryDeleteOne) Where

Where appends a list predicates to the HistoryDelete builder.

type HistoryEdges

type HistoryEdges struct {
	// Item holds the value of the item edge.
	Item *Meta `json:"item,omitempty"`
	// User holds the value of the user edge.
	User *User `json:"user,omitempty"`
	// contains filtered or unexported fields
}

HistoryEdges holds the relations/edges for other nodes in the graph.

func (HistoryEdges) ItemOrErr

func (e HistoryEdges) ItemOrErr() (*Meta, error)

ItemOrErr returns the Item value or an error if the edge was not loaded in eager-loading, or loaded but was not found.

func (HistoryEdges) UserOrErr

func (e HistoryEdges) UserOrErr() (*User, error)

UserOrErr returns the User value or an error if the edge was not loaded in eager-loading, or loaded but was not found.

type HistoryGroupBy

type HistoryGroupBy struct {
	// contains filtered or unexported fields
}

HistoryGroupBy is the group-by builder for History entities.

func (*HistoryGroupBy) Aggregate

func (hgb *HistoryGroupBy) Aggregate(fns ...AggregateFunc) *HistoryGroupBy

Aggregate adds the given aggregation functions to the group-by query.

func (*HistoryGroupBy) Bool

func (s *HistoryGroupBy) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) BoolX

func (s *HistoryGroupBy) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*HistoryGroupBy) Bools

func (s *HistoryGroupBy) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) BoolsX

func (s *HistoryGroupBy) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*HistoryGroupBy) Float64

func (s *HistoryGroupBy) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) Float64X

func (s *HistoryGroupBy) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*HistoryGroupBy) Float64s

func (s *HistoryGroupBy) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) Float64sX

func (s *HistoryGroupBy) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*HistoryGroupBy) Int

func (s *HistoryGroupBy) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) IntX

func (s *HistoryGroupBy) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*HistoryGroupBy) Ints

func (s *HistoryGroupBy) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) IntsX

func (s *HistoryGroupBy) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*HistoryGroupBy) Scan

func (hgb *HistoryGroupBy) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*HistoryGroupBy) ScanX

func (s *HistoryGroupBy) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*HistoryGroupBy) String

func (s *HistoryGroupBy) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) StringX

func (s *HistoryGroupBy) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*HistoryGroupBy) Strings

func (s *HistoryGroupBy) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*HistoryGroupBy) StringsX

func (s *HistoryGroupBy) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type HistoryMutation

type HistoryMutation struct {
	// contains filtered or unexported fields
}

HistoryMutation represents an operation that mutates the History nodes in the graph.

func (*HistoryMutation) AddField

func (m *HistoryMutation) AddField(name string, value ent.Value) error

AddField adds the value to the field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*HistoryMutation) AddedEdges

func (m *HistoryMutation) AddedEdges() []string

AddedEdges returns all edge names that were set/added in this mutation.

func (*HistoryMutation) AddedField

func (m *HistoryMutation) AddedField(name string) (ent.Value, bool)

AddedField returns the numeric value that was incremented/decremented on a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*HistoryMutation) AddedFields

func (m *HistoryMutation) AddedFields() []string

AddedFields returns all numeric fields that were incremented/decremented during this mutation.

func (*HistoryMutation) AddedIDs

func (m *HistoryMutation) AddedIDs(name string) []ent.Value

AddedIDs returns all IDs (to other nodes) that were added for the given edge name in this mutation.

func (*HistoryMutation) ClearEdge

func (m *HistoryMutation) ClearEdge(name string) error

ClearEdge clears the value of the edge with the given name. It returns an error if that edge is not defined in the schema.

func (*HistoryMutation) ClearField

func (m *HistoryMutation) ClearField(name string) error

ClearField clears the value of the field with the given name. It returns an error if the field is not defined in the schema.

func (*HistoryMutation) ClearItem

func (m *HistoryMutation) ClearItem()

ClearItem clears the "item" edge to the Meta entity.

func (*HistoryMutation) ClearUser

func (m *HistoryMutation) ClearUser()

ClearUser clears the "user" edge to the User entity.

func (*HistoryMutation) ClearedEdges

func (m *HistoryMutation) ClearedEdges() []string

ClearedEdges returns all edge names that were cleared in this mutation.

func (*HistoryMutation) ClearedFields

func (m *HistoryMutation) ClearedFields() []string

ClearedFields returns all nullable fields that were cleared during this mutation.

func (HistoryMutation) Client

func (m HistoryMutation) Client() *Client

Client returns a new `ent.Client` from the mutation. If the mutation was executed in a transaction (ent.Tx), a transactional client is returned.

func (*HistoryMutation) CreateTime

func (m *HistoryMutation) CreateTime() (r time.Time, exists bool)

CreateTime returns the value of the "create_time" field in the mutation.

func (*HistoryMutation) EdgeCleared

func (m *HistoryMutation) EdgeCleared(name string) bool

EdgeCleared returns a boolean which indicates if the edge with the given name was cleared in this mutation.

func (*HistoryMutation) Field

func (m *HistoryMutation) Field(name string) (ent.Value, bool)

Field returns the value of a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*HistoryMutation) FieldCleared

func (m *HistoryMutation) FieldCleared(name string) bool

FieldCleared returns a boolean indicating if a field with the given name was cleared in this mutation.

func (*HistoryMutation) Fields

func (m *HistoryMutation) Fields() []string

Fields returns all fields that were changed during this mutation. Note that in order to get all numeric fields that were incremented/decremented, call AddedFields().

func (*HistoryMutation) ID

func (m *HistoryMutation) ID() (id int, exists bool)

ID returns the ID value in the mutation. Note that the ID is only available if it was provided to the builder or after it was returned from the database.

func (*HistoryMutation) IDs

func (m *HistoryMutation) IDs(ctx context.Context) ([]int, error)

IDs queries the database and returns the entity ids that match the mutation's predicate. That means, if the mutation is applied within a transaction with an isolation level such as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated or updated by the mutation.

func (*HistoryMutation) ItemCleared

func (m *HistoryMutation) ItemCleared() bool

ItemCleared reports if the "item" edge to the Meta entity was cleared.

func (*HistoryMutation) ItemID

func (m *HistoryMutation) ItemID() (id int, exists bool)

ItemID returns the "item" edge ID in the mutation.

func (*HistoryMutation) ItemIDs

func (m *HistoryMutation) ItemIDs() (ids []int)

ItemIDs returns the "item" edge IDs in the mutation. Note that IDs always returns len(IDs) <= 1 for unique edges, and you should use ItemID instead. It exists only for internal usage by the builders.

func (*HistoryMutation) OldCreateTime

func (m *HistoryMutation) OldCreateTime(ctx context.Context) (v time.Time, err error)

OldCreateTime returns the old "create_time" field's value of the History entity. If the History object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*HistoryMutation) OldField

func (m *HistoryMutation) OldField(ctx context.Context, name string) (ent.Value, error)

OldField returns the old value of the field from the database. An error is returned if the mutation operation is not UpdateOne, or the query to the database failed.

func (*HistoryMutation) Op

func (m *HistoryMutation) Op() Op

Op returns the operation name.

func (*HistoryMutation) RemovedEdges

func (m *HistoryMutation) RemovedEdges() []string

RemovedEdges returns all edge names that were removed in this mutation.

func (*HistoryMutation) RemovedIDs

func (m *HistoryMutation) RemovedIDs(name string) []ent.Value

RemovedIDs returns all IDs (to other nodes) that were removed for the edge with the given name in this mutation.

func (*HistoryMutation) ResetCreateTime

func (m *HistoryMutation) ResetCreateTime()

ResetCreateTime resets all changes to the "create_time" field.

func (*HistoryMutation) ResetEdge

func (m *HistoryMutation) ResetEdge(name string) error

ResetEdge resets all changes to the edge with the given name in this mutation. It returns an error if the edge is not defined in the schema.

func (*HistoryMutation) ResetField

func (m *HistoryMutation) ResetField(name string) error

ResetField resets all changes in the mutation for the field with the given name. It returns an error if the field is not defined in the schema.

func (*HistoryMutation) ResetItem

func (m *HistoryMutation) ResetItem()

ResetItem resets all changes to the "item" edge.

func (*HistoryMutation) ResetUser

func (m *HistoryMutation) ResetUser()

ResetUser resets all changes to the "user" edge.

func (*HistoryMutation) SetCreateTime

func (m *HistoryMutation) SetCreateTime(t time.Time)

SetCreateTime sets the "create_time" field.

func (*HistoryMutation) SetField

func (m *HistoryMutation) SetField(name string, value ent.Value) error

SetField sets the value of a field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*HistoryMutation) SetItemID

func (m *HistoryMutation) SetItemID(id int)

SetItemID sets the "item" edge to the Meta entity by id.

func (*HistoryMutation) SetOp

func (m *HistoryMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*HistoryMutation) SetUserID

func (m *HistoryMutation) SetUserID(id int)

SetUserID sets the "user" edge to the User entity by id.

func (HistoryMutation) Tx

func (m HistoryMutation) Tx() (*Tx, error)

Tx returns an `ent.Tx` for mutations that were executed in transactions; it returns an error otherwise.

func (*HistoryMutation) Type

func (m *HistoryMutation) Type() string

Type returns the node type of this mutation (History).

func (*HistoryMutation) UserCleared

func (m *HistoryMutation) UserCleared() bool

UserCleared reports if the "user" edge to the User entity was cleared.

func (*HistoryMutation) UserID

func (m *HistoryMutation) UserID() (id int, exists bool)

UserID returns the "user" edge ID in the mutation.

func (*HistoryMutation) UserIDs

func (m *HistoryMutation) UserIDs() (ids []int)

UserIDs returns the "user" edge IDs in the mutation. Note that IDs always returns len(IDs) <= 1 for unique edges, and you should use UserID instead. It exists only for internal usage by the builders.

func (*HistoryMutation) Where

func (m *HistoryMutation) Where(ps ...predicate.History)

Where appends a list predicates to the HistoryMutation builder.

func (*HistoryMutation) WhereP

func (m *HistoryMutation) WhereP(ps ...func(*sql.Selector))

WhereP appends storage-level predicates to the HistoryMutation builder. Using this method, users can use type-assertion to append predicates that do not depend on any generated package.

type HistoryQuery

type HistoryQuery struct {
	// contains filtered or unexported fields
}

HistoryQuery is the builder for querying History entities.

func (*HistoryQuery) Aggregate

func (hq *HistoryQuery) Aggregate(fns ...AggregateFunc) *HistorySelect

Aggregate returns a HistorySelect configured with the given aggregations.

func (*HistoryQuery) All

func (hq *HistoryQuery) All(ctx context.Context) ([]*History, error)

All executes the query and returns a list of Histories.

func (*HistoryQuery) AllX

func (hq *HistoryQuery) AllX(ctx context.Context) []*History

AllX is like All, but panics if an error occurs.

func (*HistoryQuery) Clone

func (hq *HistoryQuery) Clone() *HistoryQuery

Clone returns a duplicate of the HistoryQuery builder, including all associated steps. It can be used to prepare common query builders and use them differently after the clone is made.

func (*HistoryQuery) Count

func (hq *HistoryQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*HistoryQuery) CountX

func (hq *HistoryQuery) CountX(ctx context.Context) int

CountX is like Count, but panics if an error occurs.

func (*HistoryQuery) Exist

func (hq *HistoryQuery) Exist(ctx context.Context) (bool, error)

Exist returns true if the query has elements in the graph.

func (*HistoryQuery) ExistX

func (hq *HistoryQuery) ExistX(ctx context.Context) bool

ExistX is like Exist, but panics if an error occurs.

func (*HistoryQuery) First

func (hq *HistoryQuery) First(ctx context.Context) (*History, error)

First returns the first History entity from the query. Returns a *NotFoundError when no History was found.

func (*HistoryQuery) FirstID

func (hq *HistoryQuery) FirstID(ctx context.Context) (id int, err error)

FirstID returns the first History ID from the query. Returns a *NotFoundError when no History ID was found.

func (*HistoryQuery) FirstIDX

func (hq *HistoryQuery) FirstIDX(ctx context.Context) int

FirstIDX is like FirstID, but panics if an error occurs.

func (*HistoryQuery) FirstX

func (hq *HistoryQuery) FirstX(ctx context.Context) *History

FirstX is like First, but panics if an error occurs.

func (*HistoryQuery) GroupBy

func (hq *HistoryQuery) GroupBy(field string, fields ...string) *HistoryGroupBy

GroupBy is used to group vertices by one or more fields/columns. It is often used with aggregate functions, like: count, max, mean, min, sum.

Example:

var v []struct {
	CreateTime time.Time `json:"create_time,omitempty"`
	Count int `json:"count,omitempty"`
}

client.History.Query().
	GroupBy(history.FieldCreateTime).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*HistoryQuery) IDs

func (hq *HistoryQuery) IDs(ctx context.Context) (ids []int, err error)

IDs executes the query and returns a list of History IDs.

func (*HistoryQuery) IDsX

func (hq *HistoryQuery) IDsX(ctx context.Context) []int

IDsX is like IDs, but panics if an error occurs.

func (*HistoryQuery) Limit

func (hq *HistoryQuery) Limit(limit int) *HistoryQuery

Limit the number of records to be returned by this query.

func (*HistoryQuery) Offset

func (hq *HistoryQuery) Offset(offset int) *HistoryQuery

Offset to start from.

func (*HistoryQuery) Only

func (hq *HistoryQuery) Only(ctx context.Context) (*History, error)

Only returns a single History entity found by the query, ensuring it only returns one. Returns a *NotSingularError when more than one History entity is found. Returns a *NotFoundError when no History entities are found.

func (*HistoryQuery) OnlyID

func (hq *HistoryQuery) OnlyID(ctx context.Context) (id int, err error)

OnlyID is like Only, but returns the only History ID in the query. Returns a *NotSingularError when more than one History ID is found. Returns a *NotFoundError when no entities are found.

func (*HistoryQuery) OnlyIDX

func (hq *HistoryQuery) OnlyIDX(ctx context.Context) int

OnlyIDX is like OnlyID, but panics if an error occurs.

func (*HistoryQuery) OnlyX

func (hq *HistoryQuery) OnlyX(ctx context.Context) *History

OnlyX is like Only, but panics if an error occurs.

func (*HistoryQuery) Order

func (hq *HistoryQuery) Order(o ...history.OrderOption) *HistoryQuery

Order specifies how the records should be ordered.

func (*HistoryQuery) QueryItem

func (hq *HistoryQuery) QueryItem() *MetaQuery

QueryItem chains the current query on the "item" edge.

func (*HistoryQuery) QueryUser

func (hq *HistoryQuery) QueryUser() *UserQuery

QueryUser chains the current query on the "user" edge.

func (*HistoryQuery) Select

func (hq *HistoryQuery) Select(fields ...string) *HistorySelect

Select allows the selection one or more fields/columns for the given query, instead of selecting all fields in the entity.

Example:

var v []struct {
	CreateTime time.Time `json:"create_time,omitempty"`
}

client.History.Query().
	Select(history.FieldCreateTime).
	Scan(ctx, &v)

func (*HistoryQuery) Unique

func (hq *HistoryQuery) Unique(unique bool) *HistoryQuery

Unique configures the query builder to filter duplicate records on query. By default, unique is set to true, and can be disabled using this method.

func (*HistoryQuery) Where

func (hq *HistoryQuery) Where(ps ...predicate.History) *HistoryQuery

Where adds a new predicate for the HistoryQuery builder.

func (*HistoryQuery) WithItem

func (hq *HistoryQuery) WithItem(opts ...func(*MetaQuery)) *HistoryQuery

WithItem tells the query-builder to eager-load the nodes that are connected to the "item" edge. The optional arguments are used to configure the query builder of the edge.

func (*HistoryQuery) WithUser

func (hq *HistoryQuery) WithUser(opts ...func(*UserQuery)) *HistoryQuery

WithUser tells the query-builder to eager-load the nodes that are connected to the "user" edge. The optional arguments are used to configure the query builder of the edge.

type HistorySelect

type HistorySelect struct {
	*HistoryQuery
	// contains filtered or unexported fields
}

HistorySelect is the builder for selecting fields of History entities.

func (*HistorySelect) Aggregate

func (hs *HistorySelect) Aggregate(fns ...AggregateFunc) *HistorySelect

Aggregate adds the given aggregation functions to the selector query.

func (*HistorySelect) Bool

func (s *HistorySelect) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*HistorySelect) BoolX

func (s *HistorySelect) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*HistorySelect) Bools

func (s *HistorySelect) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*HistorySelect) BoolsX

func (s *HistorySelect) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*HistorySelect) Float64

func (s *HistorySelect) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*HistorySelect) Float64X

func (s *HistorySelect) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*HistorySelect) Float64s

func (s *HistorySelect) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*HistorySelect) Float64sX

func (s *HistorySelect) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*HistorySelect) Int

func (s *HistorySelect) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*HistorySelect) IntX

func (s *HistorySelect) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*HistorySelect) Ints

func (s *HistorySelect) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*HistorySelect) IntsX

func (s *HistorySelect) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*HistorySelect) Scan

func (hs *HistorySelect) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*HistorySelect) ScanX

func (s *HistorySelect) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*HistorySelect) String

func (s *HistorySelect) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*HistorySelect) StringX

func (s *HistorySelect) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*HistorySelect) Strings

func (s *HistorySelect) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*HistorySelect) StringsX

func (s *HistorySelect) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type HistoryUpdate

type HistoryUpdate struct {
	// contains filtered or unexported fields
}

HistoryUpdate is the builder for updating History entities.

func (*HistoryUpdate) ClearItem

func (hu *HistoryUpdate) ClearItem() *HistoryUpdate

ClearItem clears the "item" edge to the Meta entity.

func (*HistoryUpdate) ClearUser

func (hu *HistoryUpdate) ClearUser() *HistoryUpdate

ClearUser clears the "user" edge to the User entity.

func (*HistoryUpdate) Exec

func (hu *HistoryUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*HistoryUpdate) ExecX

func (hu *HistoryUpdate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*HistoryUpdate) Mutation

func (hu *HistoryUpdate) Mutation() *HistoryMutation

Mutation returns the HistoryMutation object of the builder.

func (*HistoryUpdate) Save

func (hu *HistoryUpdate) Save(ctx context.Context) (int, error)

Save executes the query and returns the number of nodes affected by the update operation.

func (*HistoryUpdate) SaveX

func (hu *HistoryUpdate) SaveX(ctx context.Context) int

SaveX is like Save, but panics if an error occurs.

func (*HistoryUpdate) SetCreateTime

func (hu *HistoryUpdate) SetCreateTime(t time.Time) *HistoryUpdate

SetCreateTime sets the "create_time" field.

func (*HistoryUpdate) SetItem

func (hu *HistoryUpdate) SetItem(m *Meta) *HistoryUpdate

SetItem sets the "item" edge to the Meta entity.

func (*HistoryUpdate) SetItemID

func (hu *HistoryUpdate) SetItemID(id int) *HistoryUpdate

SetItemID sets the "item" edge to the Meta entity by ID.

func (*HistoryUpdate) SetNillableCreateTime

func (hu *HistoryUpdate) SetNillableCreateTime(t *time.Time) *HistoryUpdate

SetNillableCreateTime sets the "create_time" field if the given value is not nil.

func (*HistoryUpdate) SetNillableItemID

func (hu *HistoryUpdate) SetNillableItemID(id *int) *HistoryUpdate

SetNillableItemID sets the "item" edge to the Meta entity by ID if the given value is not nil.

func (*HistoryUpdate) SetNillableUserID

func (hu *HistoryUpdate) SetNillableUserID(id *int) *HistoryUpdate

SetNillableUserID sets the "user" edge to the User entity by ID if the given value is not nil.

func (*HistoryUpdate) SetUser

func (hu *HistoryUpdate) SetUser(u *User) *HistoryUpdate

SetUser sets the "user" edge to the User entity.

func (*HistoryUpdate) SetUserID

func (hu *HistoryUpdate) SetUserID(id int) *HistoryUpdate

SetUserID sets the "user" edge to the User entity by ID.

func (*HistoryUpdate) Where

func (hu *HistoryUpdate) Where(ps ...predicate.History) *HistoryUpdate

Where appends a list predicates to the HistoryUpdate builder.

type HistoryUpdateOne

type HistoryUpdateOne struct {
	// contains filtered or unexported fields
}

HistoryUpdateOne is the builder for updating a single History entity.

func (*HistoryUpdateOne) ClearItem

func (huo *HistoryUpdateOne) ClearItem() *HistoryUpdateOne

ClearItem clears the "item" edge to the Meta entity.

func (*HistoryUpdateOne) ClearUser

func (huo *HistoryUpdateOne) ClearUser() *HistoryUpdateOne

ClearUser clears the "user" edge to the User entity.

func (*HistoryUpdateOne) Exec

func (huo *HistoryUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*HistoryUpdateOne) ExecX

func (huo *HistoryUpdateOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*HistoryUpdateOne) Mutation

func (huo *HistoryUpdateOne) Mutation() *HistoryMutation

Mutation returns the HistoryMutation object of the builder.

func (*HistoryUpdateOne) Save

func (huo *HistoryUpdateOne) Save(ctx context.Context) (*History, error)

Save executes the query and returns the updated History entity.

func (*HistoryUpdateOne) SaveX

func (huo *HistoryUpdateOne) SaveX(ctx context.Context) *History

SaveX is like Save, but panics if an error occurs.

func (*HistoryUpdateOne) Select

func (huo *HistoryUpdateOne) Select(field string, fields ...string) *HistoryUpdateOne

Select allows selecting one or more fields (columns) of the returned entity. The default is selecting all fields defined in the entity schema.

func (*HistoryUpdateOne) SetCreateTime

func (huo *HistoryUpdateOne) SetCreateTime(t time.Time) *HistoryUpdateOne

SetCreateTime sets the "create_time" field.

func (*HistoryUpdateOne) SetItem

func (huo *HistoryUpdateOne) SetItem(m *Meta) *HistoryUpdateOne

SetItem sets the "item" edge to the Meta entity.

func (*HistoryUpdateOne) SetItemID

func (huo *HistoryUpdateOne) SetItemID(id int) *HistoryUpdateOne

SetItemID sets the "item" edge to the Meta entity by ID.

func (*HistoryUpdateOne) SetNillableCreateTime

func (huo *HistoryUpdateOne) SetNillableCreateTime(t *time.Time) *HistoryUpdateOne

SetNillableCreateTime sets the "create_time" field if the given value is not nil.

func (*HistoryUpdateOne) SetNillableItemID

func (huo *HistoryUpdateOne) SetNillableItemID(id *int) *HistoryUpdateOne

SetNillableItemID sets the "item" edge to the Meta entity by ID if the given value is not nil.

func (*HistoryUpdateOne) SetNillableUserID

func (huo *HistoryUpdateOne) SetNillableUserID(id *int) *HistoryUpdateOne

SetNillableUserID sets the "user" edge to the User entity by ID if the given value is not nil.

func (*HistoryUpdateOne) SetUser

func (huo *HistoryUpdateOne) SetUser(u *User) *HistoryUpdateOne

SetUser sets the "user" edge to the User entity.

func (*HistoryUpdateOne) SetUserID

func (huo *HistoryUpdateOne) SetUserID(id int) *HistoryUpdateOne

SetUserID sets the "user" edge to the User entity by ID.

func (*HistoryUpdateOne) Where

Where appends a list predicates to the HistoryUpdate builder.

type HistoryUpsert

type HistoryUpsert struct {
	*sql.UpdateSet
}

HistoryUpsert is the "OnConflict" setter.

func (*HistoryUpsert) SetCreateTime

func (u *HistoryUpsert) SetCreateTime(v time.Time) *HistoryUpsert

SetCreateTime sets the "create_time" field.

func (*HistoryUpsert) UpdateCreateTime

func (u *HistoryUpsert) UpdateCreateTime() *HistoryUpsert

UpdateCreateTime sets the "create_time" field to the value that was provided on create.

type HistoryUpsertBulk

type HistoryUpsertBulk struct {
	// contains filtered or unexported fields
}

HistoryUpsertBulk is the builder for "upsert"-ing a bulk of History nodes.

func (*HistoryUpsertBulk) DoNothing

func (u *HistoryUpsertBulk) DoNothing() *HistoryUpsertBulk

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*HistoryUpsertBulk) Exec

func (u *HistoryUpsertBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*HistoryUpsertBulk) ExecX

func (u *HistoryUpsertBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*HistoryUpsertBulk) Ignore

func (u *HistoryUpsertBulk) Ignore() *HistoryUpsertBulk

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.History.Create().
	OnConflict(sql.ResolveWithIgnore()).
	Exec(ctx)

func (*HistoryUpsertBulk) SetCreateTime

func (u *HistoryUpsertBulk) SetCreateTime(v time.Time) *HistoryUpsertBulk

SetCreateTime sets the "create_time" field.

func (*HistoryUpsertBulk) Update

func (u *HistoryUpsertBulk) Update(set func(*HistoryUpsert)) *HistoryUpsertBulk

Update allows overriding fields `UPDATE` values. See the HistoryCreateBulk.OnConflict documentation for more info.

func (*HistoryUpsertBulk) UpdateCreateTime

func (u *HistoryUpsertBulk) UpdateCreateTime() *HistoryUpsertBulk

UpdateCreateTime sets the "create_time" field to the value that was provided on create.

func (*HistoryUpsertBulk) UpdateNewValues

func (u *HistoryUpsertBulk) UpdateNewValues() *HistoryUpsertBulk

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.History.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

type HistoryUpsertOne

type HistoryUpsertOne struct {
	// contains filtered or unexported fields
}

HistoryUpsertOne is the builder for "upsert"-ing

one History node.

func (*HistoryUpsertOne) DoNothing

func (u *HistoryUpsertOne) DoNothing() *HistoryUpsertOne

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*HistoryUpsertOne) Exec

func (u *HistoryUpsertOne) Exec(ctx context.Context) error

Exec executes the query.

func (*HistoryUpsertOne) ExecX

func (u *HistoryUpsertOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*HistoryUpsertOne) ID

func (u *HistoryUpsertOne) ID(ctx context.Context) (id int, err error)

Exec executes the UPSERT query and returns the inserted/updated ID.

func (*HistoryUpsertOne) IDX

func (u *HistoryUpsertOne) IDX(ctx context.Context) int

IDX is like ID, but panics if an error occurs.

func (*HistoryUpsertOne) Ignore

func (u *HistoryUpsertOne) Ignore() *HistoryUpsertOne

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.History.Create().
    OnConflict(sql.ResolveWithIgnore()).
    Exec(ctx)

func (*HistoryUpsertOne) SetCreateTime

func (u *HistoryUpsertOne) SetCreateTime(v time.Time) *HistoryUpsertOne

SetCreateTime sets the "create_time" field.

func (*HistoryUpsertOne) Update

func (u *HistoryUpsertOne) Update(set func(*HistoryUpsert)) *HistoryUpsertOne

Update allows overriding fields `UPDATE` values. See the HistoryCreate.OnConflict documentation for more info.

func (*HistoryUpsertOne) UpdateCreateTime

func (u *HistoryUpsertOne) UpdateCreateTime() *HistoryUpsertOne

UpdateCreateTime sets the "create_time" field to the value that was provided on create.

func (*HistoryUpsertOne) UpdateNewValues

func (u *HistoryUpsertOne) UpdateNewValues() *HistoryUpsertOne

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.History.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

type Hook

type Hook = ent.Hook

ent aliases to avoid import conflicts in user's code.

type InterceptFunc

type InterceptFunc = ent.InterceptFunc

ent aliases to avoid import conflicts in user's code.

type Interceptor

type Interceptor = ent.Interceptor

ent aliases to avoid import conflicts in user's code.

type Meta

type Meta struct {

	// ID of the ent.
	ID int `json:"id,omitempty"`
	// Name holds the value of the "name" field.
	Name string `json:"name,omitempty"`
	// CreateTime holds the value of the "create_time" field.
	CreateTime time.Time `json:"create_time,omitempty"`
	// Favorite holds the value of the "favorite" field.
	Favorite bool `json:"favorite,omitempty"`
	// FileIndices holds the value of the "file_indices" field.
	FileIndices []int `json:"file_indices,omitempty"`
	// Thumbnail holds the value of the "thumbnail" field.
	Thumbnail []byte `json:"-"`
	// Read holds the value of the "read" field.
	Read bool `json:"read,omitempty"`
	// Active holds the value of the "active" field.
	Active bool `json:"active,omitempty"`
	// ContainerType holds the value of the "container_type" field.
	ContainerType meta.ContainerType `json:"container_type,omitempty"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the MetaQuery when eager-loading is set.
	Edges MetaEdges `json:"edges"`
	// contains filtered or unexported fields
}

Meta is the model entity for the Meta schema.

func (*Meta) QueryHistories

func (m *Meta) QueryHistories() *HistoryQuery

QueryHistories queries the "histories" edge of the Meta entity.

func (*Meta) QueryTags

func (m *Meta) QueryTags() *TagQuery

QueryTags queries the "tags" edge of the Meta entity.

func (*Meta) QueryUser

func (m *Meta) QueryUser() *UserQuery

QueryUser queries the "user" edge of the Meta entity.

func (*Meta) String

func (m *Meta) String() string

String implements the fmt.Stringer.

func (*Meta) Unwrap

func (m *Meta) Unwrap() *Meta

Unwrap unwraps the Meta entity that was returned from a transaction after it was closed, so that all future queries will be executed through the driver which created the transaction.

func (*Meta) Update

func (m *Meta) Update() *MetaUpdateOne

Update returns a builder for updating this Meta. Note that you need to call Meta.Unwrap() before calling this method if this Meta was returned from a transaction, and the transaction was committed or rolled back.

func (*Meta) Value

func (m *Meta) Value(name string) (ent.Value, error)

Value returns the ent.Value that was dynamically selected and assigned to the Meta. This includes values selected through modifiers, order, etc.

type MetaClient

type MetaClient struct {
	// contains filtered or unexported fields
}

MetaClient is a client for the Meta schema.

func NewMetaClient

func NewMetaClient(c config) *MetaClient

NewMetaClient returns a client for the Meta from the given config.

func (*MetaClient) Create

func (c *MetaClient) Create() *MetaCreate

Create returns a builder for creating a Meta entity.

func (*MetaClient) CreateBulk

func (c *MetaClient) CreateBulk(builders ...*MetaCreate) *MetaCreateBulk

CreateBulk returns a builder for creating a bulk of Meta entities.

func (*MetaClient) Delete

func (c *MetaClient) Delete() *MetaDelete

Delete returns a delete builder for Meta.

func (*MetaClient) DeleteOne

func (c *MetaClient) DeleteOne(m *Meta) *MetaDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*MetaClient) DeleteOneID

func (c *MetaClient) DeleteOneID(id int) *MetaDeleteOne

DeleteOneID returns a builder for deleting the given entity by its id.

func (*MetaClient) Get

func (c *MetaClient) Get(ctx context.Context, id int) (*Meta, error)

Get returns a Meta entity by its id.

func (*MetaClient) GetX

func (c *MetaClient) GetX(ctx context.Context, id int) *Meta

GetX is like Get, but panics if an error occurs.

func (*MetaClient) Hooks

func (c *MetaClient) Hooks() []Hook

Hooks returns the client hooks.

func (*MetaClient) Intercept

func (c *MetaClient) Intercept(interceptors ...Interceptor)

Intercept adds a list of query interceptors to the interceptors stack. A call to `Intercept(f, g, h)` equals to `meta.Intercept(f(g(h())))`.

func (*MetaClient) Interceptors

func (c *MetaClient) Interceptors() []Interceptor

Interceptors returns the client interceptors.

func (*MetaClient) MapCreateBulk

func (c *MetaClient) MapCreateBulk(slice any, setFunc func(*MetaCreate, int)) *MetaCreateBulk

MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates a builder and applies setFunc on it.

func (*MetaClient) Query

func (c *MetaClient) Query() *MetaQuery

Query returns a query builder for Meta.

func (*MetaClient) QueryHistories

func (c *MetaClient) QueryHistories(m *Meta) *HistoryQuery

QueryHistories queries the histories edge of a Meta.

func (*MetaClient) QueryTags

func (c *MetaClient) QueryTags(m *Meta) *TagQuery

QueryTags queries the tags edge of a Meta.

func (*MetaClient) QueryUser

func (c *MetaClient) QueryUser(m *Meta) *UserQuery

QueryUser queries the user edge of a Meta.

func (*MetaClient) Update

func (c *MetaClient) Update() *MetaUpdate

Update returns an update builder for Meta.

func (*MetaClient) UpdateOne

func (c *MetaClient) UpdateOne(m *Meta) *MetaUpdateOne

UpdateOne returns an update builder for the given entity.

func (*MetaClient) UpdateOneID

func (c *MetaClient) UpdateOneID(id int) *MetaUpdateOne

UpdateOneID returns an update builder for the given id.

func (*MetaClient) Use

func (c *MetaClient) Use(hooks ...Hook)

Use adds a list of mutation hooks to the hooks stack. A call to `Use(f, g, h)` equals to `meta.Hooks(f(g(h())))`.

type MetaCreate

type MetaCreate struct {
	// contains filtered or unexported fields
}

MetaCreate is the builder for creating a Meta entity.

func (*MetaCreate) AddHistories

func (mc *MetaCreate) AddHistories(h ...*History) *MetaCreate

AddHistories adds the "histories" edges to the History entity.

func (*MetaCreate) AddHistoryIDs

func (mc *MetaCreate) AddHistoryIDs(ids ...int) *MetaCreate

AddHistoryIDs adds the "histories" edge to the History entity by IDs.

func (*MetaCreate) AddTagIDs

func (mc *MetaCreate) AddTagIDs(ids ...int) *MetaCreate

AddTagIDs adds the "tags" edge to the Tag entity by IDs.

func (*MetaCreate) AddTags

func (mc *MetaCreate) AddTags(t ...*Tag) *MetaCreate

AddTags adds the "tags" edges to the Tag entity.

func (*MetaCreate) AddUser

func (mc *MetaCreate) AddUser(u ...*User) *MetaCreate

AddUser adds the "user" edges to the User entity.

func (*MetaCreate) AddUserIDs

func (mc *MetaCreate) AddUserIDs(ids ...int) *MetaCreate

AddUserIDs adds the "user" edge to the User entity by IDs.

func (*MetaCreate) Exec

func (mc *MetaCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*MetaCreate) ExecX

func (mc *MetaCreate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*MetaCreate) Mutation

func (mc *MetaCreate) Mutation() *MetaMutation

Mutation returns the MetaMutation object of the builder.

func (*MetaCreate) OnConflict

func (mc *MetaCreate) OnConflict(opts ...sql.ConflictOption) *MetaUpsertOne

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.Meta.Create().
	SetName(v).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.MetaUpsert) {
		SetName(v+v).
	}).
	Exec(ctx)

func (*MetaCreate) OnConflictColumns

func (mc *MetaCreate) OnConflictColumns(columns ...string) *MetaUpsertOne

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.Meta.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*MetaCreate) Save

func (mc *MetaCreate) Save(ctx context.Context) (*Meta, error)

Save creates the Meta in the database.

func (*MetaCreate) SaveX

func (mc *MetaCreate) SaveX(ctx context.Context) *Meta

SaveX calls Save and panics if Save returns an error.

func (*MetaCreate) SetActive

func (mc *MetaCreate) SetActive(b bool) *MetaCreate

SetActive sets the "active" field.

func (*MetaCreate) SetContainerType

func (mc *MetaCreate) SetContainerType(mt meta.ContainerType) *MetaCreate

SetContainerType sets the "container_type" field.

func (*MetaCreate) SetCreateTime

func (mc *MetaCreate) SetCreateTime(t time.Time) *MetaCreate

SetCreateTime sets the "create_time" field.

func (*MetaCreate) SetFavorite

func (mc *MetaCreate) SetFavorite(b bool) *MetaCreate

SetFavorite sets the "favorite" field.

func (*MetaCreate) SetFileIndices

func (mc *MetaCreate) SetFileIndices(i []int) *MetaCreate

SetFileIndices sets the "file_indices" field.

func (*MetaCreate) SetName

func (mc *MetaCreate) SetName(s string) *MetaCreate

SetName sets the "name" field.

func (*MetaCreate) SetNillableActive

func (mc *MetaCreate) SetNillableActive(b *bool) *MetaCreate

SetNillableActive sets the "active" field if the given value is not nil.

func (*MetaCreate) SetNillableContainerType

func (mc *MetaCreate) SetNillableContainerType(mt *meta.ContainerType) *MetaCreate

SetNillableContainerType sets the "container_type" field if the given value is not nil.

func (*MetaCreate) SetNillableCreateTime

func (mc *MetaCreate) SetNillableCreateTime(t *time.Time) *MetaCreate

SetNillableCreateTime sets the "create_time" field if the given value is not nil.

func (*MetaCreate) SetNillableFavorite

func (mc *MetaCreate) SetNillableFavorite(b *bool) *MetaCreate

SetNillableFavorite sets the "favorite" field if the given value is not nil.

func (*MetaCreate) SetNillableRead

func (mc *MetaCreate) SetNillableRead(b *bool) *MetaCreate

SetNillableRead sets the "read" field if the given value is not nil.

func (*MetaCreate) SetRead

func (mc *MetaCreate) SetRead(b bool) *MetaCreate

SetRead sets the "read" field.

func (*MetaCreate) SetThumbnail

func (mc *MetaCreate) SetThumbnail(b []byte) *MetaCreate

SetThumbnail sets the "thumbnail" field.

type MetaCreateBulk

type MetaCreateBulk struct {
	// contains filtered or unexported fields
}

MetaCreateBulk is the builder for creating many Meta entities in bulk.

func (*MetaCreateBulk) Exec

func (mcb *MetaCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*MetaCreateBulk) ExecX

func (mcb *MetaCreateBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*MetaCreateBulk) OnConflict

func (mcb *MetaCreateBulk) OnConflict(opts ...sql.ConflictOption) *MetaUpsertBulk

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.Meta.CreateBulk(builders...).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.MetaUpsert) {
		SetName(v+v).
	}).
	Exec(ctx)

func (*MetaCreateBulk) OnConflictColumns

func (mcb *MetaCreateBulk) OnConflictColumns(columns ...string) *MetaUpsertBulk

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.Meta.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*MetaCreateBulk) Save

func (mcb *MetaCreateBulk) Save(ctx context.Context) ([]*Meta, error)

Save creates the Meta entities in the database.

func (*MetaCreateBulk) SaveX

func (mcb *MetaCreateBulk) SaveX(ctx context.Context) []*Meta

SaveX is like Save, but panics if an error occurs.

type MetaDelete

type MetaDelete struct {
	// contains filtered or unexported fields
}

MetaDelete is the builder for deleting a Meta entity.

func (*MetaDelete) Exec

func (md *MetaDelete) Exec(ctx context.Context) (int, error)

Exec executes the deletion query and returns how many vertices were deleted.

func (*MetaDelete) ExecX

func (md *MetaDelete) ExecX(ctx context.Context) int

ExecX is like Exec, but panics if an error occurs.

func (*MetaDelete) Where

func (md *MetaDelete) Where(ps ...predicate.Meta) *MetaDelete

Where appends a list predicates to the MetaDelete builder.

type MetaDeleteOne

type MetaDeleteOne struct {
	// contains filtered or unexported fields
}

MetaDeleteOne is the builder for deleting a single Meta entity.

func (*MetaDeleteOne) Exec

func (mdo *MetaDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*MetaDeleteOne) ExecX

func (mdo *MetaDeleteOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*MetaDeleteOne) Where

func (mdo *MetaDeleteOne) Where(ps ...predicate.Meta) *MetaDeleteOne

Where appends a list predicates to the MetaDelete builder.

type MetaEdges

type MetaEdges struct {
	// Tags holds the value of the tags edge.
	Tags []*Tag `json:"tags,omitempty"`
	// Histories holds the value of the histories edge.
	Histories []*History `json:"histories,omitempty"`
	// User holds the value of the user edge.
	User []*User `json:"user,omitempty"`
	// contains filtered or unexported fields
}

MetaEdges holds the relations/edges for other nodes in the graph.

func (MetaEdges) HistoriesOrErr

func (e MetaEdges) HistoriesOrErr() ([]*History, error)

HistoriesOrErr returns the Histories value or an error if the edge was not loaded in eager-loading.

func (MetaEdges) TagsOrErr

func (e MetaEdges) TagsOrErr() ([]*Tag, error)

TagsOrErr returns the Tags value or an error if the edge was not loaded in eager-loading.

func (MetaEdges) UserOrErr

func (e MetaEdges) UserOrErr() ([]*User, error)

UserOrErr returns the User value or an error if the edge was not loaded in eager-loading.

type MetaGroupBy

type MetaGroupBy struct {
	// contains filtered or unexported fields
}

MetaGroupBy is the group-by builder for Meta entities.

func (*MetaGroupBy) Aggregate

func (mgb *MetaGroupBy) Aggregate(fns ...AggregateFunc) *MetaGroupBy

Aggregate adds the given aggregation functions to the group-by query.

func (*MetaGroupBy) Bool

func (s *MetaGroupBy) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) BoolX

func (s *MetaGroupBy) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*MetaGroupBy) Bools

func (s *MetaGroupBy) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) BoolsX

func (s *MetaGroupBy) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*MetaGroupBy) Float64

func (s *MetaGroupBy) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) Float64X

func (s *MetaGroupBy) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*MetaGroupBy) Float64s

func (s *MetaGroupBy) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) Float64sX

func (s *MetaGroupBy) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*MetaGroupBy) Int

func (s *MetaGroupBy) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) IntX

func (s *MetaGroupBy) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*MetaGroupBy) Ints

func (s *MetaGroupBy) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) IntsX

func (s *MetaGroupBy) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*MetaGroupBy) Scan

func (mgb *MetaGroupBy) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*MetaGroupBy) ScanX

func (s *MetaGroupBy) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*MetaGroupBy) String

func (s *MetaGroupBy) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) StringX

func (s *MetaGroupBy) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*MetaGroupBy) Strings

func (s *MetaGroupBy) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*MetaGroupBy) StringsX

func (s *MetaGroupBy) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type MetaMutation

type MetaMutation struct {
	// contains filtered or unexported fields
}

MetaMutation represents an operation that mutates the Meta nodes in the graph.

func (*MetaMutation) Active

func (m *MetaMutation) Active() (r bool, exists bool)

Active returns the value of the "active" field in the mutation.

func (*MetaMutation) AddField

func (m *MetaMutation) AddField(name string, value ent.Value) error

AddField adds the value to the field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*MetaMutation) AddHistoryIDs

func (m *MetaMutation) AddHistoryIDs(ids ...int)

AddHistoryIDs adds the "histories" edge to the History entity by ids.

func (*MetaMutation) AddTagIDs

func (m *MetaMutation) AddTagIDs(ids ...int)

AddTagIDs adds the "tags" edge to the Tag entity by ids.

func (*MetaMutation) AddUserIDs

func (m *MetaMutation) AddUserIDs(ids ...int)

AddUserIDs adds the "user" edge to the User entity by ids.

func (*MetaMutation) AddedEdges

func (m *MetaMutation) AddedEdges() []string

AddedEdges returns all edge names that were set/added in this mutation.

func (*MetaMutation) AddedField

func (m *MetaMutation) AddedField(name string) (ent.Value, bool)

AddedField returns the numeric value that was incremented/decremented on a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*MetaMutation) AddedFields

func (m *MetaMutation) AddedFields() []string

AddedFields returns all numeric fields that were incremented/decremented during this mutation.

func (*MetaMutation) AddedIDs

func (m *MetaMutation) AddedIDs(name string) []ent.Value

AddedIDs returns all IDs (to other nodes) that were added for the given edge name in this mutation.

func (*MetaMutation) AppendFileIndices

func (m *MetaMutation) AppendFileIndices(i []int)

AppendFileIndices adds i to the "file_indices" field.

func (*MetaMutation) AppendedFileIndices

func (m *MetaMutation) AppendedFileIndices() ([]int, bool)

AppendedFileIndices returns the list of values that were appended to the "file_indices" field in this mutation.

func (*MetaMutation) ClearEdge

func (m *MetaMutation) ClearEdge(name string) error

ClearEdge clears the value of the edge with the given name. It returns an error if that edge is not defined in the schema.

func (*MetaMutation) ClearField

func (m *MetaMutation) ClearField(name string) error

ClearField clears the value of the field with the given name. It returns an error if the field is not defined in the schema.

func (*MetaMutation) ClearHistories

func (m *MetaMutation) ClearHistories()

ClearHistories clears the "histories" edge to the History entity.

func (*MetaMutation) ClearTags

func (m *MetaMutation) ClearTags()

ClearTags clears the "tags" edge to the Tag entity.

func (*MetaMutation) ClearThumbnail

func (m *MetaMutation) ClearThumbnail()

ClearThumbnail clears the value of the "thumbnail" field.

func (*MetaMutation) ClearUser

func (m *MetaMutation) ClearUser()

ClearUser clears the "user" edge to the User entity.

func (*MetaMutation) ClearedEdges

func (m *MetaMutation) ClearedEdges() []string

ClearedEdges returns all edge names that were cleared in this mutation.

func (*MetaMutation) ClearedFields

func (m *MetaMutation) ClearedFields() []string

ClearedFields returns all nullable fields that were cleared during this mutation.

func (MetaMutation) Client

func (m MetaMutation) Client() *Client

Client returns a new `ent.Client` from the mutation. If the mutation was executed in a transaction (ent.Tx), a transactional client is returned.

func (*MetaMutation) ContainerType

func (m *MetaMutation) ContainerType() (r meta.ContainerType, exists bool)

ContainerType returns the value of the "container_type" field in the mutation.

func (*MetaMutation) CreateTime

func (m *MetaMutation) CreateTime() (r time.Time, exists bool)

CreateTime returns the value of the "create_time" field in the mutation.

func (*MetaMutation) EdgeCleared

func (m *MetaMutation) EdgeCleared(name string) bool

EdgeCleared returns a boolean which indicates if the edge with the given name was cleared in this mutation.

func (*MetaMutation) Favorite

func (m *MetaMutation) Favorite() (r bool, exists bool)

Favorite returns the value of the "favorite" field in the mutation.

func (*MetaMutation) Field

func (m *MetaMutation) Field(name string) (ent.Value, bool)

Field returns the value of a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*MetaMutation) FieldCleared

func (m *MetaMutation) FieldCleared(name string) bool

FieldCleared returns a boolean indicating if a field with the given name was cleared in this mutation.

func (*MetaMutation) Fields

func (m *MetaMutation) Fields() []string

Fields returns all fields that were changed during this mutation. Note that in order to get all numeric fields that were incremented/decremented, call AddedFields().

func (*MetaMutation) FileIndices

func (m *MetaMutation) FileIndices() (r []int, exists bool)

FileIndices returns the value of the "file_indices" field in the mutation.

func (*MetaMutation) HistoriesCleared

func (m *MetaMutation) HistoriesCleared() bool

HistoriesCleared reports if the "histories" edge to the History entity was cleared.

func (*MetaMutation) HistoriesIDs

func (m *MetaMutation) HistoriesIDs() (ids []int)

HistoriesIDs returns the "histories" edge IDs in the mutation.

func (*MetaMutation) ID

func (m *MetaMutation) ID() (id int, exists bool)

ID returns the ID value in the mutation. Note that the ID is only available if it was provided to the builder or after it was returned from the database.

func (*MetaMutation) IDs

func (m *MetaMutation) IDs(ctx context.Context) ([]int, error)

IDs queries the database and returns the entity ids that match the mutation's predicate. That means, if the mutation is applied within a transaction with an isolation level such as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated or updated by the mutation.

func (*MetaMutation) Name

func (m *MetaMutation) Name() (r string, exists bool)

Name returns the value of the "name" field in the mutation.

func (*MetaMutation) OldActive

func (m *MetaMutation) OldActive(ctx context.Context) (v bool, err error)

OldActive returns the old "active" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) OldContainerType

func (m *MetaMutation) OldContainerType(ctx context.Context) (v meta.ContainerType, err error)

OldContainerType returns the old "container_type" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) OldCreateTime

func (m *MetaMutation) OldCreateTime(ctx context.Context) (v time.Time, err error)

OldCreateTime returns the old "create_time" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) OldFavorite

func (m *MetaMutation) OldFavorite(ctx context.Context) (v bool, err error)

OldFavorite returns the old "favorite" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) OldField

func (m *MetaMutation) OldField(ctx context.Context, name string) (ent.Value, error)

OldField returns the old value of the field from the database. An error is returned if the mutation operation is not UpdateOne, or the query to the database failed.

func (*MetaMutation) OldFileIndices

func (m *MetaMutation) OldFileIndices(ctx context.Context) (v []int, err error)

OldFileIndices returns the old "file_indices" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) OldName

func (m *MetaMutation) OldName(ctx context.Context) (v string, err error)

OldName returns the old "name" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) OldRead

func (m *MetaMutation) OldRead(ctx context.Context) (v bool, err error)

OldRead returns the old "read" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) OldThumbnail

func (m *MetaMutation) OldThumbnail(ctx context.Context) (v []byte, err error)

OldThumbnail returns the old "thumbnail" field's value of the Meta entity. If the Meta object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*MetaMutation) Op

func (m *MetaMutation) Op() Op

Op returns the operation name.

func (*MetaMutation) Read

func (m *MetaMutation) Read() (r bool, exists bool)

Read returns the value of the "read" field in the mutation.

func (*MetaMutation) RemoveHistoryIDs

func (m *MetaMutation) RemoveHistoryIDs(ids ...int)

RemoveHistoryIDs removes the "histories" edge to the History entity by IDs.

func (*MetaMutation) RemoveTagIDs

func (m *MetaMutation) RemoveTagIDs(ids ...int)

RemoveTagIDs removes the "tags" edge to the Tag entity by IDs.

func (*MetaMutation) RemoveUserIDs

func (m *MetaMutation) RemoveUserIDs(ids ...int)

RemoveUserIDs removes the "user" edge to the User entity by IDs.

func (*MetaMutation) RemovedEdges

func (m *MetaMutation) RemovedEdges() []string

RemovedEdges returns all edge names that were removed in this mutation.

func (*MetaMutation) RemovedHistoriesIDs

func (m *MetaMutation) RemovedHistoriesIDs() (ids []int)

RemovedHistories returns the removed IDs of the "histories" edge to the History entity.

func (*MetaMutation) RemovedIDs

func (m *MetaMutation) RemovedIDs(name string) []ent.Value

RemovedIDs returns all IDs (to other nodes) that were removed for the edge with the given name in this mutation.

func (*MetaMutation) RemovedTagsIDs

func (m *MetaMutation) RemovedTagsIDs() (ids []int)

RemovedTags returns the removed IDs of the "tags" edge to the Tag entity.

func (*MetaMutation) RemovedUserIDs

func (m *MetaMutation) RemovedUserIDs() (ids []int)

RemovedUser returns the removed IDs of the "user" edge to the User entity.

func (*MetaMutation) ResetActive

func (m *MetaMutation) ResetActive()

ResetActive resets all changes to the "active" field.

func (*MetaMutation) ResetContainerType

func (m *MetaMutation) ResetContainerType()

ResetContainerType resets all changes to the "container_type" field.

func (*MetaMutation) ResetCreateTime

func (m *MetaMutation) ResetCreateTime()

ResetCreateTime resets all changes to the "create_time" field.

func (*MetaMutation) ResetEdge

func (m *MetaMutation) ResetEdge(name string) error

ResetEdge resets all changes to the edge with the given name in this mutation. It returns an error if the edge is not defined in the schema.

func (*MetaMutation) ResetFavorite

func (m *MetaMutation) ResetFavorite()

ResetFavorite resets all changes to the "favorite" field.

func (*MetaMutation) ResetField

func (m *MetaMutation) ResetField(name string) error

ResetField resets all changes in the mutation for the field with the given name. It returns an error if the field is not defined in the schema.

func (*MetaMutation) ResetFileIndices

func (m *MetaMutation) ResetFileIndices()

ResetFileIndices resets all changes to the "file_indices" field.

func (*MetaMutation) ResetHistories

func (m *MetaMutation) ResetHistories()

ResetHistories resets all changes to the "histories" edge.

func (*MetaMutation) ResetName

func (m *MetaMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*MetaMutation) ResetRead

func (m *MetaMutation) ResetRead()

ResetRead resets all changes to the "read" field.

func (*MetaMutation) ResetTags

func (m *MetaMutation) ResetTags()

ResetTags resets all changes to the "tags" edge.

func (*MetaMutation) ResetThumbnail

func (m *MetaMutation) ResetThumbnail()

ResetThumbnail resets all changes to the "thumbnail" field.

func (*MetaMutation) ResetUser

func (m *MetaMutation) ResetUser()

ResetUser resets all changes to the "user" edge.

func (*MetaMutation) SetActive

func (m *MetaMutation) SetActive(b bool)

SetActive sets the "active" field.

func (*MetaMutation) SetContainerType

func (m *MetaMutation) SetContainerType(mt meta.ContainerType)

SetContainerType sets the "container_type" field.

func (*MetaMutation) SetCreateTime

func (m *MetaMutation) SetCreateTime(t time.Time)

SetCreateTime sets the "create_time" field.

func (*MetaMutation) SetFavorite

func (m *MetaMutation) SetFavorite(b bool)

SetFavorite sets the "favorite" field.

func (*MetaMutation) SetField

func (m *MetaMutation) SetField(name string, value ent.Value) error

SetField sets the value of a field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*MetaMutation) SetFileIndices

func (m *MetaMutation) SetFileIndices(i []int)

SetFileIndices sets the "file_indices" field.

func (*MetaMutation) SetName

func (m *MetaMutation) SetName(s string)

SetName sets the "name" field.

func (*MetaMutation) SetOp

func (m *MetaMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*MetaMutation) SetRead

func (m *MetaMutation) SetRead(b bool)

SetRead sets the "read" field.

func (*MetaMutation) SetThumbnail

func (m *MetaMutation) SetThumbnail(b []byte)

SetThumbnail sets the "thumbnail" field.

func (*MetaMutation) TagsCleared

func (m *MetaMutation) TagsCleared() bool

TagsCleared reports if the "tags" edge to the Tag entity was cleared.

func (*MetaMutation) TagsIDs

func (m *MetaMutation) TagsIDs() (ids []int)

TagsIDs returns the "tags" edge IDs in the mutation.

func (*MetaMutation) Thumbnail

func (m *MetaMutation) Thumbnail() (r []byte, exists bool)

Thumbnail returns the value of the "thumbnail" field in the mutation.

func (*MetaMutation) ThumbnailCleared

func (m *MetaMutation) ThumbnailCleared() bool

ThumbnailCleared returns if the "thumbnail" field was cleared in this mutation.

func (MetaMutation) Tx

func (m MetaMutation) Tx() (*Tx, error)

Tx returns an `ent.Tx` for mutations that were executed in transactions; it returns an error otherwise.

func (*MetaMutation) Type

func (m *MetaMutation) Type() string

Type returns the node type of this mutation (Meta).

func (*MetaMutation) UserCleared

func (m *MetaMutation) UserCleared() bool

UserCleared reports if the "user" edge to the User entity was cleared.

func (*MetaMutation) UserIDs

func (m *MetaMutation) UserIDs() (ids []int)

UserIDs returns the "user" edge IDs in the mutation.

func (*MetaMutation) Where

func (m *MetaMutation) Where(ps ...predicate.Meta)

Where appends a list predicates to the MetaMutation builder.

func (*MetaMutation) WhereP

func (m *MetaMutation) WhereP(ps ...func(*sql.Selector))

WhereP appends storage-level predicates to the MetaMutation builder. Using this method, users can use type-assertion to append predicates that do not depend on any generated package.

type MetaQuery

type MetaQuery struct {
	// contains filtered or unexported fields
}

MetaQuery is the builder for querying Meta entities.

func (*MetaQuery) Aggregate

func (mq *MetaQuery) Aggregate(fns ...AggregateFunc) *MetaSelect

Aggregate returns a MetaSelect configured with the given aggregations.

func (*MetaQuery) All

func (mq *MetaQuery) All(ctx context.Context) ([]*Meta, error)

All executes the query and returns a list of MetaSlice.

func (*MetaQuery) AllX

func (mq *MetaQuery) AllX(ctx context.Context) []*Meta

AllX is like All, but panics if an error occurs.

func (*MetaQuery) Clone

func (mq *MetaQuery) Clone() *MetaQuery

Clone returns a duplicate of the MetaQuery builder, including all associated steps. It can be used to prepare common query builders and use them differently after the clone is made.

func (*MetaQuery) Count

func (mq *MetaQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*MetaQuery) CountX

func (mq *MetaQuery) CountX(ctx context.Context) int

CountX is like Count, but panics if an error occurs.

func (*MetaQuery) Exist

func (mq *MetaQuery) Exist(ctx context.Context) (bool, error)

Exist returns true if the query has elements in the graph.

func (*MetaQuery) ExistX

func (mq *MetaQuery) ExistX(ctx context.Context) bool

ExistX is like Exist, but panics if an error occurs.

func (*MetaQuery) First

func (mq *MetaQuery) First(ctx context.Context) (*Meta, error)

First returns the first Meta entity from the query. Returns a *NotFoundError when no Meta was found.

func (*MetaQuery) FirstID

func (mq *MetaQuery) FirstID(ctx context.Context) (id int, err error)

FirstID returns the first Meta ID from the query. Returns a *NotFoundError when no Meta ID was found.

func (*MetaQuery) FirstIDX

func (mq *MetaQuery) FirstIDX(ctx context.Context) int

FirstIDX is like FirstID, but panics if an error occurs.

func (*MetaQuery) FirstX

func (mq *MetaQuery) FirstX(ctx context.Context) *Meta

FirstX is like First, but panics if an error occurs.

func (*MetaQuery) GroupBy

func (mq *MetaQuery) GroupBy(field string, fields ...string) *MetaGroupBy

GroupBy is used to group vertices by one or more fields/columns. It is often used with aggregate functions, like: count, max, mean, min, sum.

Example:

var v []struct {
	Name string `json:"name,omitempty"`
	Count int `json:"count,omitempty"`
}

client.Meta.Query().
	GroupBy(meta.FieldName).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*MetaQuery) IDs

func (mq *MetaQuery) IDs(ctx context.Context) (ids []int, err error)

IDs executes the query and returns a list of Meta IDs.

func (*MetaQuery) IDsX

func (mq *MetaQuery) IDsX(ctx context.Context) []int

IDsX is like IDs, but panics if an error occurs.

func (*MetaQuery) Limit

func (mq *MetaQuery) Limit(limit int) *MetaQuery

Limit the number of records to be returned by this query.

func (*MetaQuery) Offset

func (mq *MetaQuery) Offset(offset int) *MetaQuery

Offset to start from.

func (*MetaQuery) Only

func (mq *MetaQuery) Only(ctx context.Context) (*Meta, error)

Only returns a single Meta entity found by the query, ensuring it only returns one. Returns a *NotSingularError when more than one Meta entity is found. Returns a *NotFoundError when no Meta entities are found.

func (*MetaQuery) OnlyID

func (mq *MetaQuery) OnlyID(ctx context.Context) (id int, err error)

OnlyID is like Only, but returns the only Meta ID in the query. Returns a *NotSingularError when more than one Meta ID is found. Returns a *NotFoundError when no entities are found.

func (*MetaQuery) OnlyIDX

func (mq *MetaQuery) OnlyIDX(ctx context.Context) int

OnlyIDX is like OnlyID, but panics if an error occurs.

func (*MetaQuery) OnlyX

func (mq *MetaQuery) OnlyX(ctx context.Context) *Meta

OnlyX is like Only, but panics if an error occurs.

func (*MetaQuery) Order

func (mq *MetaQuery) Order(o ...meta.OrderOption) *MetaQuery

Order specifies how the records should be ordered.

func (*MetaQuery) QueryHistories

func (mq *MetaQuery) QueryHistories() *HistoryQuery

QueryHistories chains the current query on the "histories" edge.

func (*MetaQuery) QueryTags

func (mq *MetaQuery) QueryTags() *TagQuery

QueryTags chains the current query on the "tags" edge.

func (*MetaQuery) QueryUser

func (mq *MetaQuery) QueryUser() *UserQuery

QueryUser chains the current query on the "user" edge.

func (*MetaQuery) Select

func (mq *MetaQuery) Select(fields ...string) *MetaSelect

Select allows the selection one or more fields/columns for the given query, instead of selecting all fields in the entity.

Example:

var v []struct {
	Name string `json:"name,omitempty"`
}

client.Meta.Query().
	Select(meta.FieldName).
	Scan(ctx, &v)

func (*MetaQuery) Unique

func (mq *MetaQuery) Unique(unique bool) *MetaQuery

Unique configures the query builder to filter duplicate records on query. By default, unique is set to true, and can be disabled using this method.

func (*MetaQuery) Where

func (mq *MetaQuery) Where(ps ...predicate.Meta) *MetaQuery

Where adds a new predicate for the MetaQuery builder.

func (*MetaQuery) WithHistories

func (mq *MetaQuery) WithHistories(opts ...func(*HistoryQuery)) *MetaQuery

WithHistories tells the query-builder to eager-load the nodes that are connected to the "histories" edge. The optional arguments are used to configure the query builder of the edge.

func (*MetaQuery) WithTags

func (mq *MetaQuery) WithTags(opts ...func(*TagQuery)) *MetaQuery

WithTags tells the query-builder to eager-load the nodes that are connected to the "tags" edge. The optional arguments are used to configure the query builder of the edge.

func (*MetaQuery) WithUser

func (mq *MetaQuery) WithUser(opts ...func(*UserQuery)) *MetaQuery

WithUser tells the query-builder to eager-load the nodes that are connected to the "user" edge. The optional arguments are used to configure the query builder of the edge.

type MetaSelect

type MetaSelect struct {
	*MetaQuery
	// contains filtered or unexported fields
}

MetaSelect is the builder for selecting fields of Meta entities.

func (*MetaSelect) Aggregate

func (ms *MetaSelect) Aggregate(fns ...AggregateFunc) *MetaSelect

Aggregate adds the given aggregation functions to the selector query.

func (*MetaSelect) Bool

func (s *MetaSelect) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*MetaSelect) BoolX

func (s *MetaSelect) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*MetaSelect) Bools

func (s *MetaSelect) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*MetaSelect) BoolsX

func (s *MetaSelect) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*MetaSelect) Float64

func (s *MetaSelect) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*MetaSelect) Float64X

func (s *MetaSelect) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*MetaSelect) Float64s

func (s *MetaSelect) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*MetaSelect) Float64sX

func (s *MetaSelect) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*MetaSelect) Int

func (s *MetaSelect) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*MetaSelect) IntX

func (s *MetaSelect) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*MetaSelect) Ints

func (s *MetaSelect) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*MetaSelect) IntsX

func (s *MetaSelect) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*MetaSelect) Scan

func (ms *MetaSelect) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*MetaSelect) ScanX

func (s *MetaSelect) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*MetaSelect) String

func (s *MetaSelect) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*MetaSelect) StringX

func (s *MetaSelect) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*MetaSelect) Strings

func (s *MetaSelect) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*MetaSelect) StringsX

func (s *MetaSelect) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type MetaSlice

type MetaSlice []*Meta

MetaSlice is a parsable slice of Meta.

type MetaUpdate

type MetaUpdate struct {
	// contains filtered or unexported fields
}

MetaUpdate is the builder for updating Meta entities.

func (*MetaUpdate) AddHistories

func (mu *MetaUpdate) AddHistories(h ...*History) *MetaUpdate

AddHistories adds the "histories" edges to the History entity.

func (*MetaUpdate) AddHistoryIDs

func (mu *MetaUpdate) AddHistoryIDs(ids ...int) *MetaUpdate

AddHistoryIDs adds the "histories" edge to the History entity by IDs.

func (*MetaUpdate) AddTagIDs

func (mu *MetaUpdate) AddTagIDs(ids ...int) *MetaUpdate

AddTagIDs adds the "tags" edge to the Tag entity by IDs.

func (*MetaUpdate) AddTags

func (mu *MetaUpdate) AddTags(t ...*Tag) *MetaUpdate

AddTags adds the "tags" edges to the Tag entity.

func (*MetaUpdate) AddUser

func (mu *MetaUpdate) AddUser(u ...*User) *MetaUpdate

AddUser adds the "user" edges to the User entity.

func (*MetaUpdate) AddUserIDs

func (mu *MetaUpdate) AddUserIDs(ids ...int) *MetaUpdate

AddUserIDs adds the "user" edge to the User entity by IDs.

func (*MetaUpdate) AppendFileIndices

func (mu *MetaUpdate) AppendFileIndices(i []int) *MetaUpdate

AppendFileIndices appends i to the "file_indices" field.

func (*MetaUpdate) ClearHistories

func (mu *MetaUpdate) ClearHistories() *MetaUpdate

ClearHistories clears all "histories" edges to the History entity.

func (*MetaUpdate) ClearTags

func (mu *MetaUpdate) ClearTags() *MetaUpdate

ClearTags clears all "tags" edges to the Tag entity.

func (*MetaUpdate) ClearThumbnail

func (mu *MetaUpdate) ClearThumbnail() *MetaUpdate

ClearThumbnail clears the value of the "thumbnail" field.

func (*MetaUpdate) ClearUser

func (mu *MetaUpdate) ClearUser() *MetaUpdate

ClearUser clears all "user" edges to the User entity.

func (*MetaUpdate) Exec

func (mu *MetaUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*MetaUpdate) ExecX

func (mu *MetaUpdate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*MetaUpdate) Mutation

func (mu *MetaUpdate) Mutation() *MetaMutation

Mutation returns the MetaMutation object of the builder.

func (*MetaUpdate) RemoveHistories

func (mu *MetaUpdate) RemoveHistories(h ...*History) *MetaUpdate

RemoveHistories removes "histories" edges to History entities.

func (*MetaUpdate) RemoveHistoryIDs

func (mu *MetaUpdate) RemoveHistoryIDs(ids ...int) *MetaUpdate

RemoveHistoryIDs removes the "histories" edge to History entities by IDs.

func (*MetaUpdate) RemoveTagIDs

func (mu *MetaUpdate) RemoveTagIDs(ids ...int) *MetaUpdate

RemoveTagIDs removes the "tags" edge to Tag entities by IDs.

func (*MetaUpdate) RemoveTags

func (mu *MetaUpdate) RemoveTags(t ...*Tag) *MetaUpdate

RemoveTags removes "tags" edges to Tag entities.

func (*MetaUpdate) RemoveUser

func (mu *MetaUpdate) RemoveUser(u ...*User) *MetaUpdate

RemoveUser removes "user" edges to User entities.

func (*MetaUpdate) RemoveUserIDs

func (mu *MetaUpdate) RemoveUserIDs(ids ...int) *MetaUpdate

RemoveUserIDs removes the "user" edge to User entities by IDs.

func (*MetaUpdate) Save

func (mu *MetaUpdate) Save(ctx context.Context) (int, error)

Save executes the query and returns the number of nodes affected by the update operation.

func (*MetaUpdate) SaveX

func (mu *MetaUpdate) SaveX(ctx context.Context) int

SaveX is like Save, but panics if an error occurs.

func (*MetaUpdate) SetActive

func (mu *MetaUpdate) SetActive(b bool) *MetaUpdate

SetActive sets the "active" field.

func (*MetaUpdate) SetContainerType

func (mu *MetaUpdate) SetContainerType(mt meta.ContainerType) *MetaUpdate

SetContainerType sets the "container_type" field.

func (*MetaUpdate) SetCreateTime

func (mu *MetaUpdate) SetCreateTime(t time.Time) *MetaUpdate

SetCreateTime sets the "create_time" field.

func (*MetaUpdate) SetFavorite

func (mu *MetaUpdate) SetFavorite(b bool) *MetaUpdate

SetFavorite sets the "favorite" field.

func (*MetaUpdate) SetFileIndices

func (mu *MetaUpdate) SetFileIndices(i []int) *MetaUpdate

SetFileIndices sets the "file_indices" field.

func (*MetaUpdate) SetName

func (mu *MetaUpdate) SetName(s string) *MetaUpdate

SetName sets the "name" field.

func (*MetaUpdate) SetNillableActive

func (mu *MetaUpdate) SetNillableActive(b *bool) *MetaUpdate

SetNillableActive sets the "active" field if the given value is not nil.

func (*MetaUpdate) SetNillableContainerType

func (mu *MetaUpdate) SetNillableContainerType(mt *meta.ContainerType) *MetaUpdate

SetNillableContainerType sets the "container_type" field if the given value is not nil.

func (*MetaUpdate) SetNillableCreateTime

func (mu *MetaUpdate) SetNillableCreateTime(t *time.Time) *MetaUpdate

SetNillableCreateTime sets the "create_time" field if the given value is not nil.

func (*MetaUpdate) SetNillableFavorite

func (mu *MetaUpdate) SetNillableFavorite(b *bool) *MetaUpdate

SetNillableFavorite sets the "favorite" field if the given value is not nil.

func (*MetaUpdate) SetNillableName

func (mu *MetaUpdate) SetNillableName(s *string) *MetaUpdate

SetNillableName sets the "name" field if the given value is not nil.

func (*MetaUpdate) SetNillableRead

func (mu *MetaUpdate) SetNillableRead(b *bool) *MetaUpdate

SetNillableRead sets the "read" field if the given value is not nil.

func (*MetaUpdate) SetRead

func (mu *MetaUpdate) SetRead(b bool) *MetaUpdate

SetRead sets the "read" field.

func (*MetaUpdate) SetThumbnail

func (mu *MetaUpdate) SetThumbnail(b []byte) *MetaUpdate

SetThumbnail sets the "thumbnail" field.

func (*MetaUpdate) Where

func (mu *MetaUpdate) Where(ps ...predicate.Meta) *MetaUpdate

Where appends a list predicates to the MetaUpdate builder.

type MetaUpdateOne

type MetaUpdateOne struct {
	// contains filtered or unexported fields
}

MetaUpdateOne is the builder for updating a single Meta entity.

func (*MetaUpdateOne) AddHistories

func (muo *MetaUpdateOne) AddHistories(h ...*History) *MetaUpdateOne

AddHistories adds the "histories" edges to the History entity.

func (*MetaUpdateOne) AddHistoryIDs

func (muo *MetaUpdateOne) AddHistoryIDs(ids ...int) *MetaUpdateOne

AddHistoryIDs adds the "histories" edge to the History entity by IDs.

func (*MetaUpdateOne) AddTagIDs

func (muo *MetaUpdateOne) AddTagIDs(ids ...int) *MetaUpdateOne

AddTagIDs adds the "tags" edge to the Tag entity by IDs.

func (*MetaUpdateOne) AddTags

func (muo *MetaUpdateOne) AddTags(t ...*Tag) *MetaUpdateOne

AddTags adds the "tags" edges to the Tag entity.

func (*MetaUpdateOne) AddUser

func (muo *MetaUpdateOne) AddUser(u ...*User) *MetaUpdateOne

AddUser adds the "user" edges to the User entity.

func (*MetaUpdateOne) AddUserIDs

func (muo *MetaUpdateOne) AddUserIDs(ids ...int) *MetaUpdateOne

AddUserIDs adds the "user" edge to the User entity by IDs.

func (*MetaUpdateOne) AppendFileIndices

func (muo *MetaUpdateOne) AppendFileIndices(i []int) *MetaUpdateOne

AppendFileIndices appends i to the "file_indices" field.

func (*MetaUpdateOne) ClearHistories

func (muo *MetaUpdateOne) ClearHistories() *MetaUpdateOne

ClearHistories clears all "histories" edges to the History entity.

func (*MetaUpdateOne) ClearTags

func (muo *MetaUpdateOne) ClearTags() *MetaUpdateOne

ClearTags clears all "tags" edges to the Tag entity.

func (*MetaUpdateOne) ClearThumbnail

func (muo *MetaUpdateOne) ClearThumbnail() *MetaUpdateOne

ClearThumbnail clears the value of the "thumbnail" field.

func (*MetaUpdateOne) ClearUser

func (muo *MetaUpdateOne) ClearUser() *MetaUpdateOne

ClearUser clears all "user" edges to the User entity.

func (*MetaUpdateOne) Exec

func (muo *MetaUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*MetaUpdateOne) ExecX

func (muo *MetaUpdateOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*MetaUpdateOne) Mutation

func (muo *MetaUpdateOne) Mutation() *MetaMutation

Mutation returns the MetaMutation object of the builder.

func (*MetaUpdateOne) RemoveHistories

func (muo *MetaUpdateOne) RemoveHistories(h ...*History) *MetaUpdateOne

RemoveHistories removes "histories" edges to History entities.

func (*MetaUpdateOne) RemoveHistoryIDs

func (muo *MetaUpdateOne) RemoveHistoryIDs(ids ...int) *MetaUpdateOne

RemoveHistoryIDs removes the "histories" edge to History entities by IDs.

func (*MetaUpdateOne) RemoveTagIDs

func (muo *MetaUpdateOne) RemoveTagIDs(ids ...int) *MetaUpdateOne

RemoveTagIDs removes the "tags" edge to Tag entities by IDs.

func (*MetaUpdateOne) RemoveTags

func (muo *MetaUpdateOne) RemoveTags(t ...*Tag) *MetaUpdateOne

RemoveTags removes "tags" edges to Tag entities.

func (*MetaUpdateOne) RemoveUser

func (muo *MetaUpdateOne) RemoveUser(u ...*User) *MetaUpdateOne

RemoveUser removes "user" edges to User entities.

func (*MetaUpdateOne) RemoveUserIDs

func (muo *MetaUpdateOne) RemoveUserIDs(ids ...int) *MetaUpdateOne

RemoveUserIDs removes the "user" edge to User entities by IDs.

func (*MetaUpdateOne) Save

func (muo *MetaUpdateOne) Save(ctx context.Context) (*Meta, error)

Save executes the query and returns the updated Meta entity.

func (*MetaUpdateOne) SaveX

func (muo *MetaUpdateOne) SaveX(ctx context.Context) *Meta

SaveX is like Save, but panics if an error occurs.

func (*MetaUpdateOne) Select

func (muo *MetaUpdateOne) Select(field string, fields ...string) *MetaUpdateOne

Select allows selecting one or more fields (columns) of the returned entity. The default is selecting all fields defined in the entity schema.

func (*MetaUpdateOne) SetActive

func (muo *MetaUpdateOne) SetActive(b bool) *MetaUpdateOne

SetActive sets the "active" field.

func (*MetaUpdateOne) SetContainerType

func (muo *MetaUpdateOne) SetContainerType(mt meta.ContainerType) *MetaUpdateOne

SetContainerType sets the "container_type" field.

func (*MetaUpdateOne) SetCreateTime

func (muo *MetaUpdateOne) SetCreateTime(t time.Time) *MetaUpdateOne

SetCreateTime sets the "create_time" field.

func (*MetaUpdateOne) SetFavorite

func (muo *MetaUpdateOne) SetFavorite(b bool) *MetaUpdateOne

SetFavorite sets the "favorite" field.

func (*MetaUpdateOne) SetFileIndices

func (muo *MetaUpdateOne) SetFileIndices(i []int) *MetaUpdateOne

SetFileIndices sets the "file_indices" field.

func (*MetaUpdateOne) SetName

func (muo *MetaUpdateOne) SetName(s string) *MetaUpdateOne

SetName sets the "name" field.

func (*MetaUpdateOne) SetNillableActive

func (muo *MetaUpdateOne) SetNillableActive(b *bool) *MetaUpdateOne

SetNillableActive sets the "active" field if the given value is not nil.

func (*MetaUpdateOne) SetNillableContainerType

func (muo *MetaUpdateOne) SetNillableContainerType(mt *meta.ContainerType) *MetaUpdateOne

SetNillableContainerType sets the "container_type" field if the given value is not nil.

func (*MetaUpdateOne) SetNillableCreateTime

func (muo *MetaUpdateOne) SetNillableCreateTime(t *time.Time) *MetaUpdateOne

SetNillableCreateTime sets the "create_time" field if the given value is not nil.

func (*MetaUpdateOne) SetNillableFavorite

func (muo *MetaUpdateOne) SetNillableFavorite(b *bool) *MetaUpdateOne

SetNillableFavorite sets the "favorite" field if the given value is not nil.

func (*MetaUpdateOne) SetNillableName

func (muo *MetaUpdateOne) SetNillableName(s *string) *MetaUpdateOne

SetNillableName sets the "name" field if the given value is not nil.

func (*MetaUpdateOne) SetNillableRead

func (muo *MetaUpdateOne) SetNillableRead(b *bool) *MetaUpdateOne

SetNillableRead sets the "read" field if the given value is not nil.

func (*MetaUpdateOne) SetRead

func (muo *MetaUpdateOne) SetRead(b bool) *MetaUpdateOne

SetRead sets the "read" field.

func (*MetaUpdateOne) SetThumbnail

func (muo *MetaUpdateOne) SetThumbnail(b []byte) *MetaUpdateOne

SetThumbnail sets the "thumbnail" field.

func (*MetaUpdateOne) Where

func (muo *MetaUpdateOne) Where(ps ...predicate.Meta) *MetaUpdateOne

Where appends a list predicates to the MetaUpdate builder.

type MetaUpsert

type MetaUpsert struct {
	*sql.UpdateSet
}

MetaUpsert is the "OnConflict" setter.

func (*MetaUpsert) ClearThumbnail

func (u *MetaUpsert) ClearThumbnail() *MetaUpsert

ClearThumbnail clears the value of the "thumbnail" field.

func (*MetaUpsert) SetActive

func (u *MetaUpsert) SetActive(v bool) *MetaUpsert

SetActive sets the "active" field.

func (*MetaUpsert) SetContainerType

func (u *MetaUpsert) SetContainerType(v meta.ContainerType) *MetaUpsert

SetContainerType sets the "container_type" field.

func (*MetaUpsert) SetCreateTime

func (u *MetaUpsert) SetCreateTime(v time.Time) *MetaUpsert

SetCreateTime sets the "create_time" field.

func (*MetaUpsert) SetFavorite

func (u *MetaUpsert) SetFavorite(v bool) *MetaUpsert

SetFavorite sets the "favorite" field.

func (*MetaUpsert) SetFileIndices

func (u *MetaUpsert) SetFileIndices(v []int) *MetaUpsert

SetFileIndices sets the "file_indices" field.

func (*MetaUpsert) SetName

func (u *MetaUpsert) SetName(v string) *MetaUpsert

SetName sets the "name" field.

func (*MetaUpsert) SetRead

func (u *MetaUpsert) SetRead(v bool) *MetaUpsert

SetRead sets the "read" field.

func (*MetaUpsert) SetThumbnail

func (u *MetaUpsert) SetThumbnail(v []byte) *MetaUpsert

SetThumbnail sets the "thumbnail" field.

func (*MetaUpsert) UpdateActive

func (u *MetaUpsert) UpdateActive() *MetaUpsert

UpdateActive sets the "active" field to the value that was provided on create.

func (*MetaUpsert) UpdateContainerType

func (u *MetaUpsert) UpdateContainerType() *MetaUpsert

UpdateContainerType sets the "container_type" field to the value that was provided on create.

func (*MetaUpsert) UpdateCreateTime

func (u *MetaUpsert) UpdateCreateTime() *MetaUpsert

UpdateCreateTime sets the "create_time" field to the value that was provided on create.

func (*MetaUpsert) UpdateFavorite

func (u *MetaUpsert) UpdateFavorite() *MetaUpsert

UpdateFavorite sets the "favorite" field to the value that was provided on create.

func (*MetaUpsert) UpdateFileIndices

func (u *MetaUpsert) UpdateFileIndices() *MetaUpsert

UpdateFileIndices sets the "file_indices" field to the value that was provided on create.

func (*MetaUpsert) UpdateName

func (u *MetaUpsert) UpdateName() *MetaUpsert

UpdateName sets the "name" field to the value that was provided on create.

func (*MetaUpsert) UpdateRead

func (u *MetaUpsert) UpdateRead() *MetaUpsert

UpdateRead sets the "read" field to the value that was provided on create.

func (*MetaUpsert) UpdateThumbnail

func (u *MetaUpsert) UpdateThumbnail() *MetaUpsert

UpdateThumbnail sets the "thumbnail" field to the value that was provided on create.

type MetaUpsertBulk

type MetaUpsertBulk struct {
	// contains filtered or unexported fields
}

MetaUpsertBulk is the builder for "upsert"-ing a bulk of Meta nodes.

func (*MetaUpsertBulk) ClearThumbnail

func (u *MetaUpsertBulk) ClearThumbnail() *MetaUpsertBulk

ClearThumbnail clears the value of the "thumbnail" field.

func (*MetaUpsertBulk) DoNothing

func (u *MetaUpsertBulk) DoNothing() *MetaUpsertBulk

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*MetaUpsertBulk) Exec

func (u *MetaUpsertBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*MetaUpsertBulk) ExecX

func (u *MetaUpsertBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*MetaUpsertBulk) Ignore

func (u *MetaUpsertBulk) Ignore() *MetaUpsertBulk

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.Meta.Create().
	OnConflict(sql.ResolveWithIgnore()).
	Exec(ctx)

func (*MetaUpsertBulk) SetActive

func (u *MetaUpsertBulk) SetActive(v bool) *MetaUpsertBulk

SetActive sets the "active" field.

func (*MetaUpsertBulk) SetContainerType

func (u *MetaUpsertBulk) SetContainerType(v meta.ContainerType) *MetaUpsertBulk

SetContainerType sets the "container_type" field.

func (*MetaUpsertBulk) SetCreateTime

func (u *MetaUpsertBulk) SetCreateTime(v time.Time) *MetaUpsertBulk

SetCreateTime sets the "create_time" field.

func (*MetaUpsertBulk) SetFavorite

func (u *MetaUpsertBulk) SetFavorite(v bool) *MetaUpsertBulk

SetFavorite sets the "favorite" field.

func (*MetaUpsertBulk) SetFileIndices

func (u *MetaUpsertBulk) SetFileIndices(v []int) *MetaUpsertBulk

SetFileIndices sets the "file_indices" field.

func (*MetaUpsertBulk) SetName

func (u *MetaUpsertBulk) SetName(v string) *MetaUpsertBulk

SetName sets the "name" field.

func (*MetaUpsertBulk) SetRead

func (u *MetaUpsertBulk) SetRead(v bool) *MetaUpsertBulk

SetRead sets the "read" field.

func (*MetaUpsertBulk) SetThumbnail

func (u *MetaUpsertBulk) SetThumbnail(v []byte) *MetaUpsertBulk

SetThumbnail sets the "thumbnail" field.

func (*MetaUpsertBulk) Update

func (u *MetaUpsertBulk) Update(set func(*MetaUpsert)) *MetaUpsertBulk

Update allows overriding fields `UPDATE` values. See the MetaCreateBulk.OnConflict documentation for more info.

func (*MetaUpsertBulk) UpdateActive

func (u *MetaUpsertBulk) UpdateActive() *MetaUpsertBulk

UpdateActive sets the "active" field to the value that was provided on create.

func (*MetaUpsertBulk) UpdateContainerType

func (u *MetaUpsertBulk) UpdateContainerType() *MetaUpsertBulk

UpdateContainerType sets the "container_type" field to the value that was provided on create.

func (*MetaUpsertBulk) UpdateCreateTime

func (u *MetaUpsertBulk) UpdateCreateTime() *MetaUpsertBulk

UpdateCreateTime sets the "create_time" field to the value that was provided on create.

func (*MetaUpsertBulk) UpdateFavorite

func (u *MetaUpsertBulk) UpdateFavorite() *MetaUpsertBulk

UpdateFavorite sets the "favorite" field to the value that was provided on create.

func (*MetaUpsertBulk) UpdateFileIndices

func (u *MetaUpsertBulk) UpdateFileIndices() *MetaUpsertBulk

UpdateFileIndices sets the "file_indices" field to the value that was provided on create.

func (*MetaUpsertBulk) UpdateName

func (u *MetaUpsertBulk) UpdateName() *MetaUpsertBulk

UpdateName sets the "name" field to the value that was provided on create.

func (*MetaUpsertBulk) UpdateNewValues

func (u *MetaUpsertBulk) UpdateNewValues() *MetaUpsertBulk

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.Meta.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

func (*MetaUpsertBulk) UpdateRead

func (u *MetaUpsertBulk) UpdateRead() *MetaUpsertBulk

UpdateRead sets the "read" field to the value that was provided on create.

func (*MetaUpsertBulk) UpdateThumbnail

func (u *MetaUpsertBulk) UpdateThumbnail() *MetaUpsertBulk

UpdateThumbnail sets the "thumbnail" field to the value that was provided on create.

type MetaUpsertOne

type MetaUpsertOne struct {
	// contains filtered or unexported fields
}

MetaUpsertOne is the builder for "upsert"-ing

one Meta node.

func (*MetaUpsertOne) ClearThumbnail

func (u *MetaUpsertOne) ClearThumbnail() *MetaUpsertOne

ClearThumbnail clears the value of the "thumbnail" field.

func (*MetaUpsertOne) DoNothing

func (u *MetaUpsertOne) DoNothing() *MetaUpsertOne

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*MetaUpsertOne) Exec

func (u *MetaUpsertOne) Exec(ctx context.Context) error

Exec executes the query.

func (*MetaUpsertOne) ExecX

func (u *MetaUpsertOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*MetaUpsertOne) ID

func (u *MetaUpsertOne) ID(ctx context.Context) (id int, err error)

Exec executes the UPSERT query and returns the inserted/updated ID.

func (*MetaUpsertOne) IDX

func (u *MetaUpsertOne) IDX(ctx context.Context) int

IDX is like ID, but panics if an error occurs.

func (*MetaUpsertOne) Ignore

func (u *MetaUpsertOne) Ignore() *MetaUpsertOne

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.Meta.Create().
    OnConflict(sql.ResolveWithIgnore()).
    Exec(ctx)

func (*MetaUpsertOne) SetActive

func (u *MetaUpsertOne) SetActive(v bool) *MetaUpsertOne

SetActive sets the "active" field.

func (*MetaUpsertOne) SetContainerType

func (u *MetaUpsertOne) SetContainerType(v meta.ContainerType) *MetaUpsertOne

SetContainerType sets the "container_type" field.

func (*MetaUpsertOne) SetCreateTime

func (u *MetaUpsertOne) SetCreateTime(v time.Time) *MetaUpsertOne

SetCreateTime sets the "create_time" field.

func (*MetaUpsertOne) SetFavorite

func (u *MetaUpsertOne) SetFavorite(v bool) *MetaUpsertOne

SetFavorite sets the "favorite" field.

func (*MetaUpsertOne) SetFileIndices

func (u *MetaUpsertOne) SetFileIndices(v []int) *MetaUpsertOne

SetFileIndices sets the "file_indices" field.

func (*MetaUpsertOne) SetName

func (u *MetaUpsertOne) SetName(v string) *MetaUpsertOne

SetName sets the "name" field.

func (*MetaUpsertOne) SetRead

func (u *MetaUpsertOne) SetRead(v bool) *MetaUpsertOne

SetRead sets the "read" field.

func (*MetaUpsertOne) SetThumbnail

func (u *MetaUpsertOne) SetThumbnail(v []byte) *MetaUpsertOne

SetThumbnail sets the "thumbnail" field.

func (*MetaUpsertOne) Update

func (u *MetaUpsertOne) Update(set func(*MetaUpsert)) *MetaUpsertOne

Update allows overriding fields `UPDATE` values. See the MetaCreate.OnConflict documentation for more info.

func (*MetaUpsertOne) UpdateActive

func (u *MetaUpsertOne) UpdateActive() *MetaUpsertOne

UpdateActive sets the "active" field to the value that was provided on create.

func (*MetaUpsertOne) UpdateContainerType

func (u *MetaUpsertOne) UpdateContainerType() *MetaUpsertOne

UpdateContainerType sets the "container_type" field to the value that was provided on create.

func (*MetaUpsertOne) UpdateCreateTime

func (u *MetaUpsertOne) UpdateCreateTime() *MetaUpsertOne

UpdateCreateTime sets the "create_time" field to the value that was provided on create.

func (*MetaUpsertOne) UpdateFavorite

func (u *MetaUpsertOne) UpdateFavorite() *MetaUpsertOne

UpdateFavorite sets the "favorite" field to the value that was provided on create.

func (*MetaUpsertOne) UpdateFileIndices

func (u *MetaUpsertOne) UpdateFileIndices() *MetaUpsertOne

UpdateFileIndices sets the "file_indices" field to the value that was provided on create.

func (*MetaUpsertOne) UpdateName

func (u *MetaUpsertOne) UpdateName() *MetaUpsertOne

UpdateName sets the "name" field to the value that was provided on create.

func (*MetaUpsertOne) UpdateNewValues

func (u *MetaUpsertOne) UpdateNewValues() *MetaUpsertOne

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.Meta.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

func (*MetaUpsertOne) UpdateRead

func (u *MetaUpsertOne) UpdateRead() *MetaUpsertOne

UpdateRead sets the "read" field to the value that was provided on create.

func (*MetaUpsertOne) UpdateThumbnail

func (u *MetaUpsertOne) UpdateThumbnail() *MetaUpsertOne

UpdateThumbnail sets the "thumbnail" field to the value that was provided on create.

type MutateFunc

type MutateFunc = ent.MutateFunc

ent aliases to avoid import conflicts in user's code.

type Mutation

type Mutation = ent.Mutation

ent aliases to avoid import conflicts in user's code.

type Mutator

type Mutator = ent.Mutator

ent aliases to avoid import conflicts in user's code.

type NotFoundError

type NotFoundError struct {
	// contains filtered or unexported fields
}

NotFoundError returns when trying to fetch a specific entity and it was not found in the database.

func (*NotFoundError) Error

func (e *NotFoundError) Error() string

Error implements the error interface.

type NotLoadedError

type NotLoadedError struct {
	// contains filtered or unexported fields
}

NotLoadedError returns when trying to get a node that was not loaded by the query.

func (*NotLoadedError) Error

func (e *NotLoadedError) Error() string

Error implements the error interface.

type NotSingularError

type NotSingularError struct {
	// contains filtered or unexported fields
}

NotSingularError returns when trying to fetch a singular entity and more then one was found in the database.

func (*NotSingularError) Error

func (e *NotSingularError) Error() string

Error implements the error interface.

type Op

type Op = ent.Op

ent aliases to avoid import conflicts in user's code.

type Option

type Option func(*config)

Option function to configure the client.

func Debug

func Debug() Option

Debug enables debug logging on the ent.Driver.

func Driver

func Driver(driver dialect.Driver) Option

Driver configures the client driver.

func Log

func Log(fn func(...any)) Option

Log sets the logging function for debug mode.

type OrderFunc

type OrderFunc func(*sql.Selector)

OrderFunc applies an ordering on the sql selector. Deprecated: Use Asc/Desc functions or the package builders instead.

type Policy

type Policy = ent.Policy

ent aliases to avoid import conflicts in user's code.

type Querier

type Querier = ent.Querier

ent aliases to avoid import conflicts in user's code.

type QuerierFunc

type QuerierFunc = ent.QuerierFunc

ent aliases to avoid import conflicts in user's code.

type Query

type Query = ent.Query

ent aliases to avoid import conflicts in user's code.

type QueryContext

type QueryContext = ent.QueryContext

ent aliases to avoid import conflicts in user's code.

type RollbackFunc

type RollbackFunc func(context.Context, *Tx) error

The RollbackFunc type is an adapter to allow the use of ordinary function as a Rollbacker. If f is a function with the appropriate signature, RollbackFunc(f) is a Rollbacker that calls f.

func (RollbackFunc) Rollback

func (f RollbackFunc) Rollback(ctx context.Context, tx *Tx) error

Rollback calls f(ctx, m).

type RollbackHook

type RollbackHook func(Rollbacker) Rollbacker

RollbackHook defines the "rollback middleware". A function that gets a Rollbacker and returns a Rollbacker. For example:

hook := func(next ent.Rollbacker) ent.Rollbacker {
	return ent.RollbackFunc(func(ctx context.Context, tx *ent.Tx) error {
		// Do some stuff before.
		if err := next.Rollback(ctx, tx); err != nil {
			return err
		}
		// Do some stuff after.
		return nil
	})
}

type Rollbacker

type Rollbacker interface {
	Rollback(context.Context, *Tx) error
}

Rollbacker is the interface that wraps the Rollback method.

type Tag

type Tag struct {

	// ID of the ent.
	ID int `json:"id,omitempty"`
	// Name holds the value of the "name" field.
	Name string `json:"name,omitempty"`
	// Favorite holds the value of the "favorite" field.
	Favorite bool `json:"favorite,omitempty"`
	// Hidden holds the value of the "hidden" field.
	Hidden bool `json:"hidden,omitempty"`
	// Thumbnail holds the value of the "thumbnail" field.
	Thumbnail []byte `json:"-"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the TagQuery when eager-loading is set.
	Edges TagEdges `json:"edges"`
	// contains filtered or unexported fields
}

Tag is the model entity for the Tag schema.

func (*Tag) QueryMeta

func (t *Tag) QueryMeta() *MetaQuery

QueryMeta queries the "meta" edge of the Tag entity.

func (*Tag) QueryUser

func (t *Tag) QueryUser() *UserQuery

QueryUser queries the "user" edge of the Tag entity.

func (*Tag) String

func (t *Tag) String() string

String implements the fmt.Stringer.

func (*Tag) Unwrap

func (t *Tag) Unwrap() *Tag

Unwrap unwraps the Tag entity that was returned from a transaction after it was closed, so that all future queries will be executed through the driver which created the transaction.

func (*Tag) Update

func (t *Tag) Update() *TagUpdateOne

Update returns a builder for updating this Tag. Note that you need to call Tag.Unwrap() before calling this method if this Tag was returned from a transaction, and the transaction was committed or rolled back.

func (*Tag) Value

func (t *Tag) Value(name string) (ent.Value, error)

Value returns the ent.Value that was dynamically selected and assigned to the Tag. This includes values selected through modifiers, order, etc.

type TagClient

type TagClient struct {
	// contains filtered or unexported fields
}

TagClient is a client for the Tag schema.

func NewTagClient

func NewTagClient(c config) *TagClient

NewTagClient returns a client for the Tag from the given config.

func (*TagClient) Create

func (c *TagClient) Create() *TagCreate

Create returns a builder for creating a Tag entity.

func (*TagClient) CreateBulk

func (c *TagClient) CreateBulk(builders ...*TagCreate) *TagCreateBulk

CreateBulk returns a builder for creating a bulk of Tag entities.

func (*TagClient) Delete

func (c *TagClient) Delete() *TagDelete

Delete returns a delete builder for Tag.

func (*TagClient) DeleteOne

func (c *TagClient) DeleteOne(t *Tag) *TagDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*TagClient) DeleteOneID

func (c *TagClient) DeleteOneID(id int) *TagDeleteOne

DeleteOneID returns a builder for deleting the given entity by its id.

func (*TagClient) Get

func (c *TagClient) Get(ctx context.Context, id int) (*Tag, error)

Get returns a Tag entity by its id.

func (*TagClient) GetX

func (c *TagClient) GetX(ctx context.Context, id int) *Tag

GetX is like Get, but panics if an error occurs.

func (*TagClient) Hooks

func (c *TagClient) Hooks() []Hook

Hooks returns the client hooks.

func (*TagClient) Intercept

func (c *TagClient) Intercept(interceptors ...Interceptor)

Intercept adds a list of query interceptors to the interceptors stack. A call to `Intercept(f, g, h)` equals to `tag.Intercept(f(g(h())))`.

func (*TagClient) Interceptors

func (c *TagClient) Interceptors() []Interceptor

Interceptors returns the client interceptors.

func (*TagClient) MapCreateBulk

func (c *TagClient) MapCreateBulk(slice any, setFunc func(*TagCreate, int)) *TagCreateBulk

MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates a builder and applies setFunc on it.

func (*TagClient) Query

func (c *TagClient) Query() *TagQuery

Query returns a query builder for Tag.

func (*TagClient) QueryMeta

func (c *TagClient) QueryMeta(t *Tag) *MetaQuery

QueryMeta queries the meta edge of a Tag.

func (*TagClient) QueryUser

func (c *TagClient) QueryUser(t *Tag) *UserQuery

QueryUser queries the user edge of a Tag.

func (*TagClient) Update

func (c *TagClient) Update() *TagUpdate

Update returns an update builder for Tag.

func (*TagClient) UpdateOne

func (c *TagClient) UpdateOne(t *Tag) *TagUpdateOne

UpdateOne returns an update builder for the given entity.

func (*TagClient) UpdateOneID

func (c *TagClient) UpdateOneID(id int) *TagUpdateOne

UpdateOneID returns an update builder for the given id.

func (*TagClient) Use

func (c *TagClient) Use(hooks ...Hook)

Use adds a list of mutation hooks to the hooks stack. A call to `Use(f, g, h)` equals to `tag.Hooks(f(g(h())))`.

type TagCreate

type TagCreate struct {
	// contains filtered or unexported fields
}

TagCreate is the builder for creating a Tag entity.

func (*TagCreate) AddMeta

func (tc *TagCreate) AddMeta(m ...*Meta) *TagCreate

AddMeta adds the "meta" edges to the Meta entity.

func (*TagCreate) AddMetumIDs

func (tc *TagCreate) AddMetumIDs(ids ...int) *TagCreate

AddMetumIDs adds the "meta" edge to the Meta entity by IDs.

func (*TagCreate) AddUser

func (tc *TagCreate) AddUser(u ...*User) *TagCreate

AddUser adds the "user" edges to the User entity.

func (*TagCreate) AddUserIDs

func (tc *TagCreate) AddUserIDs(ids ...int) *TagCreate

AddUserIDs adds the "user" edge to the User entity by IDs.

func (*TagCreate) Exec

func (tc *TagCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*TagCreate) ExecX

func (tc *TagCreate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*TagCreate) Mutation

func (tc *TagCreate) Mutation() *TagMutation

Mutation returns the TagMutation object of the builder.

func (*TagCreate) OnConflict

func (tc *TagCreate) OnConflict(opts ...sql.ConflictOption) *TagUpsertOne

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.Tag.Create().
	SetName(v).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.TagUpsert) {
		SetName(v+v).
	}).
	Exec(ctx)

func (*TagCreate) OnConflictColumns

func (tc *TagCreate) OnConflictColumns(columns ...string) *TagUpsertOne

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.Tag.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*TagCreate) Save

func (tc *TagCreate) Save(ctx context.Context) (*Tag, error)

Save creates the Tag in the database.

func (*TagCreate) SaveX

func (tc *TagCreate) SaveX(ctx context.Context) *Tag

SaveX calls Save and panics if Save returns an error.

func (*TagCreate) SetFavorite

func (tc *TagCreate) SetFavorite(b bool) *TagCreate

SetFavorite sets the "favorite" field.

func (*TagCreate) SetHidden

func (tc *TagCreate) SetHidden(b bool) *TagCreate

SetHidden sets the "hidden" field.

func (*TagCreate) SetName

func (tc *TagCreate) SetName(s string) *TagCreate

SetName sets the "name" field.

func (*TagCreate) SetNillableFavorite

func (tc *TagCreate) SetNillableFavorite(b *bool) *TagCreate

SetNillableFavorite sets the "favorite" field if the given value is not nil.

func (*TagCreate) SetNillableHidden

func (tc *TagCreate) SetNillableHidden(b *bool) *TagCreate

SetNillableHidden sets the "hidden" field if the given value is not nil.

func (*TagCreate) SetThumbnail

func (tc *TagCreate) SetThumbnail(b []byte) *TagCreate

SetThumbnail sets the "thumbnail" field.

type TagCreateBulk

type TagCreateBulk struct {
	// contains filtered or unexported fields
}

TagCreateBulk is the builder for creating many Tag entities in bulk.

func (*TagCreateBulk) Exec

func (tcb *TagCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*TagCreateBulk) ExecX

func (tcb *TagCreateBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*TagCreateBulk) OnConflict

func (tcb *TagCreateBulk) OnConflict(opts ...sql.ConflictOption) *TagUpsertBulk

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.Tag.CreateBulk(builders...).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.TagUpsert) {
		SetName(v+v).
	}).
	Exec(ctx)

func (*TagCreateBulk) OnConflictColumns

func (tcb *TagCreateBulk) OnConflictColumns(columns ...string) *TagUpsertBulk

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.Tag.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*TagCreateBulk) Save

func (tcb *TagCreateBulk) Save(ctx context.Context) ([]*Tag, error)

Save creates the Tag entities in the database.

func (*TagCreateBulk) SaveX

func (tcb *TagCreateBulk) SaveX(ctx context.Context) []*Tag

SaveX is like Save, but panics if an error occurs.

type TagDelete

type TagDelete struct {
	// contains filtered or unexported fields
}

TagDelete is the builder for deleting a Tag entity.

func (*TagDelete) Exec

func (td *TagDelete) Exec(ctx context.Context) (int, error)

Exec executes the deletion query and returns how many vertices were deleted.

func (*TagDelete) ExecX

func (td *TagDelete) ExecX(ctx context.Context) int

ExecX is like Exec, but panics if an error occurs.

func (*TagDelete) Where

func (td *TagDelete) Where(ps ...predicate.Tag) *TagDelete

Where appends a list predicates to the TagDelete builder.

type TagDeleteOne

type TagDeleteOne struct {
	// contains filtered or unexported fields
}

TagDeleteOne is the builder for deleting a single Tag entity.

func (*TagDeleteOne) Exec

func (tdo *TagDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*TagDeleteOne) ExecX

func (tdo *TagDeleteOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*TagDeleteOne) Where

func (tdo *TagDeleteOne) Where(ps ...predicate.Tag) *TagDeleteOne

Where appends a list predicates to the TagDelete builder.

type TagEdges

type TagEdges struct {
	// Meta holds the value of the meta edge.
	Meta []*Meta `json:"meta,omitempty"`
	// User holds the value of the user edge.
	User []*User `json:"user,omitempty"`
	// contains filtered or unexported fields
}

TagEdges holds the relations/edges for other nodes in the graph.

func (TagEdges) MetaOrErr

func (e TagEdges) MetaOrErr() ([]*Meta, error)

MetaOrErr returns the Meta value or an error if the edge was not loaded in eager-loading.

func (TagEdges) UserOrErr

func (e TagEdges) UserOrErr() ([]*User, error)

UserOrErr returns the User value or an error if the edge was not loaded in eager-loading.

type TagGroupBy

type TagGroupBy struct {
	// contains filtered or unexported fields
}

TagGroupBy is the group-by builder for Tag entities.

func (*TagGroupBy) Aggregate

func (tgb *TagGroupBy) Aggregate(fns ...AggregateFunc) *TagGroupBy

Aggregate adds the given aggregation functions to the group-by query.

func (*TagGroupBy) Bool

func (s *TagGroupBy) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) BoolX

func (s *TagGroupBy) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*TagGroupBy) Bools

func (s *TagGroupBy) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) BoolsX

func (s *TagGroupBy) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*TagGroupBy) Float64

func (s *TagGroupBy) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) Float64X

func (s *TagGroupBy) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*TagGroupBy) Float64s

func (s *TagGroupBy) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) Float64sX

func (s *TagGroupBy) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*TagGroupBy) Int

func (s *TagGroupBy) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) IntX

func (s *TagGroupBy) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*TagGroupBy) Ints

func (s *TagGroupBy) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) IntsX

func (s *TagGroupBy) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*TagGroupBy) Scan

func (tgb *TagGroupBy) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*TagGroupBy) ScanX

func (s *TagGroupBy) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*TagGroupBy) String

func (s *TagGroupBy) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) StringX

func (s *TagGroupBy) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*TagGroupBy) Strings

func (s *TagGroupBy) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*TagGroupBy) StringsX

func (s *TagGroupBy) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type TagMutation

type TagMutation struct {
	// contains filtered or unexported fields
}

TagMutation represents an operation that mutates the Tag nodes in the graph.

func (*TagMutation) AddField

func (m *TagMutation) AddField(name string, value ent.Value) error

AddField adds the value to the field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*TagMutation) AddMetumIDs

func (m *TagMutation) AddMetumIDs(ids ...int)

AddMetumIDs adds the "meta" edge to the Meta entity by ids.

func (*TagMutation) AddUserIDs

func (m *TagMutation) AddUserIDs(ids ...int)

AddUserIDs adds the "user" edge to the User entity by ids.

func (*TagMutation) AddedEdges

func (m *TagMutation) AddedEdges() []string

AddedEdges returns all edge names that were set/added in this mutation.

func (*TagMutation) AddedField

func (m *TagMutation) AddedField(name string) (ent.Value, bool)

AddedField returns the numeric value that was incremented/decremented on a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*TagMutation) AddedFields

func (m *TagMutation) AddedFields() []string

AddedFields returns all numeric fields that were incremented/decremented during this mutation.

func (*TagMutation) AddedIDs

func (m *TagMutation) AddedIDs(name string) []ent.Value

AddedIDs returns all IDs (to other nodes) that were added for the given edge name in this mutation.

func (*TagMutation) ClearEdge

func (m *TagMutation) ClearEdge(name string) error

ClearEdge clears the value of the edge with the given name. It returns an error if that edge is not defined in the schema.

func (*TagMutation) ClearField

func (m *TagMutation) ClearField(name string) error

ClearField clears the value of the field with the given name. It returns an error if the field is not defined in the schema.

func (*TagMutation) ClearMeta

func (m *TagMutation) ClearMeta()

ClearMeta clears the "meta" edge to the Meta entity.

func (*TagMutation) ClearThumbnail

func (m *TagMutation) ClearThumbnail()

ClearThumbnail clears the value of the "thumbnail" field.

func (*TagMutation) ClearUser

func (m *TagMutation) ClearUser()

ClearUser clears the "user" edge to the User entity.

func (*TagMutation) ClearedEdges

func (m *TagMutation) ClearedEdges() []string

ClearedEdges returns all edge names that were cleared in this mutation.

func (*TagMutation) ClearedFields

func (m *TagMutation) ClearedFields() []string

ClearedFields returns all nullable fields that were cleared during this mutation.

func (TagMutation) Client

func (m TagMutation) Client() *Client

Client returns a new `ent.Client` from the mutation. If the mutation was executed in a transaction (ent.Tx), a transactional client is returned.

func (*TagMutation) EdgeCleared

func (m *TagMutation) EdgeCleared(name string) bool

EdgeCleared returns a boolean which indicates if the edge with the given name was cleared in this mutation.

func (*TagMutation) Favorite

func (m *TagMutation) Favorite() (r bool, exists bool)

Favorite returns the value of the "favorite" field in the mutation.

func (*TagMutation) Field

func (m *TagMutation) Field(name string) (ent.Value, bool)

Field returns the value of a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*TagMutation) FieldCleared

func (m *TagMutation) FieldCleared(name string) bool

FieldCleared returns a boolean indicating if a field with the given name was cleared in this mutation.

func (*TagMutation) Fields

func (m *TagMutation) Fields() []string

Fields returns all fields that were changed during this mutation. Note that in order to get all numeric fields that were incremented/decremented, call AddedFields().

func (*TagMutation) Hidden

func (m *TagMutation) Hidden() (r bool, exists bool)

Hidden returns the value of the "hidden" field in the mutation.

func (*TagMutation) ID

func (m *TagMutation) ID() (id int, exists bool)

ID returns the ID value in the mutation. Note that the ID is only available if it was provided to the builder or after it was returned from the database.

func (*TagMutation) IDs

func (m *TagMutation) IDs(ctx context.Context) ([]int, error)

IDs queries the database and returns the entity ids that match the mutation's predicate. That means, if the mutation is applied within a transaction with an isolation level such as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated or updated by the mutation.

func (*TagMutation) MetaCleared

func (m *TagMutation) MetaCleared() bool

MetaCleared reports if the "meta" edge to the Meta entity was cleared.

func (*TagMutation) MetaIDs

func (m *TagMutation) MetaIDs() (ids []int)

MetaIDs returns the "meta" edge IDs in the mutation.

func (*TagMutation) Name

func (m *TagMutation) Name() (r string, exists bool)

Name returns the value of the "name" field in the mutation.

func (*TagMutation) OldFavorite

func (m *TagMutation) OldFavorite(ctx context.Context) (v bool, err error)

OldFavorite returns the old "favorite" field's value of the Tag entity. If the Tag object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*TagMutation) OldField

func (m *TagMutation) OldField(ctx context.Context, name string) (ent.Value, error)

OldField returns the old value of the field from the database. An error is returned if the mutation operation is not UpdateOne, or the query to the database failed.

func (*TagMutation) OldHidden

func (m *TagMutation) OldHidden(ctx context.Context) (v bool, err error)

OldHidden returns the old "hidden" field's value of the Tag entity. If the Tag object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*TagMutation) OldName

func (m *TagMutation) OldName(ctx context.Context) (v string, err error)

OldName returns the old "name" field's value of the Tag entity. If the Tag object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*TagMutation) OldThumbnail

func (m *TagMutation) OldThumbnail(ctx context.Context) (v []byte, err error)

OldThumbnail returns the old "thumbnail" field's value of the Tag entity. If the Tag object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*TagMutation) Op

func (m *TagMutation) Op() Op

Op returns the operation name.

func (*TagMutation) RemoveMetumIDs

func (m *TagMutation) RemoveMetumIDs(ids ...int)

RemoveMetumIDs removes the "meta" edge to the Meta entity by IDs.

func (*TagMutation) RemoveUserIDs

func (m *TagMutation) RemoveUserIDs(ids ...int)

RemoveUserIDs removes the "user" edge to the User entity by IDs.

func (*TagMutation) RemovedEdges

func (m *TagMutation) RemovedEdges() []string

RemovedEdges returns all edge names that were removed in this mutation.

func (*TagMutation) RemovedIDs

func (m *TagMutation) RemovedIDs(name string) []ent.Value

RemovedIDs returns all IDs (to other nodes) that were removed for the edge with the given name in this mutation.

func (*TagMutation) RemovedMetaIDs

func (m *TagMutation) RemovedMetaIDs() (ids []int)

RemovedMeta returns the removed IDs of the "meta" edge to the Meta entity.

func (*TagMutation) RemovedUserIDs

func (m *TagMutation) RemovedUserIDs() (ids []int)

RemovedUser returns the removed IDs of the "user" edge to the User entity.

func (*TagMutation) ResetEdge

func (m *TagMutation) ResetEdge(name string) error

ResetEdge resets all changes to the edge with the given name in this mutation. It returns an error if the edge is not defined in the schema.

func (*TagMutation) ResetFavorite

func (m *TagMutation) ResetFavorite()

ResetFavorite resets all changes to the "favorite" field.

func (*TagMutation) ResetField

func (m *TagMutation) ResetField(name string) error

ResetField resets all changes in the mutation for the field with the given name. It returns an error if the field is not defined in the schema.

func (*TagMutation) ResetHidden

func (m *TagMutation) ResetHidden()

ResetHidden resets all changes to the "hidden" field.

func (*TagMutation) ResetMeta

func (m *TagMutation) ResetMeta()

ResetMeta resets all changes to the "meta" edge.

func (*TagMutation) ResetName

func (m *TagMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*TagMutation) ResetThumbnail

func (m *TagMutation) ResetThumbnail()

ResetThumbnail resets all changes to the "thumbnail" field.

func (*TagMutation) ResetUser

func (m *TagMutation) ResetUser()

ResetUser resets all changes to the "user" edge.

func (*TagMutation) SetFavorite

func (m *TagMutation) SetFavorite(b bool)

SetFavorite sets the "favorite" field.

func (*TagMutation) SetField

func (m *TagMutation) SetField(name string, value ent.Value) error

SetField sets the value of a field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*TagMutation) SetHidden

func (m *TagMutation) SetHidden(b bool)

SetHidden sets the "hidden" field.

func (*TagMutation) SetName

func (m *TagMutation) SetName(s string)

SetName sets the "name" field.

func (*TagMutation) SetOp

func (m *TagMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*TagMutation) SetThumbnail

func (m *TagMutation) SetThumbnail(b []byte)

SetThumbnail sets the "thumbnail" field.

func (*TagMutation) Thumbnail

func (m *TagMutation) Thumbnail() (r []byte, exists bool)

Thumbnail returns the value of the "thumbnail" field in the mutation.

func (*TagMutation) ThumbnailCleared

func (m *TagMutation) ThumbnailCleared() bool

ThumbnailCleared returns if the "thumbnail" field was cleared in this mutation.

func (TagMutation) Tx

func (m TagMutation) Tx() (*Tx, error)

Tx returns an `ent.Tx` for mutations that were executed in transactions; it returns an error otherwise.

func (*TagMutation) Type

func (m *TagMutation) Type() string

Type returns the node type of this mutation (Tag).

func (*TagMutation) UserCleared

func (m *TagMutation) UserCleared() bool

UserCleared reports if the "user" edge to the User entity was cleared.

func (*TagMutation) UserIDs

func (m *TagMutation) UserIDs() (ids []int)

UserIDs returns the "user" edge IDs in the mutation.

func (*TagMutation) Where

func (m *TagMutation) Where(ps ...predicate.Tag)

Where appends a list predicates to the TagMutation builder.

func (*TagMutation) WhereP

func (m *TagMutation) WhereP(ps ...func(*sql.Selector))

WhereP appends storage-level predicates to the TagMutation builder. Using this method, users can use type-assertion to append predicates that do not depend on any generated package.

type TagQuery

type TagQuery struct {
	// contains filtered or unexported fields
}

TagQuery is the builder for querying Tag entities.

func (*TagQuery) Aggregate

func (tq *TagQuery) Aggregate(fns ...AggregateFunc) *TagSelect

Aggregate returns a TagSelect configured with the given aggregations.

func (*TagQuery) All

func (tq *TagQuery) All(ctx context.Context) ([]*Tag, error)

All executes the query and returns a list of Tags.

func (*TagQuery) AllX

func (tq *TagQuery) AllX(ctx context.Context) []*Tag

AllX is like All, but panics if an error occurs.

func (*TagQuery) Clone

func (tq *TagQuery) Clone() *TagQuery

Clone returns a duplicate of the TagQuery builder, including all associated steps. It can be used to prepare common query builders and use them differently after the clone is made.

func (*TagQuery) Count

func (tq *TagQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*TagQuery) CountX

func (tq *TagQuery) CountX(ctx context.Context) int

CountX is like Count, but panics if an error occurs.

func (*TagQuery) Exist

func (tq *TagQuery) Exist(ctx context.Context) (bool, error)

Exist returns true if the query has elements in the graph.

func (*TagQuery) ExistX

func (tq *TagQuery) ExistX(ctx context.Context) bool

ExistX is like Exist, but panics if an error occurs.

func (*TagQuery) First

func (tq *TagQuery) First(ctx context.Context) (*Tag, error)

First returns the first Tag entity from the query. Returns a *NotFoundError when no Tag was found.

func (*TagQuery) FirstID

func (tq *TagQuery) FirstID(ctx context.Context) (id int, err error)

FirstID returns the first Tag ID from the query. Returns a *NotFoundError when no Tag ID was found.

func (*TagQuery) FirstIDX

func (tq *TagQuery) FirstIDX(ctx context.Context) int

FirstIDX is like FirstID, but panics if an error occurs.

func (*TagQuery) FirstX

func (tq *TagQuery) FirstX(ctx context.Context) *Tag

FirstX is like First, but panics if an error occurs.

func (*TagQuery) GroupBy

func (tq *TagQuery) GroupBy(field string, fields ...string) *TagGroupBy

GroupBy is used to group vertices by one or more fields/columns. It is often used with aggregate functions, like: count, max, mean, min, sum.

Example:

var v []struct {
	Name string `json:"name,omitempty"`
	Count int `json:"count,omitempty"`
}

client.Tag.Query().
	GroupBy(tag.FieldName).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*TagQuery) IDs

func (tq *TagQuery) IDs(ctx context.Context) (ids []int, err error)

IDs executes the query and returns a list of Tag IDs.

func (*TagQuery) IDsX

func (tq *TagQuery) IDsX(ctx context.Context) []int

IDsX is like IDs, but panics if an error occurs.

func (*TagQuery) Limit

func (tq *TagQuery) Limit(limit int) *TagQuery

Limit the number of records to be returned by this query.

func (*TagQuery) Offset

func (tq *TagQuery) Offset(offset int) *TagQuery

Offset to start from.

func (*TagQuery) Only

func (tq *TagQuery) Only(ctx context.Context) (*Tag, error)

Only returns a single Tag entity found by the query, ensuring it only returns one. Returns a *NotSingularError when more than one Tag entity is found. Returns a *NotFoundError when no Tag entities are found.

func (*TagQuery) OnlyID

func (tq *TagQuery) OnlyID(ctx context.Context) (id int, err error)

OnlyID is like Only, but returns the only Tag ID in the query. Returns a *NotSingularError when more than one Tag ID is found. Returns a *NotFoundError when no entities are found.

func (*TagQuery) OnlyIDX

func (tq *TagQuery) OnlyIDX(ctx context.Context) int

OnlyIDX is like OnlyID, but panics if an error occurs.

func (*TagQuery) OnlyX

func (tq *TagQuery) OnlyX(ctx context.Context) *Tag

OnlyX is like Only, but panics if an error occurs.

func (*TagQuery) Order

func (tq *TagQuery) Order(o ...tag.OrderOption) *TagQuery

Order specifies how the records should be ordered.

func (*TagQuery) QueryMeta

func (tq *TagQuery) QueryMeta() *MetaQuery

QueryMeta chains the current query on the "meta" edge.

func (*TagQuery) QueryUser

func (tq *TagQuery) QueryUser() *UserQuery

QueryUser chains the current query on the "user" edge.

func (*TagQuery) Select

func (tq *TagQuery) Select(fields ...string) *TagSelect

Select allows the selection one or more fields/columns for the given query, instead of selecting all fields in the entity.

Example:

var v []struct {
	Name string `json:"name,omitempty"`
}

client.Tag.Query().
	Select(tag.FieldName).
	Scan(ctx, &v)

func (*TagQuery) Unique

func (tq *TagQuery) Unique(unique bool) *TagQuery

Unique configures the query builder to filter duplicate records on query. By default, unique is set to true, and can be disabled using this method.

func (*TagQuery) Where

func (tq *TagQuery) Where(ps ...predicate.Tag) *TagQuery

Where adds a new predicate for the TagQuery builder.

func (*TagQuery) WithMeta

func (tq *TagQuery) WithMeta(opts ...func(*MetaQuery)) *TagQuery

WithMeta tells the query-builder to eager-load the nodes that are connected to the "meta" edge. The optional arguments are used to configure the query builder of the edge.

func (*TagQuery) WithUser

func (tq *TagQuery) WithUser(opts ...func(*UserQuery)) *TagQuery

WithUser tells the query-builder to eager-load the nodes that are connected to the "user" edge. The optional arguments are used to configure the query builder of the edge.

type TagSelect

type TagSelect struct {
	*TagQuery
	// contains filtered or unexported fields
}

TagSelect is the builder for selecting fields of Tag entities.

func (*TagSelect) Aggregate

func (ts *TagSelect) Aggregate(fns ...AggregateFunc) *TagSelect

Aggregate adds the given aggregation functions to the selector query.

func (*TagSelect) Bool

func (s *TagSelect) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*TagSelect) BoolX

func (s *TagSelect) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*TagSelect) Bools

func (s *TagSelect) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*TagSelect) BoolsX

func (s *TagSelect) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*TagSelect) Float64

func (s *TagSelect) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*TagSelect) Float64X

func (s *TagSelect) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*TagSelect) Float64s

func (s *TagSelect) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*TagSelect) Float64sX

func (s *TagSelect) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*TagSelect) Int

func (s *TagSelect) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*TagSelect) IntX

func (s *TagSelect) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*TagSelect) Ints

func (s *TagSelect) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*TagSelect) IntsX

func (s *TagSelect) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*TagSelect) Scan

func (ts *TagSelect) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*TagSelect) ScanX

func (s *TagSelect) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*TagSelect) String

func (s *TagSelect) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*TagSelect) StringX

func (s *TagSelect) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*TagSelect) Strings

func (s *TagSelect) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*TagSelect) StringsX

func (s *TagSelect) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type TagUpdate

type TagUpdate struct {
	// contains filtered or unexported fields
}

TagUpdate is the builder for updating Tag entities.

func (*TagUpdate) AddMeta

func (tu *TagUpdate) AddMeta(m ...*Meta) *TagUpdate

AddMeta adds the "meta" edges to the Meta entity.

func (*TagUpdate) AddMetumIDs

func (tu *TagUpdate) AddMetumIDs(ids ...int) *TagUpdate

AddMetumIDs adds the "meta" edge to the Meta entity by IDs.

func (*TagUpdate) AddUser

func (tu *TagUpdate) AddUser(u ...*User) *TagUpdate

AddUser adds the "user" edges to the User entity.

func (*TagUpdate) AddUserIDs

func (tu *TagUpdate) AddUserIDs(ids ...int) *TagUpdate

AddUserIDs adds the "user" edge to the User entity by IDs.

func (*TagUpdate) ClearMeta

func (tu *TagUpdate) ClearMeta() *TagUpdate

ClearMeta clears all "meta" edges to the Meta entity.

func (*TagUpdate) ClearThumbnail

func (tu *TagUpdate) ClearThumbnail() *TagUpdate

ClearThumbnail clears the value of the "thumbnail" field.

func (*TagUpdate) ClearUser

func (tu *TagUpdate) ClearUser() *TagUpdate

ClearUser clears all "user" edges to the User entity.

func (*TagUpdate) Exec

func (tu *TagUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*TagUpdate) ExecX

func (tu *TagUpdate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*TagUpdate) Mutation

func (tu *TagUpdate) Mutation() *TagMutation

Mutation returns the TagMutation object of the builder.

func (*TagUpdate) RemoveMeta

func (tu *TagUpdate) RemoveMeta(m ...*Meta) *TagUpdate

RemoveMeta removes "meta" edges to Meta entities.

func (*TagUpdate) RemoveMetumIDs

func (tu *TagUpdate) RemoveMetumIDs(ids ...int) *TagUpdate

RemoveMetumIDs removes the "meta" edge to Meta entities by IDs.

func (*TagUpdate) RemoveUser

func (tu *TagUpdate) RemoveUser(u ...*User) *TagUpdate

RemoveUser removes "user" edges to User entities.

func (*TagUpdate) RemoveUserIDs

func (tu *TagUpdate) RemoveUserIDs(ids ...int) *TagUpdate

RemoveUserIDs removes the "user" edge to User entities by IDs.

func (*TagUpdate) Save

func (tu *TagUpdate) Save(ctx context.Context) (int, error)

Save executes the query and returns the number of nodes affected by the update operation.

func (*TagUpdate) SaveX

func (tu *TagUpdate) SaveX(ctx context.Context) int

SaveX is like Save, but panics if an error occurs.

func (*TagUpdate) SetFavorite

func (tu *TagUpdate) SetFavorite(b bool) *TagUpdate

SetFavorite sets the "favorite" field.

func (*TagUpdate) SetHidden

func (tu *TagUpdate) SetHidden(b bool) *TagUpdate

SetHidden sets the "hidden" field.

func (*TagUpdate) SetName

func (tu *TagUpdate) SetName(s string) *TagUpdate

SetName sets the "name" field.

func (*TagUpdate) SetNillableFavorite

func (tu *TagUpdate) SetNillableFavorite(b *bool) *TagUpdate

SetNillableFavorite sets the "favorite" field if the given value is not nil.

func (*TagUpdate) SetNillableHidden

func (tu *TagUpdate) SetNillableHidden(b *bool) *TagUpdate

SetNillableHidden sets the "hidden" field if the given value is not nil.

func (*TagUpdate) SetNillableName

func (tu *TagUpdate) SetNillableName(s *string) *TagUpdate

SetNillableName sets the "name" field if the given value is not nil.

func (*TagUpdate) SetThumbnail

func (tu *TagUpdate) SetThumbnail(b []byte) *TagUpdate

SetThumbnail sets the "thumbnail" field.

func (*TagUpdate) Where

func (tu *TagUpdate) Where(ps ...predicate.Tag) *TagUpdate

Where appends a list predicates to the TagUpdate builder.

type TagUpdateOne

type TagUpdateOne struct {
	// contains filtered or unexported fields
}

TagUpdateOne is the builder for updating a single Tag entity.

func (*TagUpdateOne) AddMeta

func (tuo *TagUpdateOne) AddMeta(m ...*Meta) *TagUpdateOne

AddMeta adds the "meta" edges to the Meta entity.

func (*TagUpdateOne) AddMetumIDs

func (tuo *TagUpdateOne) AddMetumIDs(ids ...int) *TagUpdateOne

AddMetumIDs adds the "meta" edge to the Meta entity by IDs.

func (*TagUpdateOne) AddUser

func (tuo *TagUpdateOne) AddUser(u ...*User) *TagUpdateOne

AddUser adds the "user" edges to the User entity.

func (*TagUpdateOne) AddUserIDs

func (tuo *TagUpdateOne) AddUserIDs(ids ...int) *TagUpdateOne

AddUserIDs adds the "user" edge to the User entity by IDs.

func (*TagUpdateOne) ClearMeta

func (tuo *TagUpdateOne) ClearMeta() *TagUpdateOne

ClearMeta clears all "meta" edges to the Meta entity.

func (*TagUpdateOne) ClearThumbnail

func (tuo *TagUpdateOne) ClearThumbnail() *TagUpdateOne

ClearThumbnail clears the value of the "thumbnail" field.

func (*TagUpdateOne) ClearUser

func (tuo *TagUpdateOne) ClearUser() *TagUpdateOne

ClearUser clears all "user" edges to the User entity.

func (*TagUpdateOne) Exec

func (tuo *TagUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*TagUpdateOne) ExecX

func (tuo *TagUpdateOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*TagUpdateOne) Mutation

func (tuo *TagUpdateOne) Mutation() *TagMutation

Mutation returns the TagMutation object of the builder.

func (*TagUpdateOne) RemoveMeta

func (tuo *TagUpdateOne) RemoveMeta(m ...*Meta) *TagUpdateOne

RemoveMeta removes "meta" edges to Meta entities.

func (*TagUpdateOne) RemoveMetumIDs

func (tuo *TagUpdateOne) RemoveMetumIDs(ids ...int) *TagUpdateOne

RemoveMetumIDs removes the "meta" edge to Meta entities by IDs.

func (*TagUpdateOne) RemoveUser

func (tuo *TagUpdateOne) RemoveUser(u ...*User) *TagUpdateOne

RemoveUser removes "user" edges to User entities.

func (*TagUpdateOne) RemoveUserIDs

func (tuo *TagUpdateOne) RemoveUserIDs(ids ...int) *TagUpdateOne

RemoveUserIDs removes the "user" edge to User entities by IDs.

func (*TagUpdateOne) Save

func (tuo *TagUpdateOne) Save(ctx context.Context) (*Tag, error)

Save executes the query and returns the updated Tag entity.

func (*TagUpdateOne) SaveX

func (tuo *TagUpdateOne) SaveX(ctx context.Context) *Tag

SaveX is like Save, but panics if an error occurs.

func (*TagUpdateOne) Select

func (tuo *TagUpdateOne) Select(field string, fields ...string) *TagUpdateOne

Select allows selecting one or more fields (columns) of the returned entity. The default is selecting all fields defined in the entity schema.

func (*TagUpdateOne) SetFavorite

func (tuo *TagUpdateOne) SetFavorite(b bool) *TagUpdateOne

SetFavorite sets the "favorite" field.

func (*TagUpdateOne) SetHidden

func (tuo *TagUpdateOne) SetHidden(b bool) *TagUpdateOne

SetHidden sets the "hidden" field.

func (*TagUpdateOne) SetName

func (tuo *TagUpdateOne) SetName(s string) *TagUpdateOne

SetName sets the "name" field.

func (*TagUpdateOne) SetNillableFavorite

func (tuo *TagUpdateOne) SetNillableFavorite(b *bool) *TagUpdateOne

SetNillableFavorite sets the "favorite" field if the given value is not nil.

func (*TagUpdateOne) SetNillableHidden

func (tuo *TagUpdateOne) SetNillableHidden(b *bool) *TagUpdateOne

SetNillableHidden sets the "hidden" field if the given value is not nil.

func (*TagUpdateOne) SetNillableName

func (tuo *TagUpdateOne) SetNillableName(s *string) *TagUpdateOne

SetNillableName sets the "name" field if the given value is not nil.

func (*TagUpdateOne) SetThumbnail

func (tuo *TagUpdateOne) SetThumbnail(b []byte) *TagUpdateOne

SetThumbnail sets the "thumbnail" field.

func (*TagUpdateOne) Where

func (tuo *TagUpdateOne) Where(ps ...predicate.Tag) *TagUpdateOne

Where appends a list predicates to the TagUpdate builder.

type TagUpsert

type TagUpsert struct {
	*sql.UpdateSet
}

TagUpsert is the "OnConflict" setter.

func (*TagUpsert) ClearThumbnail

func (u *TagUpsert) ClearThumbnail() *TagUpsert

ClearThumbnail clears the value of the "thumbnail" field.

func (*TagUpsert) SetFavorite

func (u *TagUpsert) SetFavorite(v bool) *TagUpsert

SetFavorite sets the "favorite" field.

func (*TagUpsert) SetHidden

func (u *TagUpsert) SetHidden(v bool) *TagUpsert

SetHidden sets the "hidden" field.

func (*TagUpsert) SetName

func (u *TagUpsert) SetName(v string) *TagUpsert

SetName sets the "name" field.

func (*TagUpsert) SetThumbnail

func (u *TagUpsert) SetThumbnail(v []byte) *TagUpsert

SetThumbnail sets the "thumbnail" field.

func (*TagUpsert) UpdateFavorite

func (u *TagUpsert) UpdateFavorite() *TagUpsert

UpdateFavorite sets the "favorite" field to the value that was provided on create.

func (*TagUpsert) UpdateHidden

func (u *TagUpsert) UpdateHidden() *TagUpsert

UpdateHidden sets the "hidden" field to the value that was provided on create.

func (*TagUpsert) UpdateName

func (u *TagUpsert) UpdateName() *TagUpsert

UpdateName sets the "name" field to the value that was provided on create.

func (*TagUpsert) UpdateThumbnail

func (u *TagUpsert) UpdateThumbnail() *TagUpsert

UpdateThumbnail sets the "thumbnail" field to the value that was provided on create.

type TagUpsertBulk

type TagUpsertBulk struct {
	// contains filtered or unexported fields
}

TagUpsertBulk is the builder for "upsert"-ing a bulk of Tag nodes.

func (*TagUpsertBulk) ClearThumbnail

func (u *TagUpsertBulk) ClearThumbnail() *TagUpsertBulk

ClearThumbnail clears the value of the "thumbnail" field.

func (*TagUpsertBulk) DoNothing

func (u *TagUpsertBulk) DoNothing() *TagUpsertBulk

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*TagUpsertBulk) Exec

func (u *TagUpsertBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*TagUpsertBulk) ExecX

func (u *TagUpsertBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*TagUpsertBulk) Ignore

func (u *TagUpsertBulk) Ignore() *TagUpsertBulk

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.Tag.Create().
	OnConflict(sql.ResolveWithIgnore()).
	Exec(ctx)

func (*TagUpsertBulk) SetFavorite

func (u *TagUpsertBulk) SetFavorite(v bool) *TagUpsertBulk

SetFavorite sets the "favorite" field.

func (*TagUpsertBulk) SetHidden

func (u *TagUpsertBulk) SetHidden(v bool) *TagUpsertBulk

SetHidden sets the "hidden" field.

func (*TagUpsertBulk) SetName

func (u *TagUpsertBulk) SetName(v string) *TagUpsertBulk

SetName sets the "name" field.

func (*TagUpsertBulk) SetThumbnail

func (u *TagUpsertBulk) SetThumbnail(v []byte) *TagUpsertBulk

SetThumbnail sets the "thumbnail" field.

func (*TagUpsertBulk) Update

func (u *TagUpsertBulk) Update(set func(*TagUpsert)) *TagUpsertBulk

Update allows overriding fields `UPDATE` values. See the TagCreateBulk.OnConflict documentation for more info.

func (*TagUpsertBulk) UpdateFavorite

func (u *TagUpsertBulk) UpdateFavorite() *TagUpsertBulk

UpdateFavorite sets the "favorite" field to the value that was provided on create.

func (*TagUpsertBulk) UpdateHidden

func (u *TagUpsertBulk) UpdateHidden() *TagUpsertBulk

UpdateHidden sets the "hidden" field to the value that was provided on create.

func (*TagUpsertBulk) UpdateName

func (u *TagUpsertBulk) UpdateName() *TagUpsertBulk

UpdateName sets the "name" field to the value that was provided on create.

func (*TagUpsertBulk) UpdateNewValues

func (u *TagUpsertBulk) UpdateNewValues() *TagUpsertBulk

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.Tag.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

func (*TagUpsertBulk) UpdateThumbnail

func (u *TagUpsertBulk) UpdateThumbnail() *TagUpsertBulk

UpdateThumbnail sets the "thumbnail" field to the value that was provided on create.

type TagUpsertOne

type TagUpsertOne struct {
	// contains filtered or unexported fields
}

TagUpsertOne is the builder for "upsert"-ing

one Tag node.

func (*TagUpsertOne) ClearThumbnail

func (u *TagUpsertOne) ClearThumbnail() *TagUpsertOne

ClearThumbnail clears the value of the "thumbnail" field.

func (*TagUpsertOne) DoNothing

func (u *TagUpsertOne) DoNothing() *TagUpsertOne

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*TagUpsertOne) Exec

func (u *TagUpsertOne) Exec(ctx context.Context) error

Exec executes the query.

func (*TagUpsertOne) ExecX

func (u *TagUpsertOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*TagUpsertOne) ID

func (u *TagUpsertOne) ID(ctx context.Context) (id int, err error)

Exec executes the UPSERT query and returns the inserted/updated ID.

func (*TagUpsertOne) IDX

func (u *TagUpsertOne) IDX(ctx context.Context) int

IDX is like ID, but panics if an error occurs.

func (*TagUpsertOne) Ignore

func (u *TagUpsertOne) Ignore() *TagUpsertOne

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.Tag.Create().
    OnConflict(sql.ResolveWithIgnore()).
    Exec(ctx)

func (*TagUpsertOne) SetFavorite

func (u *TagUpsertOne) SetFavorite(v bool) *TagUpsertOne

SetFavorite sets the "favorite" field.

func (*TagUpsertOne) SetHidden

func (u *TagUpsertOne) SetHidden(v bool) *TagUpsertOne

SetHidden sets the "hidden" field.

func (*TagUpsertOne) SetName

func (u *TagUpsertOne) SetName(v string) *TagUpsertOne

SetName sets the "name" field.

func (*TagUpsertOne) SetThumbnail

func (u *TagUpsertOne) SetThumbnail(v []byte) *TagUpsertOne

SetThumbnail sets the "thumbnail" field.

func (*TagUpsertOne) Update

func (u *TagUpsertOne) Update(set func(*TagUpsert)) *TagUpsertOne

Update allows overriding fields `UPDATE` values. See the TagCreate.OnConflict documentation for more info.

func (*TagUpsertOne) UpdateFavorite

func (u *TagUpsertOne) UpdateFavorite() *TagUpsertOne

UpdateFavorite sets the "favorite" field to the value that was provided on create.

func (*TagUpsertOne) UpdateHidden

func (u *TagUpsertOne) UpdateHidden() *TagUpsertOne

UpdateHidden sets the "hidden" field to the value that was provided on create.

func (*TagUpsertOne) UpdateName

func (u *TagUpsertOne) UpdateName() *TagUpsertOne

UpdateName sets the "name" field to the value that was provided on create.

func (*TagUpsertOne) UpdateNewValues

func (u *TagUpsertOne) UpdateNewValues() *TagUpsertOne

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.Tag.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

func (*TagUpsertOne) UpdateThumbnail

func (u *TagUpsertOne) UpdateThumbnail() *TagUpsertOne

UpdateThumbnail sets the "thumbnail" field to the value that was provided on create.

type Tags

type Tags []*Tag

Tags is a parsable slice of Tag.

type TraverseFunc

type TraverseFunc = ent.TraverseFunc

ent aliases to avoid import conflicts in user's code.

type Traverser

type Traverser = ent.Traverser

ent aliases to avoid import conflicts in user's code.

type Tx

type Tx struct {

	// History is the client for interacting with the History builders.
	History *HistoryClient
	// Meta is the client for interacting with the Meta builders.
	Meta *MetaClient
	// Tag is the client for interacting with the Tag builders.
	Tag *TagClient
	// User is the client for interacting with the User builders.
	User *UserClient
	// contains filtered or unexported fields
}

Tx is a transactional client that is created by calling Client.Tx().

func TxFromContext

func TxFromContext(ctx context.Context) *Tx

TxFromContext returns a Tx stored inside a context, or nil if there isn't one.

func (*Tx) Client

func (tx *Tx) Client() *Client

Client returns a Client that binds to current transaction.

func (*Tx) Commit

func (tx *Tx) Commit() error

Commit commits the transaction.

func (*Tx) OnCommit

func (tx *Tx) OnCommit(f CommitHook)

OnCommit adds a hook to call on commit.

func (*Tx) OnRollback

func (tx *Tx) OnRollback(f RollbackHook)

OnRollback adds a hook to call on rollback.

func (*Tx) Rollback

func (tx *Tx) Rollback() error

Rollback rollbacks the transaction.

type User

type User struct {

	// ID of the ent.
	ID int `json:"id,omitempty"`
	// Email holds the value of the "email" field.
	Email string `json:"email,omitempty"`
	// Active holds the value of the "active" field.
	Active bool `json:"active,omitempty"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the UserQuery when eager-loading is set.
	Edges UserEdges `json:"edges"`
	// contains filtered or unexported fields
}

User is the model entity for the User schema.

func (*User) QueryFavoriteItems

func (u *User) QueryFavoriteItems() *MetaQuery

QueryFavoriteItems queries the "favorite_items" edge of the User entity.

func (*User) QueryFavoriteTags

func (u *User) QueryFavoriteTags() *TagQuery

QueryFavoriteTags queries the "favorite_tags" edge of the User entity.

func (*User) QueryHistories

func (u *User) QueryHistories() *HistoryQuery

QueryHistories queries the "histories" edge of the User entity.

func (*User) String

func (u *User) String() string

String implements the fmt.Stringer.

func (*User) Unwrap

func (u *User) Unwrap() *User

Unwrap unwraps the User entity that was returned from a transaction after it was closed, so that all future queries will be executed through the driver which created the transaction.

func (*User) Update

func (u *User) Update() *UserUpdateOne

Update returns a builder for updating this User. Note that you need to call User.Unwrap() before calling this method if this User was returned from a transaction, and the transaction was committed or rolled back.

func (*User) Value

func (u *User) Value(name string) (ent.Value, error)

Value returns the ent.Value that was dynamically selected and assigned to the User. This includes values selected through modifiers, order, etc.

type UserClient

type UserClient struct {
	// contains filtered or unexported fields
}

UserClient is a client for the User schema.

func NewUserClient

func NewUserClient(c config) *UserClient

NewUserClient returns a client for the User from the given config.

func (*UserClient) Create

func (c *UserClient) Create() *UserCreate

Create returns a builder for creating a User entity.

func (*UserClient) CreateBulk

func (c *UserClient) CreateBulk(builders ...*UserCreate) *UserCreateBulk

CreateBulk returns a builder for creating a bulk of User entities.

func (*UserClient) Delete

func (c *UserClient) Delete() *UserDelete

Delete returns a delete builder for User.

func (*UserClient) DeleteOne

func (c *UserClient) DeleteOne(u *User) *UserDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*UserClient) DeleteOneID

func (c *UserClient) DeleteOneID(id int) *UserDeleteOne

DeleteOneID returns a builder for deleting the given entity by its id.

func (*UserClient) Get

func (c *UserClient) Get(ctx context.Context, id int) (*User, error)

Get returns a User entity by its id.

func (*UserClient) GetX

func (c *UserClient) GetX(ctx context.Context, id int) *User

GetX is like Get, but panics if an error occurs.

func (*UserClient) Hooks

func (c *UserClient) Hooks() []Hook

Hooks returns the client hooks.

func (*UserClient) Intercept

func (c *UserClient) Intercept(interceptors ...Interceptor)

Intercept adds a list of query interceptors to the interceptors stack. A call to `Intercept(f, g, h)` equals to `user.Intercept(f(g(h())))`.

func (*UserClient) Interceptors

func (c *UserClient) Interceptors() []Interceptor

Interceptors returns the client interceptors.

func (*UserClient) MapCreateBulk

func (c *UserClient) MapCreateBulk(slice any, setFunc func(*UserCreate, int)) *UserCreateBulk

MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates a builder and applies setFunc on it.

func (*UserClient) Query

func (c *UserClient) Query() *UserQuery

Query returns a query builder for User.

func (*UserClient) QueryFavoriteItems

func (c *UserClient) QueryFavoriteItems(u *User) *MetaQuery

QueryFavoriteItems queries the favorite_items edge of a User.

func (*UserClient) QueryFavoriteTags

func (c *UserClient) QueryFavoriteTags(u *User) *TagQuery

QueryFavoriteTags queries the favorite_tags edge of a User.

func (*UserClient) QueryHistories

func (c *UserClient) QueryHistories(u *User) *HistoryQuery

QueryHistories queries the histories edge of a User.

func (*UserClient) Update

func (c *UserClient) Update() *UserUpdate

Update returns an update builder for User.

func (*UserClient) UpdateOne

func (c *UserClient) UpdateOne(u *User) *UserUpdateOne

UpdateOne returns an update builder for the given entity.

func (*UserClient) UpdateOneID

func (c *UserClient) UpdateOneID(id int) *UserUpdateOne

UpdateOneID returns an update builder for the given id.

func (*UserClient) Use

func (c *UserClient) Use(hooks ...Hook)

Use adds a list of mutation hooks to the hooks stack. A call to `Use(f, g, h)` equals to `user.Hooks(f(g(h())))`.

type UserCreate

type UserCreate struct {
	// contains filtered or unexported fields
}

UserCreate is the builder for creating a User entity.

func (*UserCreate) AddFavoriteItemIDs

func (uc *UserCreate) AddFavoriteItemIDs(ids ...int) *UserCreate

AddFavoriteItemIDs adds the "favorite_items" edge to the Meta entity by IDs.

func (*UserCreate) AddFavoriteItems

func (uc *UserCreate) AddFavoriteItems(m ...*Meta) *UserCreate

AddFavoriteItems adds the "favorite_items" edges to the Meta entity.

func (*UserCreate) AddFavoriteTagIDs

func (uc *UserCreate) AddFavoriteTagIDs(ids ...int) *UserCreate

AddFavoriteTagIDs adds the "favorite_tags" edge to the Tag entity by IDs.

func (*UserCreate) AddFavoriteTags

func (uc *UserCreate) AddFavoriteTags(t ...*Tag) *UserCreate

AddFavoriteTags adds the "favorite_tags" edges to the Tag entity.

func (*UserCreate) AddHistories

func (uc *UserCreate) AddHistories(h ...*History) *UserCreate

AddHistories adds the "histories" edges to the History entity.

func (*UserCreate) AddHistoryIDs

func (uc *UserCreate) AddHistoryIDs(ids ...int) *UserCreate

AddHistoryIDs adds the "histories" edge to the History entity by IDs.

func (*UserCreate) Exec

func (uc *UserCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*UserCreate) ExecX

func (uc *UserCreate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*UserCreate) Mutation

func (uc *UserCreate) Mutation() *UserMutation

Mutation returns the UserMutation object of the builder.

func (*UserCreate) OnConflict

func (uc *UserCreate) OnConflict(opts ...sql.ConflictOption) *UserUpsertOne

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.User.Create().
	SetEmail(v).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.UserUpsert) {
		SetEmail(v+v).
	}).
	Exec(ctx)

func (*UserCreate) OnConflictColumns

func (uc *UserCreate) OnConflictColumns(columns ...string) *UserUpsertOne

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.User.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*UserCreate) Save

func (uc *UserCreate) Save(ctx context.Context) (*User, error)

Save creates the User in the database.

func (*UserCreate) SaveX

func (uc *UserCreate) SaveX(ctx context.Context) *User

SaveX calls Save and panics if Save returns an error.

func (*UserCreate) SetActive

func (uc *UserCreate) SetActive(b bool) *UserCreate

SetActive sets the "active" field.

func (*UserCreate) SetEmail

func (uc *UserCreate) SetEmail(s string) *UserCreate

SetEmail sets the "email" field.

func (*UserCreate) SetNillableActive

func (uc *UserCreate) SetNillableActive(b *bool) *UserCreate

SetNillableActive sets the "active" field if the given value is not nil.

type UserCreateBulk

type UserCreateBulk struct {
	// contains filtered or unexported fields
}

UserCreateBulk is the builder for creating many User entities in bulk.

func (*UserCreateBulk) Exec

func (ucb *UserCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*UserCreateBulk) ExecX

func (ucb *UserCreateBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*UserCreateBulk) OnConflict

func (ucb *UserCreateBulk) OnConflict(opts ...sql.ConflictOption) *UserUpsertBulk

OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause of the `INSERT` statement. For example:

client.User.CreateBulk(builders...).
	OnConflict(
		// Update the row with the new values
		// the was proposed for insertion.
		sql.ResolveWithNewValues(),
	).
	// Override some of the fields with custom
	// update values.
	Update(func(u *ent.UserUpsert) {
		SetEmail(v+v).
	}).
	Exec(ctx)

func (*UserCreateBulk) OnConflictColumns

func (ucb *UserCreateBulk) OnConflictColumns(columns ...string) *UserUpsertBulk

OnConflictColumns calls `OnConflict` and configures the columns as conflict target. Using this option is equivalent to using:

client.User.Create().
	OnConflict(sql.ConflictColumns(columns...)).
	Exec(ctx)

func (*UserCreateBulk) Save

func (ucb *UserCreateBulk) Save(ctx context.Context) ([]*User, error)

Save creates the User entities in the database.

func (*UserCreateBulk) SaveX

func (ucb *UserCreateBulk) SaveX(ctx context.Context) []*User

SaveX is like Save, but panics if an error occurs.

type UserDelete

type UserDelete struct {
	// contains filtered or unexported fields
}

UserDelete is the builder for deleting a User entity.

func (*UserDelete) Exec

func (ud *UserDelete) Exec(ctx context.Context) (int, error)

Exec executes the deletion query and returns how many vertices were deleted.

func (*UserDelete) ExecX

func (ud *UserDelete) ExecX(ctx context.Context) int

ExecX is like Exec, but panics if an error occurs.

func (*UserDelete) Where

func (ud *UserDelete) Where(ps ...predicate.User) *UserDelete

Where appends a list predicates to the UserDelete builder.

type UserDeleteOne

type UserDeleteOne struct {
	// contains filtered or unexported fields
}

UserDeleteOne is the builder for deleting a single User entity.

func (*UserDeleteOne) Exec

func (udo *UserDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*UserDeleteOne) ExecX

func (udo *UserDeleteOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*UserDeleteOne) Where

func (udo *UserDeleteOne) Where(ps ...predicate.User) *UserDeleteOne

Where appends a list predicates to the UserDelete builder.

type UserEdges

type UserEdges struct {
	// FavoriteItems holds the value of the favorite_items edge.
	FavoriteItems []*Meta `json:"favorite_items,omitempty"`
	// FavoriteTags holds the value of the favorite_tags edge.
	FavoriteTags []*Tag `json:"favorite_tags,omitempty"`
	// Histories holds the value of the histories edge.
	Histories []*History `json:"histories,omitempty"`
	// contains filtered or unexported fields
}

UserEdges holds the relations/edges for other nodes in the graph.

func (UserEdges) FavoriteItemsOrErr

func (e UserEdges) FavoriteItemsOrErr() ([]*Meta, error)

FavoriteItemsOrErr returns the FavoriteItems value or an error if the edge was not loaded in eager-loading.

func (UserEdges) FavoriteTagsOrErr

func (e UserEdges) FavoriteTagsOrErr() ([]*Tag, error)

FavoriteTagsOrErr returns the FavoriteTags value or an error if the edge was not loaded in eager-loading.

func (UserEdges) HistoriesOrErr

func (e UserEdges) HistoriesOrErr() ([]*History, error)

HistoriesOrErr returns the Histories value or an error if the edge was not loaded in eager-loading.

type UserGroupBy

type UserGroupBy struct {
	// contains filtered or unexported fields
}

UserGroupBy is the group-by builder for User entities.

func (*UserGroupBy) Aggregate

func (ugb *UserGroupBy) Aggregate(fns ...AggregateFunc) *UserGroupBy

Aggregate adds the given aggregation functions to the group-by query.

func (*UserGroupBy) Bool

func (s *UserGroupBy) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) BoolX

func (s *UserGroupBy) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*UserGroupBy) Bools

func (s *UserGroupBy) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) BoolsX

func (s *UserGroupBy) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*UserGroupBy) Float64

func (s *UserGroupBy) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) Float64X

func (s *UserGroupBy) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*UserGroupBy) Float64s

func (s *UserGroupBy) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) Float64sX

func (s *UserGroupBy) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*UserGroupBy) Int

func (s *UserGroupBy) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) IntX

func (s *UserGroupBy) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*UserGroupBy) Ints

func (s *UserGroupBy) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) IntsX

func (s *UserGroupBy) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*UserGroupBy) Scan

func (ugb *UserGroupBy) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*UserGroupBy) ScanX

func (s *UserGroupBy) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*UserGroupBy) String

func (s *UserGroupBy) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) StringX

func (s *UserGroupBy) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*UserGroupBy) Strings

func (s *UserGroupBy) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*UserGroupBy) StringsX

func (s *UserGroupBy) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type UserMutation

type UserMutation struct {
	// contains filtered or unexported fields
}

UserMutation represents an operation that mutates the User nodes in the graph.

func (*UserMutation) Active

func (m *UserMutation) Active() (r bool, exists bool)

Active returns the value of the "active" field in the mutation.

func (*UserMutation) AddFavoriteItemIDs

func (m *UserMutation) AddFavoriteItemIDs(ids ...int)

AddFavoriteItemIDs adds the "favorite_items" edge to the Meta entity by ids.

func (*UserMutation) AddFavoriteTagIDs

func (m *UserMutation) AddFavoriteTagIDs(ids ...int)

AddFavoriteTagIDs adds the "favorite_tags" edge to the Tag entity by ids.

func (*UserMutation) AddField

func (m *UserMutation) AddField(name string, value ent.Value) error

AddField adds the value to the field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*UserMutation) AddHistoryIDs

func (m *UserMutation) AddHistoryIDs(ids ...int)

AddHistoryIDs adds the "histories" edge to the History entity by ids.

func (*UserMutation) AddedEdges

func (m *UserMutation) AddedEdges() []string

AddedEdges returns all edge names that were set/added in this mutation.

func (*UserMutation) AddedField

func (m *UserMutation) AddedField(name string) (ent.Value, bool)

AddedField returns the numeric value that was incremented/decremented on a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*UserMutation) AddedFields

func (m *UserMutation) AddedFields() []string

AddedFields returns all numeric fields that were incremented/decremented during this mutation.

func (*UserMutation) AddedIDs

func (m *UserMutation) AddedIDs(name string) []ent.Value

AddedIDs returns all IDs (to other nodes) that were added for the given edge name in this mutation.

func (*UserMutation) ClearEdge

func (m *UserMutation) ClearEdge(name string) error

ClearEdge clears the value of the edge with the given name. It returns an error if that edge is not defined in the schema.

func (*UserMutation) ClearFavoriteItems

func (m *UserMutation) ClearFavoriteItems()

ClearFavoriteItems clears the "favorite_items" edge to the Meta entity.

func (*UserMutation) ClearFavoriteTags

func (m *UserMutation) ClearFavoriteTags()

ClearFavoriteTags clears the "favorite_tags" edge to the Tag entity.

func (*UserMutation) ClearField

func (m *UserMutation) ClearField(name string) error

ClearField clears the value of the field with the given name. It returns an error if the field is not defined in the schema.

func (*UserMutation) ClearHistories

func (m *UserMutation) ClearHistories()

ClearHistories clears the "histories" edge to the History entity.

func (*UserMutation) ClearedEdges

func (m *UserMutation) ClearedEdges() []string

ClearedEdges returns all edge names that were cleared in this mutation.

func (*UserMutation) ClearedFields

func (m *UserMutation) ClearedFields() []string

ClearedFields returns all nullable fields that were cleared during this mutation.

func (UserMutation) Client

func (m UserMutation) Client() *Client

Client returns a new `ent.Client` from the mutation. If the mutation was executed in a transaction (ent.Tx), a transactional client is returned.

func (*UserMutation) EdgeCleared

func (m *UserMutation) EdgeCleared(name string) bool

EdgeCleared returns a boolean which indicates if the edge with the given name was cleared in this mutation.

func (*UserMutation) Email

func (m *UserMutation) Email() (r string, exists bool)

Email returns the value of the "email" field in the mutation.

func (*UserMutation) FavoriteItemsCleared

func (m *UserMutation) FavoriteItemsCleared() bool

FavoriteItemsCleared reports if the "favorite_items" edge to the Meta entity was cleared.

func (*UserMutation) FavoriteItemsIDs

func (m *UserMutation) FavoriteItemsIDs() (ids []int)

FavoriteItemsIDs returns the "favorite_items" edge IDs in the mutation.

func (*UserMutation) FavoriteTagsCleared

func (m *UserMutation) FavoriteTagsCleared() bool

FavoriteTagsCleared reports if the "favorite_tags" edge to the Tag entity was cleared.

func (*UserMutation) FavoriteTagsIDs

func (m *UserMutation) FavoriteTagsIDs() (ids []int)

FavoriteTagsIDs returns the "favorite_tags" edge IDs in the mutation.

func (*UserMutation) Field

func (m *UserMutation) Field(name string) (ent.Value, bool)

Field returns the value of a field with the given name. The second boolean return value indicates that this field was not set, or was not defined in the schema.

func (*UserMutation) FieldCleared

func (m *UserMutation) FieldCleared(name string) bool

FieldCleared returns a boolean indicating if a field with the given name was cleared in this mutation.

func (*UserMutation) Fields

func (m *UserMutation) Fields() []string

Fields returns all fields that were changed during this mutation. Note that in order to get all numeric fields that were incremented/decremented, call AddedFields().

func (*UserMutation) HistoriesCleared

func (m *UserMutation) HistoriesCleared() bool

HistoriesCleared reports if the "histories" edge to the History entity was cleared.

func (*UserMutation) HistoriesIDs

func (m *UserMutation) HistoriesIDs() (ids []int)

HistoriesIDs returns the "histories" edge IDs in the mutation.

func (*UserMutation) ID

func (m *UserMutation) ID() (id int, exists bool)

ID returns the ID value in the mutation. Note that the ID is only available if it was provided to the builder or after it was returned from the database.

func (*UserMutation) IDs

func (m *UserMutation) IDs(ctx context.Context) ([]int, error)

IDs queries the database and returns the entity ids that match the mutation's predicate. That means, if the mutation is applied within a transaction with an isolation level such as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated or updated by the mutation.

func (*UserMutation) OldActive

func (m *UserMutation) OldActive(ctx context.Context) (v bool, err error)

OldActive returns the old "active" field's value of the User entity. If the User object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*UserMutation) OldEmail

func (m *UserMutation) OldEmail(ctx context.Context) (v string, err error)

OldEmail returns the old "email" field's value of the User entity. If the User object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*UserMutation) OldField

func (m *UserMutation) OldField(ctx context.Context, name string) (ent.Value, error)

OldField returns the old value of the field from the database. An error is returned if the mutation operation is not UpdateOne, or the query to the database failed.

func (*UserMutation) Op

func (m *UserMutation) Op() Op

Op returns the operation name.

func (*UserMutation) RemoveFavoriteItemIDs

func (m *UserMutation) RemoveFavoriteItemIDs(ids ...int)

RemoveFavoriteItemIDs removes the "favorite_items" edge to the Meta entity by IDs.

func (*UserMutation) RemoveFavoriteTagIDs

func (m *UserMutation) RemoveFavoriteTagIDs(ids ...int)

RemoveFavoriteTagIDs removes the "favorite_tags" edge to the Tag entity by IDs.

func (*UserMutation) RemoveHistoryIDs

func (m *UserMutation) RemoveHistoryIDs(ids ...int)

RemoveHistoryIDs removes the "histories" edge to the History entity by IDs.

func (*UserMutation) RemovedEdges

func (m *UserMutation) RemovedEdges() []string

RemovedEdges returns all edge names that were removed in this mutation.

func (*UserMutation) RemovedFavoriteItemsIDs

func (m *UserMutation) RemovedFavoriteItemsIDs() (ids []int)

RemovedFavoriteItems returns the removed IDs of the "favorite_items" edge to the Meta entity.

func (*UserMutation) RemovedFavoriteTagsIDs

func (m *UserMutation) RemovedFavoriteTagsIDs() (ids []int)

RemovedFavoriteTags returns the removed IDs of the "favorite_tags" edge to the Tag entity.

func (*UserMutation) RemovedHistoriesIDs

func (m *UserMutation) RemovedHistoriesIDs() (ids []int)

RemovedHistories returns the removed IDs of the "histories" edge to the History entity.

func (*UserMutation) RemovedIDs

func (m *UserMutation) RemovedIDs(name string) []ent.Value

RemovedIDs returns all IDs (to other nodes) that were removed for the edge with the given name in this mutation.

func (*UserMutation) ResetActive

func (m *UserMutation) ResetActive()

ResetActive resets all changes to the "active" field.

func (*UserMutation) ResetEdge

func (m *UserMutation) ResetEdge(name string) error

ResetEdge resets all changes to the edge with the given name in this mutation. It returns an error if the edge is not defined in the schema.

func (*UserMutation) ResetEmail

func (m *UserMutation) ResetEmail()

ResetEmail resets all changes to the "email" field.

func (*UserMutation) ResetFavoriteItems

func (m *UserMutation) ResetFavoriteItems()

ResetFavoriteItems resets all changes to the "favorite_items" edge.

func (*UserMutation) ResetFavoriteTags

func (m *UserMutation) ResetFavoriteTags()

ResetFavoriteTags resets all changes to the "favorite_tags" edge.

func (*UserMutation) ResetField

func (m *UserMutation) ResetField(name string) error

ResetField resets all changes in the mutation for the field with the given name. It returns an error if the field is not defined in the schema.

func (*UserMutation) ResetHistories

func (m *UserMutation) ResetHistories()

ResetHistories resets all changes to the "histories" edge.

func (*UserMutation) SetActive

func (m *UserMutation) SetActive(b bool)

SetActive sets the "active" field.

func (*UserMutation) SetEmail

func (m *UserMutation) SetEmail(s string)

SetEmail sets the "email" field.

func (*UserMutation) SetField

func (m *UserMutation) SetField(name string, value ent.Value) error

SetField sets the value of a field with the given name. It returns an error if the field is not defined in the schema, or if the type mismatched the field type.

func (*UserMutation) SetOp

func (m *UserMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (UserMutation) Tx

func (m UserMutation) Tx() (*Tx, error)

Tx returns an `ent.Tx` for mutations that were executed in transactions; it returns an error otherwise.

func (*UserMutation) Type

func (m *UserMutation) Type() string

Type returns the node type of this mutation (User).

func (*UserMutation) Where

func (m *UserMutation) Where(ps ...predicate.User)

Where appends a list predicates to the UserMutation builder.

func (*UserMutation) WhereP

func (m *UserMutation) WhereP(ps ...func(*sql.Selector))

WhereP appends storage-level predicates to the UserMutation builder. Using this method, users can use type-assertion to append predicates that do not depend on any generated package.

type UserQuery

type UserQuery struct {
	// contains filtered or unexported fields
}

UserQuery is the builder for querying User entities.

func (*UserQuery) Aggregate

func (uq *UserQuery) Aggregate(fns ...AggregateFunc) *UserSelect

Aggregate returns a UserSelect configured with the given aggregations.

func (*UserQuery) All

func (uq *UserQuery) All(ctx context.Context) ([]*User, error)

All executes the query and returns a list of Users.

func (*UserQuery) AllX

func (uq *UserQuery) AllX(ctx context.Context) []*User

AllX is like All, but panics if an error occurs.

func (*UserQuery) Clone

func (uq *UserQuery) Clone() *UserQuery

Clone returns a duplicate of the UserQuery builder, including all associated steps. It can be used to prepare common query builders and use them differently after the clone is made.

func (*UserQuery) Count

func (uq *UserQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*UserQuery) CountX

func (uq *UserQuery) CountX(ctx context.Context) int

CountX is like Count, but panics if an error occurs.

func (*UserQuery) Exist

func (uq *UserQuery) Exist(ctx context.Context) (bool, error)

Exist returns true if the query has elements in the graph.

func (*UserQuery) ExistX

func (uq *UserQuery) ExistX(ctx context.Context) bool

ExistX is like Exist, but panics if an error occurs.

func (*UserQuery) First

func (uq *UserQuery) First(ctx context.Context) (*User, error)

First returns the first User entity from the query. Returns a *NotFoundError when no User was found.

func (*UserQuery) FirstID

func (uq *UserQuery) FirstID(ctx context.Context) (id int, err error)

FirstID returns the first User ID from the query. Returns a *NotFoundError when no User ID was found.

func (*UserQuery) FirstIDX

func (uq *UserQuery) FirstIDX(ctx context.Context) int

FirstIDX is like FirstID, but panics if an error occurs.

func (*UserQuery) FirstX

func (uq *UserQuery) FirstX(ctx context.Context) *User

FirstX is like First, but panics if an error occurs.

func (*UserQuery) GroupBy

func (uq *UserQuery) GroupBy(field string, fields ...string) *UserGroupBy

GroupBy is used to group vertices by one or more fields/columns. It is often used with aggregate functions, like: count, max, mean, min, sum.

Example:

var v []struct {
	Email string `json:"email,omitempty"`
	Count int `json:"count,omitempty"`
}

client.User.Query().
	GroupBy(user.FieldEmail).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*UserQuery) IDs

func (uq *UserQuery) IDs(ctx context.Context) (ids []int, err error)

IDs executes the query and returns a list of User IDs.

func (*UserQuery) IDsX

func (uq *UserQuery) IDsX(ctx context.Context) []int

IDsX is like IDs, but panics if an error occurs.

func (*UserQuery) Limit

func (uq *UserQuery) Limit(limit int) *UserQuery

Limit the number of records to be returned by this query.

func (*UserQuery) Offset

func (uq *UserQuery) Offset(offset int) *UserQuery

Offset to start from.

func (*UserQuery) Only

func (uq *UserQuery) Only(ctx context.Context) (*User, error)

Only returns a single User entity found by the query, ensuring it only returns one. Returns a *NotSingularError when more than one User entity is found. Returns a *NotFoundError when no User entities are found.

func (*UserQuery) OnlyID

func (uq *UserQuery) OnlyID(ctx context.Context) (id int, err error)

OnlyID is like Only, but returns the only User ID in the query. Returns a *NotSingularError when more than one User ID is found. Returns a *NotFoundError when no entities are found.

func (*UserQuery) OnlyIDX

func (uq *UserQuery) OnlyIDX(ctx context.Context) int

OnlyIDX is like OnlyID, but panics if an error occurs.

func (*UserQuery) OnlyX

func (uq *UserQuery) OnlyX(ctx context.Context) *User

OnlyX is like Only, but panics if an error occurs.

func (*UserQuery) Order

func (uq *UserQuery) Order(o ...user.OrderOption) *UserQuery

Order specifies how the records should be ordered.

func (*UserQuery) QueryFavoriteItems

func (uq *UserQuery) QueryFavoriteItems() *MetaQuery

QueryFavoriteItems chains the current query on the "favorite_items" edge.

func (*UserQuery) QueryFavoriteTags

func (uq *UserQuery) QueryFavoriteTags() *TagQuery

QueryFavoriteTags chains the current query on the "favorite_tags" edge.

func (*UserQuery) QueryHistories

func (uq *UserQuery) QueryHistories() *HistoryQuery

QueryHistories chains the current query on the "histories" edge.

func (*UserQuery) Select

func (uq *UserQuery) Select(fields ...string) *UserSelect

Select allows the selection one or more fields/columns for the given query, instead of selecting all fields in the entity.

Example:

var v []struct {
	Email string `json:"email,omitempty"`
}

client.User.Query().
	Select(user.FieldEmail).
	Scan(ctx, &v)

func (*UserQuery) Unique

func (uq *UserQuery) Unique(unique bool) *UserQuery

Unique configures the query builder to filter duplicate records on query. By default, unique is set to true, and can be disabled using this method.

func (*UserQuery) Where

func (uq *UserQuery) Where(ps ...predicate.User) *UserQuery

Where adds a new predicate for the UserQuery builder.

func (*UserQuery) WithFavoriteItems

func (uq *UserQuery) WithFavoriteItems(opts ...func(*MetaQuery)) *UserQuery

WithFavoriteItems tells the query-builder to eager-load the nodes that are connected to the "favorite_items" edge. The optional arguments are used to configure the query builder of the edge.

func (*UserQuery) WithFavoriteTags

func (uq *UserQuery) WithFavoriteTags(opts ...func(*TagQuery)) *UserQuery

WithFavoriteTags tells the query-builder to eager-load the nodes that are connected to the "favorite_tags" edge. The optional arguments are used to configure the query builder of the edge.

func (*UserQuery) WithHistories

func (uq *UserQuery) WithHistories(opts ...func(*HistoryQuery)) *UserQuery

WithHistories tells the query-builder to eager-load the nodes that are connected to the "histories" edge. The optional arguments are used to configure the query builder of the edge.

type UserSelect

type UserSelect struct {
	*UserQuery
	// contains filtered or unexported fields
}

UserSelect is the builder for selecting fields of User entities.

func (*UserSelect) Aggregate

func (us *UserSelect) Aggregate(fns ...AggregateFunc) *UserSelect

Aggregate adds the given aggregation functions to the selector query.

func (*UserSelect) Bool

func (s *UserSelect) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*UserSelect) BoolX

func (s *UserSelect) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*UserSelect) Bools

func (s *UserSelect) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*UserSelect) BoolsX

func (s *UserSelect) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*UserSelect) Float64

func (s *UserSelect) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*UserSelect) Float64X

func (s *UserSelect) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*UserSelect) Float64s

func (s *UserSelect) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*UserSelect) Float64sX

func (s *UserSelect) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*UserSelect) Int

func (s *UserSelect) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*UserSelect) IntX

func (s *UserSelect) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*UserSelect) Ints

func (s *UserSelect) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*UserSelect) IntsX

func (s *UserSelect) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*UserSelect) Scan

func (us *UserSelect) Scan(ctx context.Context, v any) error

Scan applies the selector query and scans the result into the given value.

func (*UserSelect) ScanX

func (s *UserSelect) ScanX(ctx context.Context, v any)

ScanX is like Scan, but panics if an error occurs.

func (*UserSelect) String

func (s *UserSelect) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*UserSelect) StringX

func (s *UserSelect) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*UserSelect) Strings

func (s *UserSelect) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*UserSelect) StringsX

func (s *UserSelect) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type UserUpdate

type UserUpdate struct {
	// contains filtered or unexported fields
}

UserUpdate is the builder for updating User entities.

func (*UserUpdate) AddFavoriteItemIDs

func (uu *UserUpdate) AddFavoriteItemIDs(ids ...int) *UserUpdate

AddFavoriteItemIDs adds the "favorite_items" edge to the Meta entity by IDs.

func (*UserUpdate) AddFavoriteItems

func (uu *UserUpdate) AddFavoriteItems(m ...*Meta) *UserUpdate

AddFavoriteItems adds the "favorite_items" edges to the Meta entity.

func (*UserUpdate) AddFavoriteTagIDs

func (uu *UserUpdate) AddFavoriteTagIDs(ids ...int) *UserUpdate

AddFavoriteTagIDs adds the "favorite_tags" edge to the Tag entity by IDs.

func (*UserUpdate) AddFavoriteTags

func (uu *UserUpdate) AddFavoriteTags(t ...*Tag) *UserUpdate

AddFavoriteTags adds the "favorite_tags" edges to the Tag entity.

func (*UserUpdate) AddHistories

func (uu *UserUpdate) AddHistories(h ...*History) *UserUpdate

AddHistories adds the "histories" edges to the History entity.

func (*UserUpdate) AddHistoryIDs

func (uu *UserUpdate) AddHistoryIDs(ids ...int) *UserUpdate

AddHistoryIDs adds the "histories" edge to the History entity by IDs.

func (*UserUpdate) ClearFavoriteItems

func (uu *UserUpdate) ClearFavoriteItems() *UserUpdate

ClearFavoriteItems clears all "favorite_items" edges to the Meta entity.

func (*UserUpdate) ClearFavoriteTags

func (uu *UserUpdate) ClearFavoriteTags() *UserUpdate

ClearFavoriteTags clears all "favorite_tags" edges to the Tag entity.

func (*UserUpdate) ClearHistories

func (uu *UserUpdate) ClearHistories() *UserUpdate

ClearHistories clears all "histories" edges to the History entity.

func (*UserUpdate) Exec

func (uu *UserUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*UserUpdate) ExecX

func (uu *UserUpdate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*UserUpdate) Mutation

func (uu *UserUpdate) Mutation() *UserMutation

Mutation returns the UserMutation object of the builder.

func (*UserUpdate) RemoveFavoriteItemIDs

func (uu *UserUpdate) RemoveFavoriteItemIDs(ids ...int) *UserUpdate

RemoveFavoriteItemIDs removes the "favorite_items" edge to Meta entities by IDs.

func (*UserUpdate) RemoveFavoriteItems

func (uu *UserUpdate) RemoveFavoriteItems(m ...*Meta) *UserUpdate

RemoveFavoriteItems removes "favorite_items" edges to Meta entities.

func (*UserUpdate) RemoveFavoriteTagIDs

func (uu *UserUpdate) RemoveFavoriteTagIDs(ids ...int) *UserUpdate

RemoveFavoriteTagIDs removes the "favorite_tags" edge to Tag entities by IDs.

func (*UserUpdate) RemoveFavoriteTags

func (uu *UserUpdate) RemoveFavoriteTags(t ...*Tag) *UserUpdate

RemoveFavoriteTags removes "favorite_tags" edges to Tag entities.

func (*UserUpdate) RemoveHistories

func (uu *UserUpdate) RemoveHistories(h ...*History) *UserUpdate

RemoveHistories removes "histories" edges to History entities.

func (*UserUpdate) RemoveHistoryIDs

func (uu *UserUpdate) RemoveHistoryIDs(ids ...int) *UserUpdate

RemoveHistoryIDs removes the "histories" edge to History entities by IDs.

func (*UserUpdate) Save

func (uu *UserUpdate) Save(ctx context.Context) (int, error)

Save executes the query and returns the number of nodes affected by the update operation.

func (*UserUpdate) SaveX

func (uu *UserUpdate) SaveX(ctx context.Context) int

SaveX is like Save, but panics if an error occurs.

func (*UserUpdate) SetActive

func (uu *UserUpdate) SetActive(b bool) *UserUpdate

SetActive sets the "active" field.

func (*UserUpdate) SetEmail

func (uu *UserUpdate) SetEmail(s string) *UserUpdate

SetEmail sets the "email" field.

func (*UserUpdate) SetNillableActive

func (uu *UserUpdate) SetNillableActive(b *bool) *UserUpdate

SetNillableActive sets the "active" field if the given value is not nil.

func (*UserUpdate) SetNillableEmail

func (uu *UserUpdate) SetNillableEmail(s *string) *UserUpdate

SetNillableEmail sets the "email" field if the given value is not nil.

func (*UserUpdate) Where

func (uu *UserUpdate) Where(ps ...predicate.User) *UserUpdate

Where appends a list predicates to the UserUpdate builder.

type UserUpdateOne

type UserUpdateOne struct {
	// contains filtered or unexported fields
}

UserUpdateOne is the builder for updating a single User entity.

func (*UserUpdateOne) AddFavoriteItemIDs

func (uuo *UserUpdateOne) AddFavoriteItemIDs(ids ...int) *UserUpdateOne

AddFavoriteItemIDs adds the "favorite_items" edge to the Meta entity by IDs.

func (*UserUpdateOne) AddFavoriteItems

func (uuo *UserUpdateOne) AddFavoriteItems(m ...*Meta) *UserUpdateOne

AddFavoriteItems adds the "favorite_items" edges to the Meta entity.

func (*UserUpdateOne) AddFavoriteTagIDs

func (uuo *UserUpdateOne) AddFavoriteTagIDs(ids ...int) *UserUpdateOne

AddFavoriteTagIDs adds the "favorite_tags" edge to the Tag entity by IDs.

func (*UserUpdateOne) AddFavoriteTags

func (uuo *UserUpdateOne) AddFavoriteTags(t ...*Tag) *UserUpdateOne

AddFavoriteTags adds the "favorite_tags" edges to the Tag entity.

func (*UserUpdateOne) AddHistories

func (uuo *UserUpdateOne) AddHistories(h ...*History) *UserUpdateOne

AddHistories adds the "histories" edges to the History entity.

func (*UserUpdateOne) AddHistoryIDs

func (uuo *UserUpdateOne) AddHistoryIDs(ids ...int) *UserUpdateOne

AddHistoryIDs adds the "histories" edge to the History entity by IDs.

func (*UserUpdateOne) ClearFavoriteItems

func (uuo *UserUpdateOne) ClearFavoriteItems() *UserUpdateOne

ClearFavoriteItems clears all "favorite_items" edges to the Meta entity.

func (*UserUpdateOne) ClearFavoriteTags

func (uuo *UserUpdateOne) ClearFavoriteTags() *UserUpdateOne

ClearFavoriteTags clears all "favorite_tags" edges to the Tag entity.

func (*UserUpdateOne) ClearHistories

func (uuo *UserUpdateOne) ClearHistories() *UserUpdateOne

ClearHistories clears all "histories" edges to the History entity.

func (*UserUpdateOne) Exec

func (uuo *UserUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*UserUpdateOne) ExecX

func (uuo *UserUpdateOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*UserUpdateOne) Mutation

func (uuo *UserUpdateOne) Mutation() *UserMutation

Mutation returns the UserMutation object of the builder.

func (*UserUpdateOne) RemoveFavoriteItemIDs

func (uuo *UserUpdateOne) RemoveFavoriteItemIDs(ids ...int) *UserUpdateOne

RemoveFavoriteItemIDs removes the "favorite_items" edge to Meta entities by IDs.

func (*UserUpdateOne) RemoveFavoriteItems

func (uuo *UserUpdateOne) RemoveFavoriteItems(m ...*Meta) *UserUpdateOne

RemoveFavoriteItems removes "favorite_items" edges to Meta entities.

func (*UserUpdateOne) RemoveFavoriteTagIDs

func (uuo *UserUpdateOne) RemoveFavoriteTagIDs(ids ...int) *UserUpdateOne

RemoveFavoriteTagIDs removes the "favorite_tags" edge to Tag entities by IDs.

func (*UserUpdateOne) RemoveFavoriteTags

func (uuo *UserUpdateOne) RemoveFavoriteTags(t ...*Tag) *UserUpdateOne

RemoveFavoriteTags removes "favorite_tags" edges to Tag entities.

func (*UserUpdateOne) RemoveHistories

func (uuo *UserUpdateOne) RemoveHistories(h ...*History) *UserUpdateOne

RemoveHistories removes "histories" edges to History entities.

func (*UserUpdateOne) RemoveHistoryIDs

func (uuo *UserUpdateOne) RemoveHistoryIDs(ids ...int) *UserUpdateOne

RemoveHistoryIDs removes the "histories" edge to History entities by IDs.

func (*UserUpdateOne) Save

func (uuo *UserUpdateOne) Save(ctx context.Context) (*User, error)

Save executes the query and returns the updated User entity.

func (*UserUpdateOne) SaveX

func (uuo *UserUpdateOne) SaveX(ctx context.Context) *User

SaveX is like Save, but panics if an error occurs.

func (*UserUpdateOne) Select

func (uuo *UserUpdateOne) Select(field string, fields ...string) *UserUpdateOne

Select allows selecting one or more fields (columns) of the returned entity. The default is selecting all fields defined in the entity schema.

func (*UserUpdateOne) SetActive

func (uuo *UserUpdateOne) SetActive(b bool) *UserUpdateOne

SetActive sets the "active" field.

func (*UserUpdateOne) SetEmail

func (uuo *UserUpdateOne) SetEmail(s string) *UserUpdateOne

SetEmail sets the "email" field.

func (*UserUpdateOne) SetNillableActive

func (uuo *UserUpdateOne) SetNillableActive(b *bool) *UserUpdateOne

SetNillableActive sets the "active" field if the given value is not nil.

func (*UserUpdateOne) SetNillableEmail

func (uuo *UserUpdateOne) SetNillableEmail(s *string) *UserUpdateOne

SetNillableEmail sets the "email" field if the given value is not nil.

func (*UserUpdateOne) Where

func (uuo *UserUpdateOne) Where(ps ...predicate.User) *UserUpdateOne

Where appends a list predicates to the UserUpdate builder.

type UserUpsert

type UserUpsert struct {
	*sql.UpdateSet
}

UserUpsert is the "OnConflict" setter.

func (*UserUpsert) SetActive

func (u *UserUpsert) SetActive(v bool) *UserUpsert

SetActive sets the "active" field.

func (*UserUpsert) SetEmail

func (u *UserUpsert) SetEmail(v string) *UserUpsert

SetEmail sets the "email" field.

func (*UserUpsert) UpdateActive

func (u *UserUpsert) UpdateActive() *UserUpsert

UpdateActive sets the "active" field to the value that was provided on create.

func (*UserUpsert) UpdateEmail

func (u *UserUpsert) UpdateEmail() *UserUpsert

UpdateEmail sets the "email" field to the value that was provided on create.

type UserUpsertBulk

type UserUpsertBulk struct {
	// contains filtered or unexported fields
}

UserUpsertBulk is the builder for "upsert"-ing a bulk of User nodes.

func (*UserUpsertBulk) DoNothing

func (u *UserUpsertBulk) DoNothing() *UserUpsertBulk

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*UserUpsertBulk) Exec

func (u *UserUpsertBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*UserUpsertBulk) ExecX

func (u *UserUpsertBulk) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*UserUpsertBulk) Ignore

func (u *UserUpsertBulk) Ignore() *UserUpsertBulk

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.User.Create().
	OnConflict(sql.ResolveWithIgnore()).
	Exec(ctx)

func (*UserUpsertBulk) SetActive

func (u *UserUpsertBulk) SetActive(v bool) *UserUpsertBulk

SetActive sets the "active" field.

func (*UserUpsertBulk) SetEmail

func (u *UserUpsertBulk) SetEmail(v string) *UserUpsertBulk

SetEmail sets the "email" field.

func (*UserUpsertBulk) Update

func (u *UserUpsertBulk) Update(set func(*UserUpsert)) *UserUpsertBulk

Update allows overriding fields `UPDATE` values. See the UserCreateBulk.OnConflict documentation for more info.

func (*UserUpsertBulk) UpdateActive

func (u *UserUpsertBulk) UpdateActive() *UserUpsertBulk

UpdateActive sets the "active" field to the value that was provided on create.

func (*UserUpsertBulk) UpdateEmail

func (u *UserUpsertBulk) UpdateEmail() *UserUpsertBulk

UpdateEmail sets the "email" field to the value that was provided on create.

func (*UserUpsertBulk) UpdateNewValues

func (u *UserUpsertBulk) UpdateNewValues() *UserUpsertBulk

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.User.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

type UserUpsertOne

type UserUpsertOne struct {
	// contains filtered or unexported fields
}

UserUpsertOne is the builder for "upsert"-ing

one User node.

func (*UserUpsertOne) DoNothing

func (u *UserUpsertOne) DoNothing() *UserUpsertOne

DoNothing configures the conflict_action to `DO NOTHING`. Supported only by SQLite and PostgreSQL.

func (*UserUpsertOne) Exec

func (u *UserUpsertOne) Exec(ctx context.Context) error

Exec executes the query.

func (*UserUpsertOne) ExecX

func (u *UserUpsertOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*UserUpsertOne) ID

func (u *UserUpsertOne) ID(ctx context.Context) (id int, err error)

Exec executes the UPSERT query and returns the inserted/updated ID.

func (*UserUpsertOne) IDX

func (u *UserUpsertOne) IDX(ctx context.Context) int

IDX is like ID, but panics if an error occurs.

func (*UserUpsertOne) Ignore

func (u *UserUpsertOne) Ignore() *UserUpsertOne

Ignore sets each column to itself in case of conflict. Using this option is equivalent to using:

client.User.Create().
    OnConflict(sql.ResolveWithIgnore()).
    Exec(ctx)

func (*UserUpsertOne) SetActive

func (u *UserUpsertOne) SetActive(v bool) *UserUpsertOne

SetActive sets the "active" field.

func (*UserUpsertOne) SetEmail

func (u *UserUpsertOne) SetEmail(v string) *UserUpsertOne

SetEmail sets the "email" field.

func (*UserUpsertOne) Update

func (u *UserUpsertOne) Update(set func(*UserUpsert)) *UserUpsertOne

Update allows overriding fields `UPDATE` values. See the UserCreate.OnConflict documentation for more info.

func (*UserUpsertOne) UpdateActive

func (u *UserUpsertOne) UpdateActive() *UserUpsertOne

UpdateActive sets the "active" field to the value that was provided on create.

func (*UserUpsertOne) UpdateEmail

func (u *UserUpsertOne) UpdateEmail() *UserUpsertOne

UpdateEmail sets the "email" field to the value that was provided on create.

func (*UserUpsertOne) UpdateNewValues

func (u *UserUpsertOne) UpdateNewValues() *UserUpsertOne

UpdateNewValues updates the mutable fields using the new values that were set on create. Using this option is equivalent to using:

client.User.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
	).
	Exec(ctx)

type Users

type Users []*User

Users is a parsable slice of User.

type ValidationError

type ValidationError struct {
	Name string // Field or edge name.
	// contains filtered or unexported fields
}

ValidationError returns when validating a field or edge fails.

func (*ValidationError) Error

func (e *ValidationError) Error() string

Error implements the error interface.

func (*ValidationError) Unwrap

func (e *ValidationError) Unwrap() error

Unwrap implements the errors.Wrapper interface.

type Value

type Value = ent.Value

ent aliases to avoid import conflicts in user's code.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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