ent

package
v0.0.0-...-5bc32a5 Latest Latest
Warning

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

Go to latest
Published: Feb 3, 2023 License: GPL-3.0 Imports: 35 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.
	TypeInfo = "Info"
	TypeUser = "User"
)

Variables

View Source
var (
	// InfoOrderFieldCreatedAt orders Info by created_at.
	InfoOrderFieldCreatedAt = &InfoOrderField{
		field: info.FieldCreatedAt,
		toCursor: func(i *Info) Cursor {
			return Cursor{
				ID:    i.ID,
				Value: i.CreatedAt,
			}
		},
	}
	// InfoOrderFieldUpdatedAt orders Info by updated_at.
	InfoOrderFieldUpdatedAt = &InfoOrderField{
		field: info.FieldUpdatedAt,
		toCursor: func(i *Info) Cursor {
			return Cursor{
				ID:    i.ID,
				Value: i.UpdatedAt,
			}
		},
	}
	// InfoOrderFieldDeleteAt orders Info by delete_at.
	InfoOrderFieldDeleteAt = &InfoOrderField{
		field: info.FieldDeleteAt,
		toCursor: func(i *Info) Cursor {
			return Cursor{
				ID:    i.ID,
				Value: i.DeleteAt,
			}
		},
	}
	// InfoOrderFieldDetail orders Info by detail.
	InfoOrderFieldDetail = &InfoOrderField{
		field: info.FieldDetail,
		toCursor: func(i *Info) Cursor {
			return Cursor{
				ID:    i.ID,
				Value: i.Detail,
			}
		},
	}
)
View Source
var (
	// UserOrderFieldCreatedAt orders User by created_at.
	UserOrderFieldCreatedAt = &UserOrderField{
		field: user.FieldCreatedAt,
		toCursor: func(u *User) Cursor {
			return Cursor{
				ID:    u.ID,
				Value: u.CreatedAt,
			}
		},
	}
	// UserOrderFieldUpdatedAt orders User by updated_at.
	UserOrderFieldUpdatedAt = &UserOrderField{
		field: user.FieldUpdatedAt,
		toCursor: func(u *User) Cursor {
			return Cursor{
				ID:    u.ID,
				Value: u.UpdatedAt,
			}
		},
	}
	// UserOrderFieldDeleteAt orders User by delete_at.
	UserOrderFieldDeleteAt = &UserOrderField{
		field: user.FieldDeleteAt,
		toCursor: func(u *User) Cursor {
			return Cursor{
				ID:    u.ID,
				Value: u.DeleteAt,
			}
		},
	}
	// UserOrderFieldLevel orders User by level.
	UserOrderFieldLevel = &UserOrderField{
		field: user.FieldLevel,
		toCursor: func(u *User) Cursor {
			return Cursor{
				ID:    u.ID,
				Value: u.Level,
			}
		},
	}
)
View Source
var DefaultInfoOrder = &InfoOrder{
	Direction: OrderDirectionAsc,
	Field: &InfoOrderField{
		field: info.FieldID,
		toCursor: func(i *Info) Cursor {
			return Cursor{ID: i.ID}
		},
	},
}

DefaultInfoOrder is the default ordering of Info.

View Source
var DefaultUserOrder = &UserOrder{
	Direction: OrderDirectionAsc,
	Field: &UserOrderField{
		field: user.FieldID,
		toCursor: func(u *User) Cursor {
			return Cursor{ID: u.ID}
		},
	},
}

DefaultUserOrder is the default ordering of User.

Functions

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.

func OpenTxFromContext

func OpenTxFromContext(ctx context.Context) (context.Context, driver.Tx, error)

OpenTxFromContext open transactions from client stored in context.

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
	// Info is the client for interacting with the Info builders.
	Info *InfoClient
	// 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().
	Info.
	Query().
	Count(ctx)

func (*Client) ExecContext

func (c *Client) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) Noder

func (c *Client) Noder(ctx context.Context, id uint64, opts ...NodeOption) (_ Noder, err error)

Noder returns a Node by its id. If the NodeType was not provided, it will be derived from the id value according to the universal-id configuration.

c.Noder(ctx, id)
c.Noder(ctx, id, ent.WithNodeType(typeResolver))

func (*Client) Noders

func (c *Client) Noders(ctx context.Context, ids []uint64, opts ...NodeOption) ([]Noder, error)

func (*Client) OpenTx

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

OpenTx opens a transaction and returns a transactional context along with the created transaction.

func (*Client) QueryContext

func (c *Client) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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 CreateInfoInput

type CreateInfoInput struct {
	CreatedAt *time.Time
	UpdatedAt *time.Time
	DeleteAt  *int
	Detail    string
}

CreateInfoInput represents a mutation input for creating infos.

func (*CreateInfoInput) Mutate

func (i *CreateInfoInput) Mutate(m *InfoMutation)

Mutate applies the CreateInfoInput on the InfoMutation builder.

type CreateUserInput

type CreateUserInput struct {
	CreatedAt *time.Time
	UpdatedAt *time.Time
	DeleteAt  *int
	Nickname  string
	Email     *string
	Level     property.Level
}

CreateUserInput represents a mutation input for creating users.

func (*CreateUserInput) Mutate

func (i *CreateUserInput) Mutate(m *UserMutation)

Mutate applies the CreateUserInput on the UserMutation builder.

type Cursor

type Cursor struct {
	ID    uint64 `msgpack:"i"`
	Value Value  `msgpack:"v,omitempty"`
}

Cursor of an edge type.

func (Cursor) MarshalGQL

func (c Cursor) MarshalGQL(w io.Writer)

MarshalGQL implements graphql.Marshaler interface.

func (*Cursor) UnmarshalGQL

func (c *Cursor) UnmarshalGQL(v interface{}) error

UnmarshalGQL implements graphql.Unmarshaler interface.

type Hook

type Hook = ent.Hook

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

type Info

type Info struct {

	// ID of the ent.
	// id
	ID uint64 `json:"id,omitempty"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// 更新时间时间
	UpdatedAt time.Time `json:"updated_at,omitempty"`
	// delete_at 1 normal 0 delete | 状态 1 正常 0 删除
	DeleteAt int `json:"delete_at,omitempty"`
	// detail | 详情
	Detail string `json:"detail,omitempty"`
	// contains filtered or unexported fields
}

Info is the model entity for the Info schema.

func (*Info) ExecContext

func (c *Info) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*Info) IsNode

func (n *Info) IsNode()

IsNode implements the Node interface check for GQLGen.

func (*Info) QueryContext

func (c *Info) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*Info) String

func (i *Info) String() string

String implements the fmt.Stringer.

func (*Info) ToEdge

func (i *Info) ToEdge(order *InfoOrder) *InfoEdge

ToEdge converts Info into InfoEdge.

func (*Info) Unwrap

func (i *Info) Unwrap() *Info

Unwrap unwraps the Info 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 (*Info) Update

func (i *Info) Update() *InfoUpdateOne

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

type InfoClient

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

InfoClient is a client for the Info schema.

func NewInfoClient

func NewInfoClient(c config) *InfoClient

NewInfoClient returns a client for the Info from the given config.

func (*InfoClient) Create

func (c *InfoClient) Create() *InfoCreate

Create returns a builder for creating a Info entity.

func (*InfoClient) CreateBulk

func (c *InfoClient) CreateBulk(builders ...*InfoCreate) *InfoCreateBulk

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

func (*InfoClient) Delete

func (c *InfoClient) Delete() *InfoDelete

Delete returns a delete builder for Info.

func (*InfoClient) DeleteOne

func (c *InfoClient) DeleteOne(i *Info) *InfoDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*InfoClient) DeleteOneID

func (c *InfoClient) DeleteOneID(id uint64) *InfoDeleteOne

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

func (*InfoClient) ExecContext

func (c *InfoClient) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoClient) Get

func (c *InfoClient) Get(ctx context.Context, id uint64) (*Info, error)

Get returns a Info entity by its id.

func (*InfoClient) GetX

func (c *InfoClient) GetX(ctx context.Context, id uint64) *Info

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

func (*InfoClient) Hooks

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

Hooks returns the client hooks.

func (*InfoClient) Intercept

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

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

func (*InfoClient) Interceptors

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

Interceptors returns the client interceptors.

func (*InfoClient) Query

func (c *InfoClient) Query() *InfoQuery

Query returns a query builder for Info.

func (*InfoClient) QueryContext

func (c *InfoClient) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoClient) Update

func (c *InfoClient) Update() *InfoUpdate

Update returns an update builder for Info.

func (*InfoClient) UpdateOne

func (c *InfoClient) UpdateOne(i *Info) *InfoUpdateOne

UpdateOne returns an update builder for the given entity.

func (*InfoClient) UpdateOneID

func (c *InfoClient) UpdateOneID(id uint64) *InfoUpdateOne

UpdateOneID returns an update builder for the given id.

func (*InfoClient) Use

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

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

type InfoConnection

type InfoConnection struct {
	Edges      []*InfoEdge `json:"edges"`
	PageInfo   PageInfo    `json:"pageInfo"`
	TotalCount int         `json:"totalCount"`
}

InfoConnection is the connection containing edges to Info.

type InfoCreate

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

InfoCreate is the builder for creating a Info entity.

func (*InfoCreate) Exec

func (ic *InfoCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*InfoCreate) ExecContext

func (c *InfoCreate) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoCreate) ExecX

func (ic *InfoCreate) ExecX(ctx context.Context)

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

func (*InfoCreate) Mutation

func (ic *InfoCreate) Mutation() *InfoMutation

Mutation returns the InfoMutation object of the builder.

func (*InfoCreate) OnConflict

func (ic *InfoCreate) OnConflict(opts ...sql.ConflictOption) *InfoUpsertOne

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

client.Info.Create().
	SetCreatedAt(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.InfoUpsert) {
		SetCreatedAt(v+v).
	}).
	Exec(ctx)

func (*InfoCreate) OnConflictColumns

func (ic *InfoCreate) OnConflictColumns(columns ...string) *InfoUpsertOne

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

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

func (*InfoCreate) QueryContext

func (c *InfoCreate) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoCreate) Save

func (ic *InfoCreate) Save(ctx context.Context) (*Info, error)

Save creates the Info in the database.

func (*InfoCreate) SaveX

func (ic *InfoCreate) SaveX(ctx context.Context) *Info

SaveX calls Save and panics if Save returns an error.

func (*InfoCreate) SetCreatedAt

func (ic *InfoCreate) SetCreatedAt(t time.Time) *InfoCreate

SetCreatedAt sets the "created_at" field.

func (*InfoCreate) SetDeleteAt

func (ic *InfoCreate) SetDeleteAt(i int) *InfoCreate

SetDeleteAt sets the "delete_at" field.

func (*InfoCreate) SetDetail

func (ic *InfoCreate) SetDetail(s string) *InfoCreate

SetDetail sets the "detail" field.

func (*InfoCreate) SetID

func (ic *InfoCreate) SetID(u uint64) *InfoCreate

SetID sets the "id" field.

func (*InfoCreate) SetInput

func (c *InfoCreate) SetInput(i CreateInfoInput) *InfoCreate

SetInput applies the change-set in the CreateInfoInput on the InfoCreate builder.

func (*InfoCreate) SetNillableCreatedAt

func (ic *InfoCreate) SetNillableCreatedAt(t *time.Time) *InfoCreate

SetNillableCreatedAt sets the "created_at" field if the given value is not nil.

func (*InfoCreate) SetNillableDeleteAt

func (ic *InfoCreate) SetNillableDeleteAt(i *int) *InfoCreate

SetNillableDeleteAt sets the "delete_at" field if the given value is not nil.

func (*InfoCreate) SetNillableUpdatedAt

func (ic *InfoCreate) SetNillableUpdatedAt(t *time.Time) *InfoCreate

SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.

func (*InfoCreate) SetUpdatedAt

func (ic *InfoCreate) SetUpdatedAt(t time.Time) *InfoCreate

SetUpdatedAt sets the "updated_at" field.

type InfoCreateBulk

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

InfoCreateBulk is the builder for creating many Info entities in bulk.

func (*InfoCreateBulk) Exec

func (icb *InfoCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*InfoCreateBulk) ExecContext

func (c *InfoCreateBulk) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoCreateBulk) ExecX

func (icb *InfoCreateBulk) ExecX(ctx context.Context)

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

func (*InfoCreateBulk) OnConflict

func (icb *InfoCreateBulk) OnConflict(opts ...sql.ConflictOption) *InfoUpsertBulk

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

client.Info.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.InfoUpsert) {
		SetCreatedAt(v+v).
	}).
	Exec(ctx)

func (*InfoCreateBulk) OnConflictColumns

func (icb *InfoCreateBulk) OnConflictColumns(columns ...string) *InfoUpsertBulk

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

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

func (*InfoCreateBulk) QueryContext

func (c *InfoCreateBulk) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoCreateBulk) Save

func (icb *InfoCreateBulk) Save(ctx context.Context) ([]*Info, error)

Save creates the Info entities in the database.

func (*InfoCreateBulk) SaveX

func (icb *InfoCreateBulk) SaveX(ctx context.Context) []*Info

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

type InfoDelete

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

InfoDelete is the builder for deleting a Info entity.

func (*InfoDelete) Exec

func (id *InfoDelete) Exec(ctx context.Context) (int, error)

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

func (*InfoDelete) ExecContext

func (c *InfoDelete) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoDelete) ExecX

func (id *InfoDelete) ExecX(ctx context.Context) int

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

func (*InfoDelete) QueryContext

func (c *InfoDelete) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoDelete) Where

func (id *InfoDelete) Where(ps ...predicate.Info) *InfoDelete

Where appends a list predicates to the InfoDelete builder.

type InfoDeleteOne

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

InfoDeleteOne is the builder for deleting a single Info entity.

func (*InfoDeleteOne) Exec

func (ido *InfoDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*InfoDeleteOne) ExecX

func (ido *InfoDeleteOne) ExecX(ctx context.Context)

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

func (*InfoDeleteOne) Where

func (ido *InfoDeleteOne) Where(ps ...predicate.Info) *InfoDeleteOne

Where appends a list predicates to the InfoDelete builder.

type InfoEdge

type InfoEdge struct {
	Node   *Info  `json:"node"`
	Cursor Cursor `json:"cursor"`
}

InfoEdge is the edge representation of Info.

type InfoFilter

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

InfoFilter provides a generic filtering capability at runtime for InfoQuery.

func (*InfoFilter) ExecContext

func (c *InfoFilter) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoFilter) QueryContext

func (c *InfoFilter) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoFilter) Where

func (f *InfoFilter) Where(p entql.P)

Where applies the entql predicate on the query filter.

func (*InfoFilter) WhereCreatedAt

func (f *InfoFilter) WhereCreatedAt(p entql.TimeP)

WhereCreatedAt applies the entql time.Time predicate on the created_at field.

func (*InfoFilter) WhereDeleteAt

func (f *InfoFilter) WhereDeleteAt(p entql.IntP)

WhereDeleteAt applies the entql int predicate on the delete_at field.

func (*InfoFilter) WhereDetail

func (f *InfoFilter) WhereDetail(p entql.StringP)

WhereDetail applies the entql string predicate on the detail field.

func (*InfoFilter) WhereID

func (f *InfoFilter) WhereID(p entql.Uint64P)

WhereID applies the entql uint64 predicate on the id field.

func (*InfoFilter) WhereUpdatedAt

func (f *InfoFilter) WhereUpdatedAt(p entql.TimeP)

WhereUpdatedAt applies the entql time.Time predicate on the updated_at field.

type InfoGroupBy

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

InfoGroupBy is the group-by builder for Info entities.

func (*InfoGroupBy) Aggregate

func (igb *InfoGroupBy) Aggregate(fns ...AggregateFunc) *InfoGroupBy

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

func (*InfoGroupBy) Bool

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

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

func (*InfoGroupBy) BoolX

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

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

func (*InfoGroupBy) Bools

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

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

func (*InfoGroupBy) BoolsX

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

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

func (*InfoGroupBy) Float64

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

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

func (*InfoGroupBy) Float64X

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

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

func (*InfoGroupBy) Float64s

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

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

func (*InfoGroupBy) Float64sX

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

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

func (*InfoGroupBy) Int

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

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

func (*InfoGroupBy) IntX

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

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

func (*InfoGroupBy) Ints

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

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

func (*InfoGroupBy) IntsX

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

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

func (*InfoGroupBy) Scan

func (igb *InfoGroupBy) Scan(ctx context.Context, v any) error

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

func (*InfoGroupBy) ScanX

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

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

func (*InfoGroupBy) String

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

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

func (*InfoGroupBy) StringX

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

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

func (*InfoGroupBy) Strings

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

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

func (*InfoGroupBy) StringsX

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

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

type InfoMutation

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

InfoMutation represents an operation that mutates the Info nodes in the graph.

func (*InfoMutation) AddDeleteAt

func (m *InfoMutation) AddDeleteAt(i int)

AddDeleteAt adds i to the "delete_at" field.

func (*InfoMutation) AddField

func (m *InfoMutation) 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 (*InfoMutation) AddedDeleteAt

func (m *InfoMutation) AddedDeleteAt() (r int, exists bool)

AddedDeleteAt returns the value that was added to the "delete_at" field in this mutation.

func (*InfoMutation) AddedEdges

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

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

func (*InfoMutation) AddedField

func (m *InfoMutation) 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 (*InfoMutation) AddedFields

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

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

func (*InfoMutation) AddedIDs

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

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

func (*InfoMutation) ClearCreatedAt

func (m *InfoMutation) ClearCreatedAt()

ClearCreatedAt clears the value of the "created_at" field.

func (*InfoMutation) ClearDeleteAt

func (m *InfoMutation) ClearDeleteAt()

ClearDeleteAt clears the value of the "delete_at" field.

func (*InfoMutation) ClearEdge

func (m *InfoMutation) 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 (*InfoMutation) ClearField

func (m *InfoMutation) 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 (*InfoMutation) ClearUpdatedAt

func (m *InfoMutation) ClearUpdatedAt()

ClearUpdatedAt clears the value of the "updated_at" field.

func (*InfoMutation) ClearedEdges

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

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

func (*InfoMutation) ClearedFields

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

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

func (InfoMutation) Client

func (m InfoMutation) 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 (*InfoMutation) CreatedAt

func (m *InfoMutation) CreatedAt() (r time.Time, exists bool)

CreatedAt returns the value of the "created_at" field in the mutation.

func (*InfoMutation) CreatedAtCleared

func (m *InfoMutation) CreatedAtCleared() bool

CreatedAtCleared returns if the "created_at" field was cleared in this mutation.

func (*InfoMutation) DeleteAt

func (m *InfoMutation) DeleteAt() (r int, exists bool)

DeleteAt returns the value of the "delete_at" field in the mutation.

func (*InfoMutation) DeleteAtCleared

func (m *InfoMutation) DeleteAtCleared() bool

DeleteAtCleared returns if the "delete_at" field was cleared in this mutation.

func (*InfoMutation) Detail

func (m *InfoMutation) Detail() (r string, exists bool)

Detail returns the value of the "detail" field in the mutation.

func (*InfoMutation) EdgeCleared

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

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

func (*InfoMutation) ExecContext

func (c *InfoMutation) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoMutation) Field

func (m *InfoMutation) 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 (*InfoMutation) FieldCleared

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

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

func (*InfoMutation) Fields

func (m *InfoMutation) 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 (*InfoMutation) Filter

func (m *InfoMutation) Filter() *InfoFilter

Filter returns an entql.Where implementation to apply filters on the InfoMutation builder.

func (*InfoMutation) ID

func (m *InfoMutation) ID() (id uint64, 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 (*InfoMutation) IDs

func (m *InfoMutation) IDs(ctx context.Context) ([]uint64, 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 (*InfoMutation) OldCreatedAt

func (m *InfoMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error)

OldCreatedAt returns the old "created_at" field's value of the Info entity. If the Info 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 (*InfoMutation) OldDeleteAt

func (m *InfoMutation) OldDeleteAt(ctx context.Context) (v int, err error)

OldDeleteAt returns the old "delete_at" field's value of the Info entity. If the Info 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 (*InfoMutation) OldDetail

func (m *InfoMutation) OldDetail(ctx context.Context) (v string, err error)

OldDetail returns the old "detail" field's value of the Info entity. If the Info 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 (*InfoMutation) OldField

func (m *InfoMutation) 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 (*InfoMutation) OldUpdatedAt

func (m *InfoMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error)

OldUpdatedAt returns the old "updated_at" field's value of the Info entity. If the Info 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 (*InfoMutation) Op

func (m *InfoMutation) Op() Op

Op returns the operation name.

func (*InfoMutation) QueryContext

func (c *InfoMutation) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoMutation) RemovedEdges

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

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

func (*InfoMutation) RemovedIDs

func (m *InfoMutation) 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 (*InfoMutation) ResetCreatedAt

func (m *InfoMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*InfoMutation) ResetDeleteAt

func (m *InfoMutation) ResetDeleteAt()

ResetDeleteAt resets all changes to the "delete_at" field.

func (*InfoMutation) ResetDetail

func (m *InfoMutation) ResetDetail()

ResetDetail resets all changes to the "detail" field.

func (*InfoMutation) ResetEdge

func (m *InfoMutation) 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 (*InfoMutation) ResetField

func (m *InfoMutation) 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 (*InfoMutation) ResetUpdatedAt

func (m *InfoMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*InfoMutation) SetCreatedAt

func (m *InfoMutation) SetCreatedAt(t time.Time)

SetCreatedAt sets the "created_at" field.

func (*InfoMutation) SetDeleteAt

func (m *InfoMutation) SetDeleteAt(i int)

SetDeleteAt sets the "delete_at" field.

func (*InfoMutation) SetDetail

func (m *InfoMutation) SetDetail(s string)

SetDetail sets the "detail" field.

func (*InfoMutation) SetField

func (m *InfoMutation) 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 (*InfoMutation) SetID

func (m *InfoMutation) SetID(id uint64)

SetID sets the value of the id field. Note that this operation is only accepted on creation of Info entities.

func (*InfoMutation) SetOp

func (m *InfoMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*InfoMutation) SetUpdatedAt

func (m *InfoMutation) SetUpdatedAt(t time.Time)

SetUpdatedAt sets the "updated_at" field.

func (InfoMutation) Tx

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

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

func (*InfoMutation) Type

func (m *InfoMutation) Type() string

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

func (*InfoMutation) UpdatedAt

func (m *InfoMutation) UpdatedAt() (r time.Time, exists bool)

UpdatedAt returns the value of the "updated_at" field in the mutation.

func (*InfoMutation) UpdatedAtCleared

func (m *InfoMutation) UpdatedAtCleared() bool

UpdatedAtCleared returns if the "updated_at" field was cleared in this mutation.

func (*InfoMutation) Where

func (m *InfoMutation) Where(ps ...predicate.Info)

Where appends a list predicates to the InfoMutation builder.

func (*InfoMutation) WhereP

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

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

type InfoOrder

type InfoOrder struct {
	Direction OrderDirection  `json:"direction"`
	Field     *InfoOrderField `json:"field"`
}

InfoOrder defines the ordering of Info.

type InfoOrderField

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

InfoOrderField defines the ordering field of Info.

func (InfoOrderField) MarshalGQL

func (f InfoOrderField) MarshalGQL(w io.Writer)

MarshalGQL implements graphql.Marshaler interface.

func (InfoOrderField) String

func (f InfoOrderField) String() string

String implement fmt.Stringer interface.

func (*InfoOrderField) UnmarshalGQL

func (f *InfoOrderField) UnmarshalGQL(v interface{}) error

UnmarshalGQL implements graphql.Unmarshaler interface.

type InfoPaginateOption

type InfoPaginateOption func(*infoPager) error

InfoPaginateOption enables pagination customization.

func WithInfoFilter

func WithInfoFilter(filter func(*InfoQuery) (*InfoQuery, error)) InfoPaginateOption

WithInfoFilter configures pagination filter.

func WithInfoOrder

func WithInfoOrder(order *InfoOrder) InfoPaginateOption

WithInfoOrder configures pagination ordering.

type InfoQuery

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

InfoQuery is the builder for querying Info entities.

func (*InfoQuery) Aggregate

func (iq *InfoQuery) Aggregate(fns ...AggregateFunc) *InfoSelect

Aggregate returns a InfoSelect configured with the given aggregations.

func (*InfoQuery) All

func (iq *InfoQuery) All(ctx context.Context) ([]*Info, error)

All executes the query and returns a list of Infos.

func (*InfoQuery) AllX

func (iq *InfoQuery) AllX(ctx context.Context) []*Info

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

func (*InfoQuery) Clone

func (iq *InfoQuery) Clone() *InfoQuery

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

func (*InfoQuery) CollectFields

func (i *InfoQuery) CollectFields(ctx context.Context, satisfies ...string) (*InfoQuery, error)

CollectFields tells the query-builder to eagerly load connected nodes by resolver context.

func (*InfoQuery) Count

func (iq *InfoQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*InfoQuery) CountX

func (iq *InfoQuery) CountX(ctx context.Context) int

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

func (*InfoQuery) ExecContext

func (c *InfoQuery) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoQuery) Exist

func (iq *InfoQuery) Exist(ctx context.Context) (bool, error)

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

func (*InfoQuery) ExistX

func (iq *InfoQuery) ExistX(ctx context.Context) bool

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

func (*InfoQuery) Filter

func (iq *InfoQuery) Filter() *InfoFilter

Filter returns a Filter implementation to apply filters on the InfoQuery builder.

func (*InfoQuery) First

func (iq *InfoQuery) First(ctx context.Context) (*Info, error)

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

func (*InfoQuery) FirstID

func (iq *InfoQuery) FirstID(ctx context.Context) (id uint64, err error)

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

func (*InfoQuery) FirstIDX

func (iq *InfoQuery) FirstIDX(ctx context.Context) uint64

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

func (*InfoQuery) FirstX

func (iq *InfoQuery) FirstX(ctx context.Context) *Info

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

func (*InfoQuery) GroupBy

func (iq *InfoQuery) GroupBy(field string, fields ...string) *InfoGroupBy

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 {
	CreatedAt time.Time `json:"created_at,omitempty"`
	Count int `json:"count,omitempty"`
}

client.Info.Query().
	GroupBy(info.FieldCreatedAt).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*InfoQuery) IDs

func (iq *InfoQuery) IDs(ctx context.Context) ([]uint64, error)

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

func (*InfoQuery) IDsX

func (iq *InfoQuery) IDsX(ctx context.Context) []uint64

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

func (*InfoQuery) Limit

func (iq *InfoQuery) Limit(limit int) *InfoQuery

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

func (*InfoQuery) Offset

func (iq *InfoQuery) Offset(offset int) *InfoQuery

Offset to start from.

func (*InfoQuery) Only

func (iq *InfoQuery) Only(ctx context.Context) (*Info, error)

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

func (*InfoQuery) OnlyID

func (iq *InfoQuery) OnlyID(ctx context.Context) (id uint64, err error)

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

func (*InfoQuery) OnlyIDX

func (iq *InfoQuery) OnlyIDX(ctx context.Context) uint64

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

func (*InfoQuery) OnlyX

func (iq *InfoQuery) OnlyX(ctx context.Context) *Info

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

func (*InfoQuery) Order

func (iq *InfoQuery) Order(o ...OrderFunc) *InfoQuery

Order specifies how the records should be ordered.

func (*InfoQuery) Paginate

func (i *InfoQuery) Paginate(
	ctx context.Context, after *Cursor, first *int,
	before *Cursor, last *int, opts ...InfoPaginateOption,
) (*InfoConnection, error)

Paginate executes the query and returns a relay based cursor connection to Info.

func (*InfoQuery) QueryContext

func (c *InfoQuery) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoQuery) Select

func (iq *InfoQuery) Select(fields ...string) *InfoSelect

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 {
	CreatedAt time.Time `json:"created_at,omitempty"`
}

client.Info.Query().
	Select(info.FieldCreatedAt).
	Scan(ctx, &v)

func (*InfoQuery) Unique

func (iq *InfoQuery) Unique(unique bool) *InfoQuery

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 (*InfoQuery) Where

func (iq *InfoQuery) Where(ps ...predicate.Info) *InfoQuery

Where adds a new predicate for the InfoQuery builder.

type InfoSelect

type InfoSelect struct {
	*InfoQuery
	// contains filtered or unexported fields
}

InfoSelect is the builder for selecting fields of Info entities.

func (*InfoSelect) Aggregate

func (is *InfoSelect) Aggregate(fns ...AggregateFunc) *InfoSelect

Aggregate adds the given aggregation functions to the selector query.

func (*InfoSelect) Bool

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

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

func (*InfoSelect) BoolX

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

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

func (*InfoSelect) Bools

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

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

func (*InfoSelect) BoolsX

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

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

func (InfoSelect) ExecContext

func (c InfoSelect) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoSelect) Float64

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

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

func (*InfoSelect) Float64X

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

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

func (*InfoSelect) Float64s

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

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

func (*InfoSelect) Float64sX

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

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

func (*InfoSelect) Int

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

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

func (*InfoSelect) IntX

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

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

func (*InfoSelect) Ints

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

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

func (*InfoSelect) IntsX

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

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

func (InfoSelect) QueryContext

func (c InfoSelect) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoSelect) Scan

func (is *InfoSelect) Scan(ctx context.Context, v any) error

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

func (*InfoSelect) ScanX

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

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

func (*InfoSelect) String

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

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

func (*InfoSelect) StringX

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

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

func (*InfoSelect) Strings

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

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

func (*InfoSelect) StringsX

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

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

type InfoUpdate

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

InfoUpdate is the builder for updating Info entities.

func (*InfoUpdate) AddDeleteAt

func (iu *InfoUpdate) AddDeleteAt(i int) *InfoUpdate

AddDeleteAt adds i to the "delete_at" field.

func (*InfoUpdate) ClearDeleteAt

func (iu *InfoUpdate) ClearDeleteAt() *InfoUpdate

ClearDeleteAt clears the value of the "delete_at" field.

func (*InfoUpdate) ClearUpdatedAt

func (iu *InfoUpdate) ClearUpdatedAt() *InfoUpdate

ClearUpdatedAt clears the value of the "updated_at" field.

func (*InfoUpdate) Exec

func (iu *InfoUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*InfoUpdate) ExecContext

func (c *InfoUpdate) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoUpdate) ExecX

func (iu *InfoUpdate) ExecX(ctx context.Context)

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

func (*InfoUpdate) Mutation

func (iu *InfoUpdate) Mutation() *InfoMutation

Mutation returns the InfoMutation object of the builder.

func (*InfoUpdate) QueryContext

func (c *InfoUpdate) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoUpdate) Save

func (iu *InfoUpdate) Save(ctx context.Context) (int, error)

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

func (*InfoUpdate) SaveX

func (iu *InfoUpdate) SaveX(ctx context.Context) int

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

func (*InfoUpdate) SetDeleteAt

func (iu *InfoUpdate) SetDeleteAt(i int) *InfoUpdate

SetDeleteAt sets the "delete_at" field.

func (*InfoUpdate) SetDetail

func (iu *InfoUpdate) SetDetail(s string) *InfoUpdate

SetDetail sets the "detail" field.

func (*InfoUpdate) SetNillableDeleteAt

func (iu *InfoUpdate) SetNillableDeleteAt(i *int) *InfoUpdate

SetNillableDeleteAt sets the "delete_at" field if the given value is not nil.

func (*InfoUpdate) SetUpdatedAt

func (iu *InfoUpdate) SetUpdatedAt(t time.Time) *InfoUpdate

SetUpdatedAt sets the "updated_at" field.

func (*InfoUpdate) Where

func (iu *InfoUpdate) Where(ps ...predicate.Info) *InfoUpdate

Where appends a list predicates to the InfoUpdate builder.

type InfoUpdateOne

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

InfoUpdateOne is the builder for updating a single Info entity.

func (*InfoUpdateOne) AddDeleteAt

func (iuo *InfoUpdateOne) AddDeleteAt(i int) *InfoUpdateOne

AddDeleteAt adds i to the "delete_at" field.

func (*InfoUpdateOne) ClearDeleteAt

func (iuo *InfoUpdateOne) ClearDeleteAt() *InfoUpdateOne

ClearDeleteAt clears the value of the "delete_at" field.

func (*InfoUpdateOne) ClearUpdatedAt

func (iuo *InfoUpdateOne) ClearUpdatedAt() *InfoUpdateOne

ClearUpdatedAt clears the value of the "updated_at" field.

func (*InfoUpdateOne) Exec

func (iuo *InfoUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*InfoUpdateOne) ExecContext

func (c *InfoUpdateOne) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*InfoUpdateOne) ExecX

func (iuo *InfoUpdateOne) ExecX(ctx context.Context)

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

func (*InfoUpdateOne) Mutation

func (iuo *InfoUpdateOne) Mutation() *InfoMutation

Mutation returns the InfoMutation object of the builder.

func (*InfoUpdateOne) QueryContext

func (c *InfoUpdateOne) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*InfoUpdateOne) Save

func (iuo *InfoUpdateOne) Save(ctx context.Context) (*Info, error)

Save executes the query and returns the updated Info entity.

func (*InfoUpdateOne) SaveX

func (iuo *InfoUpdateOne) SaveX(ctx context.Context) *Info

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

func (*InfoUpdateOne) Select

func (iuo *InfoUpdateOne) Select(field string, fields ...string) *InfoUpdateOne

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

func (*InfoUpdateOne) SetDeleteAt

func (iuo *InfoUpdateOne) SetDeleteAt(i int) *InfoUpdateOne

SetDeleteAt sets the "delete_at" field.

func (*InfoUpdateOne) SetDetail

func (iuo *InfoUpdateOne) SetDetail(s string) *InfoUpdateOne

SetDetail sets the "detail" field.

func (*InfoUpdateOne) SetNillableDeleteAt

func (iuo *InfoUpdateOne) SetNillableDeleteAt(i *int) *InfoUpdateOne

SetNillableDeleteAt sets the "delete_at" field if the given value is not nil.

func (*InfoUpdateOne) SetUpdatedAt

func (iuo *InfoUpdateOne) SetUpdatedAt(t time.Time) *InfoUpdateOne

SetUpdatedAt sets the "updated_at" field.

type InfoUpsert

type InfoUpsert struct {
	*sql.UpdateSet
}

InfoUpsert is the "OnConflict" setter.

func (*InfoUpsert) AddDeleteAt

func (u *InfoUpsert) AddDeleteAt(v int) *InfoUpsert

AddDeleteAt adds v to the "delete_at" field.

func (*InfoUpsert) ClearDeleteAt

func (u *InfoUpsert) ClearDeleteAt() *InfoUpsert

ClearDeleteAt clears the value of the "delete_at" field.

func (*InfoUpsert) ClearUpdatedAt

func (u *InfoUpsert) ClearUpdatedAt() *InfoUpsert

ClearUpdatedAt clears the value of the "updated_at" field.

func (*InfoUpsert) SetDeleteAt

func (u *InfoUpsert) SetDeleteAt(v int) *InfoUpsert

SetDeleteAt sets the "delete_at" field.

func (*InfoUpsert) SetDetail

func (u *InfoUpsert) SetDetail(v string) *InfoUpsert

SetDetail sets the "detail" field.

func (*InfoUpsert) SetUpdatedAt

func (u *InfoUpsert) SetUpdatedAt(v time.Time) *InfoUpsert

SetUpdatedAt sets the "updated_at" field.

func (*InfoUpsert) UpdateDeleteAt

func (u *InfoUpsert) UpdateDeleteAt() *InfoUpsert

UpdateDeleteAt sets the "delete_at" field to the value that was provided on create.

func (*InfoUpsert) UpdateDetail

func (u *InfoUpsert) UpdateDetail() *InfoUpsert

UpdateDetail sets the "detail" field to the value that was provided on create.

func (*InfoUpsert) UpdateUpdatedAt

func (u *InfoUpsert) UpdateUpdatedAt() *InfoUpsert

UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.

type InfoUpsertBulk

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

InfoUpsertBulk is the builder for "upsert"-ing a bulk of Info nodes.

func (*InfoUpsertBulk) AddDeleteAt

func (u *InfoUpsertBulk) AddDeleteAt(v int) *InfoUpsertBulk

AddDeleteAt adds v to the "delete_at" field.

func (*InfoUpsertBulk) ClearDeleteAt

func (u *InfoUpsertBulk) ClearDeleteAt() *InfoUpsertBulk

ClearDeleteAt clears the value of the "delete_at" field.

func (*InfoUpsertBulk) ClearUpdatedAt

func (u *InfoUpsertBulk) ClearUpdatedAt() *InfoUpsertBulk

ClearUpdatedAt clears the value of the "updated_at" field.

func (*InfoUpsertBulk) DoNothing

func (u *InfoUpsertBulk) DoNothing() *InfoUpsertBulk

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

func (*InfoUpsertBulk) Exec

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

Exec executes the query.

func (*InfoUpsertBulk) ExecX

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

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

func (*InfoUpsertBulk) Ignore

func (u *InfoUpsertBulk) Ignore() *InfoUpsertBulk

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

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

func (*InfoUpsertBulk) SetDeleteAt

func (u *InfoUpsertBulk) SetDeleteAt(v int) *InfoUpsertBulk

SetDeleteAt sets the "delete_at" field.

func (*InfoUpsertBulk) SetDetail

func (u *InfoUpsertBulk) SetDetail(v string) *InfoUpsertBulk

SetDetail sets the "detail" field.

func (*InfoUpsertBulk) SetUpdatedAt

func (u *InfoUpsertBulk) SetUpdatedAt(v time.Time) *InfoUpsertBulk

SetUpdatedAt sets the "updated_at" field.

func (*InfoUpsertBulk) Update

func (u *InfoUpsertBulk) Update(set func(*InfoUpsert)) *InfoUpsertBulk

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

func (*InfoUpsertBulk) UpdateDeleteAt

func (u *InfoUpsertBulk) UpdateDeleteAt() *InfoUpsertBulk

UpdateDeleteAt sets the "delete_at" field to the value that was provided on create.

func (*InfoUpsertBulk) UpdateDetail

func (u *InfoUpsertBulk) UpdateDetail() *InfoUpsertBulk

UpdateDetail sets the "detail" field to the value that was provided on create.

func (*InfoUpsertBulk) UpdateNewValues

func (u *InfoUpsertBulk) UpdateNewValues() *InfoUpsertBulk

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

client.Info.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
		sql.ResolveWith(func(u *sql.UpdateSet) {
			u.SetIgnore(info.FieldID)
		}),
	).
	Exec(ctx)

func (*InfoUpsertBulk) UpdateUpdatedAt

func (u *InfoUpsertBulk) UpdateUpdatedAt() *InfoUpsertBulk

UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.

type InfoUpsertOne

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

InfoUpsertOne is the builder for "upsert"-ing

one Info node.

func (*InfoUpsertOne) AddDeleteAt

func (u *InfoUpsertOne) AddDeleteAt(v int) *InfoUpsertOne

AddDeleteAt adds v to the "delete_at" field.

func (*InfoUpsertOne) ClearDeleteAt

func (u *InfoUpsertOne) ClearDeleteAt() *InfoUpsertOne

ClearDeleteAt clears the value of the "delete_at" field.

func (*InfoUpsertOne) ClearUpdatedAt

func (u *InfoUpsertOne) ClearUpdatedAt() *InfoUpsertOne

ClearUpdatedAt clears the value of the "updated_at" field.

func (*InfoUpsertOne) DoNothing

func (u *InfoUpsertOne) DoNothing() *InfoUpsertOne

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

func (*InfoUpsertOne) Exec

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

Exec executes the query.

func (*InfoUpsertOne) ExecX

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

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

func (*InfoUpsertOne) ID

func (u *InfoUpsertOne) ID(ctx context.Context) (id uint64, err error)

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

func (*InfoUpsertOne) IDX

func (u *InfoUpsertOne) IDX(ctx context.Context) uint64

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

func (*InfoUpsertOne) Ignore

func (u *InfoUpsertOne) Ignore() *InfoUpsertOne

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

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

func (*InfoUpsertOne) SetDeleteAt

func (u *InfoUpsertOne) SetDeleteAt(v int) *InfoUpsertOne

SetDeleteAt sets the "delete_at" field.

func (*InfoUpsertOne) SetDetail

func (u *InfoUpsertOne) SetDetail(v string) *InfoUpsertOne

SetDetail sets the "detail" field.

func (*InfoUpsertOne) SetUpdatedAt

func (u *InfoUpsertOne) SetUpdatedAt(v time.Time) *InfoUpsertOne

SetUpdatedAt sets the "updated_at" field.

func (*InfoUpsertOne) Update

func (u *InfoUpsertOne) Update(set func(*InfoUpsert)) *InfoUpsertOne

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

func (*InfoUpsertOne) UpdateDeleteAt

func (u *InfoUpsertOne) UpdateDeleteAt() *InfoUpsertOne

UpdateDeleteAt sets the "delete_at" field to the value that was provided on create.

func (*InfoUpsertOne) UpdateDetail

func (u *InfoUpsertOne) UpdateDetail() *InfoUpsertOne

UpdateDetail sets the "detail" field to the value that was provided on create.

func (*InfoUpsertOne) UpdateNewValues

func (u *InfoUpsertOne) UpdateNewValues() *InfoUpsertOne

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

client.Info.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
		sql.ResolveWith(func(u *sql.UpdateSet) {
			u.SetIgnore(info.FieldID)
		}),
	).
	Exec(ctx)

func (*InfoUpsertOne) UpdateUpdatedAt

func (u *InfoUpsertOne) UpdateUpdatedAt() *InfoUpsertOne

UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.

type Infos

type Infos []*Info

Infos is a parsable slice of Info.

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 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 NodeOption

type NodeOption func(*nodeOptions)

NodeOption allows configuring the Noder execution using functional options.

func WithFixedNodeType

func WithFixedNodeType(t string) NodeOption

WithFixedNodeType sets the Type of the node to a fixed value.

func WithNodeType

func WithNodeType(f func(context.Context, uint64) (string, error)) NodeOption

WithNodeType sets the node Type resolver function (i.e. the table to query). If was not provided, the table will be derived from the universal-id configuration as described in: https://entgo.io/docs/migrate/#universal-ids.

type Noder

type Noder interface {
	IsNode()
}

Noder wraps the basic Node method.

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 OrderDirection

type OrderDirection string

OrderDirection defines the directions in which to order a list of items.

const (
	// OrderDirectionAsc specifies an ascending order.
	OrderDirectionAsc OrderDirection = "ASC"
	// OrderDirectionDesc specifies a descending order.
	OrderDirectionDesc OrderDirection = "DESC"
)

func (OrderDirection) MarshalGQL

func (o OrderDirection) MarshalGQL(w io.Writer)

MarshalGQL implements graphql.Marshaler interface.

func (OrderDirection) String

func (o OrderDirection) String() string

String implements fmt.Stringer interface.

func (*OrderDirection) UnmarshalGQL

func (o *OrderDirection) UnmarshalGQL(val interface{}) error

UnmarshalGQL implements graphql.Unmarshaler interface.

func (OrderDirection) Validate

func (o OrderDirection) Validate() error

Validate the order direction value.

type OrderFunc

type OrderFunc func(*sql.Selector)

OrderFunc applies an ordering on the sql selector.

func Asc

func Asc(fields ...string) OrderFunc

Asc applies the given fields in ASC order.

func Desc

func Desc(fields ...string) OrderFunc

Desc applies the given fields in DESC order.

type PageInfo

type PageInfo struct {
	HasNextPage     bool    `json:"hasNextPage"`
	HasPreviousPage bool    `json:"hasPreviousPage"`
	StartCursor     *Cursor `json:"startCursor"`
	EndCursor       *Cursor `json:"endCursor"`
}

PageInfo of a connection type.

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 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 {

	// Info is the client for interacting with the Info builders.
	Info *InfoClient
	// 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) ExecContext

func (c *Tx) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) QueryContext

func (c *Tx) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*Tx) Rollback

func (tx *Tx) Rollback() error

Rollback rollbacks the transaction.

type User

type User struct {

	// ID of the ent.
	// id
	ID uint64 `json:"id,omitempty"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// 更新时间时间
	UpdatedAt time.Time `json:"updated_at,omitempty"`
	// delete_at 1 normal 0 delete | 状态 1 正常 0 删除
	DeleteAt int `json:"delete_at,omitempty"`
	// nickname | 昵称
	Nickname string `json:"nickname,omitempty"`
	// email | 邮箱号
	Email string `json:"email,omitempty"`
	// 权限优先级
	Level property.Level `json:"level,omitempty"`
	// contains filtered or unexported fields
}

User is the model entity for the User schema.

func (*User) ExecContext

func (c *User) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*User) IsNode

func (n *User) IsNode()

IsNode implements the Node interface check for GQLGen.

func (*User) QueryContext

func (c *User) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*User) String

func (u *User) String() string

String implements the fmt.Stringer.

func (*User) ToEdge

func (u *User) ToEdge(order *UserOrder) *UserEdge

ToEdge converts User into UserEdge.

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.

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 uint64) *UserDeleteOne

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

func (*UserClient) ExecContext

func (c *UserClient) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*UserClient) Get

func (c *UserClient) Get(ctx context.Context, id uint64) (*User, error)

Get returns a User entity by its id.

func (*UserClient) GetX

func (c *UserClient) GetX(ctx context.Context, id uint64) *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)

Use 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) Query

func (c *UserClient) Query() *UserQuery

Query returns a query builder for User.

func (*UserClient) QueryContext

func (c *UserClient) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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 uint64) *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 UserConnection

type UserConnection struct {
	Edges      []*UserEdge `json:"edges"`
	PageInfo   PageInfo    `json:"pageInfo"`
	TotalCount int         `json:"totalCount"`
}

UserConnection is the connection containing edges to User.

type UserCreate

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

UserCreate is the builder for creating a User entity.

func (*UserCreate) Exec

func (uc *UserCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*UserCreate) ExecContext

func (c *UserCreate) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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().
	SetCreatedAt(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) {
		SetCreatedAt(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) QueryContext

func (c *UserCreate) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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) SetCreatedAt

func (uc *UserCreate) SetCreatedAt(t time.Time) *UserCreate

SetCreatedAt sets the "created_at" field.

func (*UserCreate) SetDeleteAt

func (uc *UserCreate) SetDeleteAt(i int) *UserCreate

SetDeleteAt sets the "delete_at" field.

func (*UserCreate) SetEmail

func (uc *UserCreate) SetEmail(s string) *UserCreate

SetEmail sets the "email" field.

func (*UserCreate) SetID

func (uc *UserCreate) SetID(u uint64) *UserCreate

SetID sets the "id" field.

func (*UserCreate) SetInput

func (c *UserCreate) SetInput(i CreateUserInput) *UserCreate

SetInput applies the change-set in the CreateUserInput on the UserCreate builder.

func (*UserCreate) SetLevel

func (uc *UserCreate) SetLevel(pr property.Level) *UserCreate

SetLevel sets the "level" field.

func (*UserCreate) SetNickname

func (uc *UserCreate) SetNickname(s string) *UserCreate

SetNickname sets the "nickname" field.

func (*UserCreate) SetNillableCreatedAt

func (uc *UserCreate) SetNillableCreatedAt(t *time.Time) *UserCreate

SetNillableCreatedAt sets the "created_at" field if the given value is not nil.

func (*UserCreate) SetNillableDeleteAt

func (uc *UserCreate) SetNillableDeleteAt(i *int) *UserCreate

SetNillableDeleteAt sets the "delete_at" field if the given value is not nil.

func (*UserCreate) SetNillableEmail

func (uc *UserCreate) SetNillableEmail(s *string) *UserCreate

SetNillableEmail sets the "email" field if the given value is not nil.

func (*UserCreate) SetNillableUpdatedAt

func (uc *UserCreate) SetNillableUpdatedAt(t *time.Time) *UserCreate

SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.

func (*UserCreate) SetUpdatedAt

func (uc *UserCreate) SetUpdatedAt(t time.Time) *UserCreate

SetUpdatedAt sets the "updated_at" field.

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) ExecContext

func (c *UserCreateBulk) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) {
		SetCreatedAt(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) QueryContext

func (c *UserCreateBulk) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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) ExecContext

func (c *UserDelete) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*UserDelete) ExecX

func (ud *UserDelete) ExecX(ctx context.Context) int

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

func (*UserDelete) QueryContext

func (c *UserDelete) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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 UserEdge

type UserEdge struct {
	Node   *User  `json:"node"`
	Cursor Cursor `json:"cursor"`
}

UserEdge is the edge representation of User.

type UserFilter

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

UserFilter provides a generic filtering capability at runtime for UserQuery.

func (*UserFilter) ExecContext

func (c *UserFilter) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

func (*UserFilter) QueryContext

func (c *UserFilter) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*UserFilter) Where

func (f *UserFilter) Where(p entql.P)

Where applies the entql predicate on the query filter.

func (*UserFilter) WhereCreatedAt

func (f *UserFilter) WhereCreatedAt(p entql.TimeP)

WhereCreatedAt applies the entql time.Time predicate on the created_at field.

func (*UserFilter) WhereDeleteAt

func (f *UserFilter) WhereDeleteAt(p entql.IntP)

WhereDeleteAt applies the entql int predicate on the delete_at field.

func (*UserFilter) WhereEmail

func (f *UserFilter) WhereEmail(p entql.StringP)

WhereEmail applies the entql string predicate on the email field.

func (*UserFilter) WhereID

func (f *UserFilter) WhereID(p entql.Uint64P)

WhereID applies the entql uint64 predicate on the id field.

func (*UserFilter) WhereLevel

func (f *UserFilter) WhereLevel(p entql.StringP)

WhereLevel applies the entql string predicate on the level field.

func (*UserFilter) WhereNickname

func (f *UserFilter) WhereNickname(p entql.StringP)

WhereNickname applies the entql string predicate on the nickname field.

func (*UserFilter) WhereUpdatedAt

func (f *UserFilter) WhereUpdatedAt(p entql.TimeP)

WhereUpdatedAt applies the entql time.Time predicate on the updated_at field.

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) AddDeleteAt

func (m *UserMutation) AddDeleteAt(i int)

AddDeleteAt adds i to the "delete_at" field.

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) AddedDeleteAt

func (m *UserMutation) AddedDeleteAt() (r int, exists bool)

AddedDeleteAt returns the value that was added to the "delete_at" field in this mutation.

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) ClearCreatedAt

func (m *UserMutation) ClearCreatedAt()

ClearCreatedAt clears the value of the "created_at" field.

func (*UserMutation) ClearDeleteAt

func (m *UserMutation) ClearDeleteAt()

ClearDeleteAt clears the value of the "delete_at" field.

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) ClearEmail

func (m *UserMutation) ClearEmail()

ClearEmail clears the value of the "email" field.

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) ClearUpdatedAt

func (m *UserMutation) ClearUpdatedAt()

ClearUpdatedAt clears the value of the "updated_at" field.

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) CreatedAt

func (m *UserMutation) CreatedAt() (r time.Time, exists bool)

CreatedAt returns the value of the "created_at" field in the mutation.

func (*UserMutation) CreatedAtCleared

func (m *UserMutation) CreatedAtCleared() bool

CreatedAtCleared returns if the "created_at" field was cleared in this mutation.

func (*UserMutation) DeleteAt

func (m *UserMutation) DeleteAt() (r int, exists bool)

DeleteAt returns the value of the "delete_at" field in the mutation.

func (*UserMutation) DeleteAtCleared

func (m *UserMutation) DeleteAtCleared() bool

DeleteAtCleared returns if the "delete_at" field was cleared in this mutation.

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) EmailCleared

func (m *UserMutation) EmailCleared() bool

EmailCleared returns if the "email" field was cleared in this mutation.

func (*UserMutation) ExecContext

func (c *UserMutation) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) Filter

func (m *UserMutation) Filter() *UserFilter

Filter returns an entql.Where implementation to apply filters on the UserMutation builder.

func (*UserMutation) ID

func (m *UserMutation) ID() (id uint64, 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) ([]uint64, 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) Level

func (m *UserMutation) Level() (r property.Level, exists bool)

Level returns the value of the "level" field in the mutation.

func (*UserMutation) Nickname

func (m *UserMutation) Nickname() (r string, exists bool)

Nickname returns the value of the "nickname" field in the mutation.

func (*UserMutation) OldCreatedAt

func (m *UserMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error)

OldCreatedAt returns the old "created_at" 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) OldDeleteAt

func (m *UserMutation) OldDeleteAt(ctx context.Context) (v int, err error)

OldDeleteAt returns the old "delete_at" 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) OldLevel

func (m *UserMutation) OldLevel(ctx context.Context) (v property.Level, err error)

OldLevel returns the old "level" 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) OldNickname

func (m *UserMutation) OldNickname(ctx context.Context) (v string, err error)

OldNickname returns the old "nickname" 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) OldUpdatedAt

func (m *UserMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error)

OldUpdatedAt returns the old "updated_at" 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) Op

func (m *UserMutation) Op() Op

Op returns the operation name.

func (*UserMutation) QueryContext

func (c *UserMutation) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

func (*UserMutation) RemovedEdges

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

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

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) ResetCreatedAt

func (m *UserMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*UserMutation) ResetDeleteAt

func (m *UserMutation) ResetDeleteAt()

ResetDeleteAt resets all changes to the "delete_at" 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) 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) ResetLevel

func (m *UserMutation) ResetLevel()

ResetLevel resets all changes to the "level" field.

func (*UserMutation) ResetNickname

func (m *UserMutation) ResetNickname()

ResetNickname resets all changes to the "nickname" field.

func (*UserMutation) ResetUpdatedAt

func (m *UserMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*UserMutation) SetCreatedAt

func (m *UserMutation) SetCreatedAt(t time.Time)

SetCreatedAt sets the "created_at" field.

func (*UserMutation) SetDeleteAt

func (m *UserMutation) SetDeleteAt(i int)

SetDeleteAt sets the "delete_at" 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) SetID

func (m *UserMutation) SetID(id uint64)

SetID sets the value of the id field. Note that this operation is only accepted on creation of User entities.

func (*UserMutation) SetLevel

func (m *UserMutation) SetLevel(pr property.Level)

SetLevel sets the "level" field.

func (*UserMutation) SetNickname

func (m *UserMutation) SetNickname(s string)

SetNickname sets the "nickname" field.

func (*UserMutation) SetOp

func (m *UserMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*UserMutation) SetUpdatedAt

func (m *UserMutation) SetUpdatedAt(t time.Time)

SetUpdatedAt sets the "updated_at" field.

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) UpdatedAt

func (m *UserMutation) UpdatedAt() (r time.Time, exists bool)

UpdatedAt returns the value of the "updated_at" field in the mutation.

func (*UserMutation) UpdatedAtCleared

func (m *UserMutation) UpdatedAtCleared() bool

UpdatedAtCleared returns if the "updated_at" field was cleared in this mutation.

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 UserOrder

type UserOrder struct {
	Direction OrderDirection  `json:"direction"`
	Field     *UserOrderField `json:"field"`
}

UserOrder defines the ordering of User.

type UserOrderField

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

UserOrderField defines the ordering field of User.

func (UserOrderField) MarshalGQL

func (f UserOrderField) MarshalGQL(w io.Writer)

MarshalGQL implements graphql.Marshaler interface.

func (UserOrderField) String

func (f UserOrderField) String() string

String implement fmt.Stringer interface.

func (*UserOrderField) UnmarshalGQL

func (f *UserOrderField) UnmarshalGQL(v interface{}) error

UnmarshalGQL implements graphql.Unmarshaler interface.

type UserPaginateOption

type UserPaginateOption func(*userPager) error

UserPaginateOption enables pagination customization.

func WithUserFilter

func WithUserFilter(filter func(*UserQuery) (*UserQuery, error)) UserPaginateOption

WithUserFilter configures pagination filter.

func WithUserOrder

func WithUserOrder(order *UserOrder) UserPaginateOption

WithUserOrder configures pagination ordering.

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) CollectFields

func (u *UserQuery) CollectFields(ctx context.Context, satisfies ...string) (*UserQuery, error)

CollectFields tells the query-builder to eagerly load connected nodes by resolver context.

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) ExecContext

func (c *UserQuery) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) Filter

func (uq *UserQuery) Filter() *UserFilter

Filter returns a Filter implementation to apply filters on the UserQuery builder.

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 uint64, 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) uint64

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 {
	CreatedAt time.Time `json:"created_at,omitempty"`
	Count int `json:"count,omitempty"`
}

client.User.Query().
	GroupBy(user.FieldCreatedAt).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*UserQuery) IDs

func (uq *UserQuery) IDs(ctx context.Context) ([]uint64, error)

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

func (*UserQuery) IDsX

func (uq *UserQuery) IDsX(ctx context.Context) []uint64

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 uint64, 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) uint64

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 ...OrderFunc) *UserQuery

Order specifies how the records should be ordered.

func (*UserQuery) Paginate

func (u *UserQuery) Paginate(
	ctx context.Context, after *Cursor, first *int,
	before *Cursor, last *int, opts ...UserPaginateOption,
) (*UserConnection, error)

Paginate executes the query and returns a relay based cursor connection to User.

func (*UserQuery) QueryContext

func (c *UserQuery) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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 {
	CreatedAt time.Time `json:"created_at,omitempty"`
}

client.User.Query().
	Select(user.FieldCreatedAt).
	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.

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) ExecContext

func (c UserSelect) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) QueryContext

func (c UserSelect) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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) AddDeleteAt

func (uu *UserUpdate) AddDeleteAt(i int) *UserUpdate

AddDeleteAt adds i to the "delete_at" field.

func (*UserUpdate) ClearDeleteAt

func (uu *UserUpdate) ClearDeleteAt() *UserUpdate

ClearDeleteAt clears the value of the "delete_at" field.

func (*UserUpdate) ClearEmail

func (uu *UserUpdate) ClearEmail() *UserUpdate

ClearEmail clears the value of the "email" field.

func (*UserUpdate) ClearUpdatedAt

func (uu *UserUpdate) ClearUpdatedAt() *UserUpdate

ClearUpdatedAt clears the value of the "updated_at" field.

func (*UserUpdate) Exec

func (uu *UserUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*UserUpdate) ExecContext

func (c *UserUpdate) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) QueryContext

func (c *UserUpdate) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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) SetDeleteAt

func (uu *UserUpdate) SetDeleteAt(i int) *UserUpdate

SetDeleteAt sets the "delete_at" field.

func (*UserUpdate) SetEmail

func (uu *UserUpdate) SetEmail(s string) *UserUpdate

SetEmail sets the "email" field.

func (*UserUpdate) SetLevel

func (uu *UserUpdate) SetLevel(pr property.Level) *UserUpdate

SetLevel sets the "level" field.

func (*UserUpdate) SetNickname

func (uu *UserUpdate) SetNickname(s string) *UserUpdate

SetNickname sets the "nickname" field.

func (*UserUpdate) SetNillableDeleteAt

func (uu *UserUpdate) SetNillableDeleteAt(i *int) *UserUpdate

SetNillableDeleteAt sets the "delete_at" 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) SetUpdatedAt

func (uu *UserUpdate) SetUpdatedAt(t time.Time) *UserUpdate

SetUpdatedAt sets the "updated_at" field.

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) AddDeleteAt

func (uuo *UserUpdateOne) AddDeleteAt(i int) *UserUpdateOne

AddDeleteAt adds i to the "delete_at" field.

func (*UserUpdateOne) ClearDeleteAt

func (uuo *UserUpdateOne) ClearDeleteAt() *UserUpdateOne

ClearDeleteAt clears the value of the "delete_at" field.

func (*UserUpdateOne) ClearEmail

func (uuo *UserUpdateOne) ClearEmail() *UserUpdateOne

ClearEmail clears the value of the "email" field.

func (*UserUpdateOne) ClearUpdatedAt

func (uuo *UserUpdateOne) ClearUpdatedAt() *UserUpdateOne

ClearUpdatedAt clears the value of the "updated_at" field.

func (*UserUpdateOne) Exec

func (uuo *UserUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*UserUpdateOne) ExecContext

func (c *UserUpdateOne) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error)

ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it. See, database/sql#DB.ExecContext for more information.

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) QueryContext

func (c *UserUpdateOne) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error)

QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it. See, database/sql#DB.QueryContext for more information.

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) SetDeleteAt

func (uuo *UserUpdateOne) SetDeleteAt(i int) *UserUpdateOne

SetDeleteAt sets the "delete_at" field.

func (*UserUpdateOne) SetEmail

func (uuo *UserUpdateOne) SetEmail(s string) *UserUpdateOne

SetEmail sets the "email" field.

func (*UserUpdateOne) SetLevel

func (uuo *UserUpdateOne) SetLevel(pr property.Level) *UserUpdateOne

SetLevel sets the "level" field.

func (*UserUpdateOne) SetNickname

func (uuo *UserUpdateOne) SetNickname(s string) *UserUpdateOne

SetNickname sets the "nickname" field.

func (*UserUpdateOne) SetNillableDeleteAt

func (uuo *UserUpdateOne) SetNillableDeleteAt(i *int) *UserUpdateOne

SetNillableDeleteAt sets the "delete_at" 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) SetUpdatedAt

func (uuo *UserUpdateOne) SetUpdatedAt(t time.Time) *UserUpdateOne

SetUpdatedAt sets the "updated_at" field.

type UserUpsert

type UserUpsert struct {
	*sql.UpdateSet
}

UserUpsert is the "OnConflict" setter.

func (*UserUpsert) AddDeleteAt

func (u *UserUpsert) AddDeleteAt(v int) *UserUpsert

AddDeleteAt adds v to the "delete_at" field.

func (*UserUpsert) ClearDeleteAt

func (u *UserUpsert) ClearDeleteAt() *UserUpsert

ClearDeleteAt clears the value of the "delete_at" field.

func (*UserUpsert) ClearEmail

func (u *UserUpsert) ClearEmail() *UserUpsert

ClearEmail clears the value of the "email" field.

func (*UserUpsert) ClearUpdatedAt

func (u *UserUpsert) ClearUpdatedAt() *UserUpsert

ClearUpdatedAt clears the value of the "updated_at" field.

func (*UserUpsert) SetDeleteAt

func (u *UserUpsert) SetDeleteAt(v int) *UserUpsert

SetDeleteAt sets the "delete_at" field.

func (*UserUpsert) SetEmail

func (u *UserUpsert) SetEmail(v string) *UserUpsert

SetEmail sets the "email" field.

func (*UserUpsert) SetLevel

func (u *UserUpsert) SetLevel(v property.Level) *UserUpsert

SetLevel sets the "level" field.

func (*UserUpsert) SetNickname

func (u *UserUpsert) SetNickname(v string) *UserUpsert

SetNickname sets the "nickname" field.

func (*UserUpsert) SetUpdatedAt

func (u *UserUpsert) SetUpdatedAt(v time.Time) *UserUpsert

SetUpdatedAt sets the "updated_at" field.

func (*UserUpsert) UpdateDeleteAt

func (u *UserUpsert) UpdateDeleteAt() *UserUpsert

UpdateDeleteAt sets the "delete_at" 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.

func (*UserUpsert) UpdateLevel

func (u *UserUpsert) UpdateLevel() *UserUpsert

UpdateLevel sets the "level" field to the value that was provided on create.

func (*UserUpsert) UpdateNickname

func (u *UserUpsert) UpdateNickname() *UserUpsert

UpdateNickname sets the "nickname" field to the value that was provided on create.

func (*UserUpsert) UpdateUpdatedAt

func (u *UserUpsert) UpdateUpdatedAt() *UserUpsert

UpdateUpdatedAt sets the "updated_at" 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) AddDeleteAt

func (u *UserUpsertBulk) AddDeleteAt(v int) *UserUpsertBulk

AddDeleteAt adds v to the "delete_at" field.

func (*UserUpsertBulk) ClearDeleteAt

func (u *UserUpsertBulk) ClearDeleteAt() *UserUpsertBulk

ClearDeleteAt clears the value of the "delete_at" field.

func (*UserUpsertBulk) ClearEmail

func (u *UserUpsertBulk) ClearEmail() *UserUpsertBulk

ClearEmail clears the value of the "email" field.

func (*UserUpsertBulk) ClearUpdatedAt

func (u *UserUpsertBulk) ClearUpdatedAt() *UserUpsertBulk

ClearUpdatedAt clears the value of the "updated_at" field.

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) SetDeleteAt

func (u *UserUpsertBulk) SetDeleteAt(v int) *UserUpsertBulk

SetDeleteAt sets the "delete_at" field.

func (*UserUpsertBulk) SetEmail

func (u *UserUpsertBulk) SetEmail(v string) *UserUpsertBulk

SetEmail sets the "email" field.

func (*UserUpsertBulk) SetLevel

func (u *UserUpsertBulk) SetLevel(v property.Level) *UserUpsertBulk

SetLevel sets the "level" field.

func (*UserUpsertBulk) SetNickname

func (u *UserUpsertBulk) SetNickname(v string) *UserUpsertBulk

SetNickname sets the "nickname" field.

func (*UserUpsertBulk) SetUpdatedAt

func (u *UserUpsertBulk) SetUpdatedAt(v time.Time) *UserUpsertBulk

SetUpdatedAt sets the "updated_at" 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) UpdateDeleteAt

func (u *UserUpsertBulk) UpdateDeleteAt() *UserUpsertBulk

UpdateDeleteAt sets the "delete_at" 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) UpdateLevel

func (u *UserUpsertBulk) UpdateLevel() *UserUpsertBulk

UpdateLevel sets the "level" 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(),
		sql.ResolveWith(func(u *sql.UpdateSet) {
			u.SetIgnore(user.FieldID)
		}),
	).
	Exec(ctx)

func (*UserUpsertBulk) UpdateNickname

func (u *UserUpsertBulk) UpdateNickname() *UserUpsertBulk

UpdateNickname sets the "nickname" field to the value that was provided on create.

func (*UserUpsertBulk) UpdateUpdatedAt

func (u *UserUpsertBulk) UpdateUpdatedAt() *UserUpsertBulk

UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.

type UserUpsertOne

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

UserUpsertOne is the builder for "upsert"-ing

one User node.

func (*UserUpsertOne) AddDeleteAt

func (u *UserUpsertOne) AddDeleteAt(v int) *UserUpsertOne

AddDeleteAt adds v to the "delete_at" field.

func (*UserUpsertOne) ClearDeleteAt

func (u *UserUpsertOne) ClearDeleteAt() *UserUpsertOne

ClearDeleteAt clears the value of the "delete_at" field.

func (*UserUpsertOne) ClearEmail

func (u *UserUpsertOne) ClearEmail() *UserUpsertOne

ClearEmail clears the value of the "email" field.

func (*UserUpsertOne) ClearUpdatedAt

func (u *UserUpsertOne) ClearUpdatedAt() *UserUpsertOne

ClearUpdatedAt clears the value of the "updated_at" field.

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 uint64, err error)

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

func (*UserUpsertOne) IDX

func (u *UserUpsertOne) IDX(ctx context.Context) uint64

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) SetDeleteAt

func (u *UserUpsertOne) SetDeleteAt(v int) *UserUpsertOne

SetDeleteAt sets the "delete_at" field.

func (*UserUpsertOne) SetEmail

func (u *UserUpsertOne) SetEmail(v string) *UserUpsertOne

SetEmail sets the "email" field.

func (*UserUpsertOne) SetLevel

func (u *UserUpsertOne) SetLevel(v property.Level) *UserUpsertOne

SetLevel sets the "level" field.

func (*UserUpsertOne) SetNickname

func (u *UserUpsertOne) SetNickname(v string) *UserUpsertOne

SetNickname sets the "nickname" field.

func (*UserUpsertOne) SetUpdatedAt

func (u *UserUpsertOne) SetUpdatedAt(v time.Time) *UserUpsertOne

SetUpdatedAt sets the "updated_at" 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) UpdateDeleteAt

func (u *UserUpsertOne) UpdateDeleteAt() *UserUpsertOne

UpdateDeleteAt sets the "delete_at" 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) UpdateLevel

func (u *UserUpsertOne) UpdateLevel() *UserUpsertOne

UpdateLevel sets the "level" 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 except the ID field. Using this option is equivalent to using:

client.User.Create().
	OnConflict(
		sql.ResolveWithNewValues(),
		sql.ResolveWith(func(u *sql.UpdateSet) {
			u.SetIgnore(user.FieldID)
		}),
	).
	Exec(ctx)

func (*UserUpsertOne) UpdateNickname

func (u *UserUpsertOne) UpdateNickname() *UserUpsertOne

UpdateNickname sets the "nickname" field to the value that was provided on create.

func (*UserUpsertOne) UpdateUpdatedAt

func (u *UserUpsertOne) UpdateUpdatedAt() *UserUpsertOne

UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.

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