ent

package
v0.0.0-...-fb3163d Latest Latest
Warning

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

Go to latest
Published: Sep 5, 2023 License: Apache-2.0 Imports: 21 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.
	TypeDataSource    = "DataSource"
	TypeGroup         = "Group"
	TypePasswordToken = "PasswordToken"
	TypeUser          = "User"
)

Variables

This section is empty.

Functions

func Asc

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

Asc applies the given fields in ASC order.

func Desc

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

Desc applies the given fields in DESC order.

func IsConstraintError

func IsConstraintError(err error) bool

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

func IsNotFound

func IsNotFound(err error) bool

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

func IsNotLoaded

func IsNotLoaded(err error) bool

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

func IsNotSingular

func IsNotSingular(err error) bool

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

func IsValidationError

func IsValidationError(err error) bool

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

func MaskNotFound

func MaskNotFound(err error) error

MaskNotFound masks not found error.

func NewContext

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

NewContext returns a new context with the given Client attached.

func NewTxContext

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

NewTxContext returns a new context with the given Tx attached.

Types

type AggregateFunc

type AggregateFunc func(*sql.Selector) string

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

func As

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

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

func Count

func Count() AggregateFunc

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

func Max

func Max(field string) AggregateFunc

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

func Mean

func Mean(field string) AggregateFunc

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

func Min

func Min(field string) AggregateFunc

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

func Sum

func Sum(field string) AggregateFunc

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

type Client

type Client struct {

	// Schema is the client for creating, migrating and dropping schema.
	Schema *migrate.Schema
	// DataSource is the client for interacting with the DataSource builders.
	DataSource *DataSourceClient
	// Group is the client for interacting with the Group builders.
	Group *GroupClient
	// PasswordToken is the client for interacting with the PasswordToken builders.
	PasswordToken *PasswordTokenClient
	// 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().
	DataSource.
	Query().
	Count(ctx)

func (*Client) Intercept

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

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

func (*Client) Mutate

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

Mutate implements the ent.Mutator interface.

func (*Client) Tx

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

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

func (*Client) Use

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

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

type CommitFunc

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

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

func (CommitFunc) Commit

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

Commit calls f(ctx, m).

type CommitHook

type CommitHook func(Committer) Committer

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

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

type Committer

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

Committer is the interface that wraps the Commit method.

type ConstraintError

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

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

func (ConstraintError) Error

func (e ConstraintError) Error() string

Error implements the error interface.

func (*ConstraintError) Unwrap

func (e *ConstraintError) Unwrap() error

Unwrap implements the errors.Wrapper interface.

type DataSource

type DataSource struct {

	// ID of the ent.
	ID int `json:"id,omitempty"`
	// Name holds the value of the "name" field.
	Name string `json:"name,omitempty"`
	// Type holds the value of the "type" field.
	Type string `json:"type,omitempty"`
	// Status holds the value of the "status" field.
	Status string `json:"status,omitempty"`
	// Config holds the value of the "config" field.
	Config string `json:"config,omitempty"`
	// LastIndexed holds the value of the "last_indexed" field.
	LastIndexed time.Time `json:"last_indexed,omitempty"`
	// DateAdded holds the value of the "date_added" field.
	DateAdded time.Time `json:"date_added,omitempty"`
	// contains filtered or unexported fields
}

DataSource is the model entity for the DataSource schema.

func (*DataSource) String

func (ds *DataSource) String() string

String implements the fmt.Stringer.

func (*DataSource) Unwrap

func (ds *DataSource) Unwrap() *DataSource

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

func (ds *DataSource) Update() *DataSourceUpdateOne

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

func (*DataSource) Value

func (ds *DataSource) Value(name string) (ent.Value, error)

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

type DataSourceClient

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

DataSourceClient is a client for the DataSource schema.

func NewDataSourceClient

func NewDataSourceClient(c config) *DataSourceClient

NewDataSourceClient returns a client for the DataSource from the given config.

func (*DataSourceClient) Create

func (c *DataSourceClient) Create() *DataSourceCreate

Create returns a builder for creating a DataSource entity.

func (*DataSourceClient) CreateBulk

func (c *DataSourceClient) CreateBulk(builders ...*DataSourceCreate) *DataSourceCreateBulk

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

func (*DataSourceClient) Delete

func (c *DataSourceClient) Delete() *DataSourceDelete

Delete returns a delete builder for DataSource.

func (*DataSourceClient) DeleteOne

func (c *DataSourceClient) DeleteOne(ds *DataSource) *DataSourceDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*DataSourceClient) DeleteOneID

func (c *DataSourceClient) DeleteOneID(id int) *DataSourceDeleteOne

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

func (*DataSourceClient) Get

func (c *DataSourceClient) Get(ctx context.Context, id int) (*DataSource, error)

Get returns a DataSource entity by its id.

func (*DataSourceClient) GetX

func (c *DataSourceClient) GetX(ctx context.Context, id int) *DataSource

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

func (*DataSourceClient) Hooks

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

Hooks returns the client hooks.

func (*DataSourceClient) Intercept

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

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

func (*DataSourceClient) Interceptors

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

Interceptors returns the client interceptors.

func (*DataSourceClient) Query

func (c *DataSourceClient) Query() *DataSourceQuery

Query returns a query builder for DataSource.

func (*DataSourceClient) Update

func (c *DataSourceClient) Update() *DataSourceUpdate

Update returns an update builder for DataSource.

func (*DataSourceClient) UpdateOne

func (c *DataSourceClient) UpdateOne(ds *DataSource) *DataSourceUpdateOne

UpdateOne returns an update builder for the given entity.

func (*DataSourceClient) UpdateOneID

func (c *DataSourceClient) UpdateOneID(id int) *DataSourceUpdateOne

UpdateOneID returns an update builder for the given id.

func (*DataSourceClient) Use

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

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

type DataSourceCreate

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

DataSourceCreate is the builder for creating a DataSource entity.

func (*DataSourceCreate) Exec

func (dsc *DataSourceCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*DataSourceCreate) ExecX

func (dsc *DataSourceCreate) ExecX(ctx context.Context)

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

func (*DataSourceCreate) Mutation

func (dsc *DataSourceCreate) Mutation() *DataSourceMutation

Mutation returns the DataSourceMutation object of the builder.

func (*DataSourceCreate) Save

func (dsc *DataSourceCreate) Save(ctx context.Context) (*DataSource, error)

Save creates the DataSource in the database.

func (*DataSourceCreate) SaveX

func (dsc *DataSourceCreate) SaveX(ctx context.Context) *DataSource

SaveX calls Save and panics if Save returns an error.

func (*DataSourceCreate) SetConfig

func (dsc *DataSourceCreate) SetConfig(s string) *DataSourceCreate

SetConfig sets the "config" field.

func (*DataSourceCreate) SetDateAdded

func (dsc *DataSourceCreate) SetDateAdded(t time.Time) *DataSourceCreate

SetDateAdded sets the "date_added" field.

func (*DataSourceCreate) SetLastIndexed

func (dsc *DataSourceCreate) SetLastIndexed(t time.Time) *DataSourceCreate

SetLastIndexed sets the "last_indexed" field.

func (*DataSourceCreate) SetName

func (dsc *DataSourceCreate) SetName(s string) *DataSourceCreate

SetName sets the "name" field.

func (*DataSourceCreate) SetNillableConfig

func (dsc *DataSourceCreate) SetNillableConfig(s *string) *DataSourceCreate

SetNillableConfig sets the "config" field if the given value is not nil.

func (*DataSourceCreate) SetNillableDateAdded

func (dsc *DataSourceCreate) SetNillableDateAdded(t *time.Time) *DataSourceCreate

SetNillableDateAdded sets the "date_added" field if the given value is not nil.

func (*DataSourceCreate) SetNillableLastIndexed

func (dsc *DataSourceCreate) SetNillableLastIndexed(t *time.Time) *DataSourceCreate

SetNillableLastIndexed sets the "last_indexed" field if the given value is not nil.

func (*DataSourceCreate) SetNillableStatus

func (dsc *DataSourceCreate) SetNillableStatus(s *string) *DataSourceCreate

SetNillableStatus sets the "status" field if the given value is not nil.

func (*DataSourceCreate) SetNillableType

func (dsc *DataSourceCreate) SetNillableType(s *string) *DataSourceCreate

SetNillableType sets the "type" field if the given value is not nil.

func (*DataSourceCreate) SetStatus

func (dsc *DataSourceCreate) SetStatus(s string) *DataSourceCreate

SetStatus sets the "status" field.

func (*DataSourceCreate) SetType

func (dsc *DataSourceCreate) SetType(s string) *DataSourceCreate

SetType sets the "type" field.

type DataSourceCreateBulk

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

DataSourceCreateBulk is the builder for creating many DataSource entities in bulk.

func (*DataSourceCreateBulk) Exec

func (dscb *DataSourceCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*DataSourceCreateBulk) ExecX

func (dscb *DataSourceCreateBulk) ExecX(ctx context.Context)

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

func (*DataSourceCreateBulk) Save

func (dscb *DataSourceCreateBulk) Save(ctx context.Context) ([]*DataSource, error)

Save creates the DataSource entities in the database.

func (*DataSourceCreateBulk) SaveX

func (dscb *DataSourceCreateBulk) SaveX(ctx context.Context) []*DataSource

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

type DataSourceDelete

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

DataSourceDelete is the builder for deleting a DataSource entity.

func (*DataSourceDelete) Exec

func (dsd *DataSourceDelete) Exec(ctx context.Context) (int, error)

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

func (*DataSourceDelete) ExecX

func (dsd *DataSourceDelete) ExecX(ctx context.Context) int

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

func (*DataSourceDelete) Where

Where appends a list predicates to the DataSourceDelete builder.

type DataSourceDeleteOne

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

DataSourceDeleteOne is the builder for deleting a single DataSource entity.

func (*DataSourceDeleteOne) Exec

func (dsdo *DataSourceDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*DataSourceDeleteOne) ExecX

func (dsdo *DataSourceDeleteOne) ExecX(ctx context.Context)

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

func (*DataSourceDeleteOne) Where

Where appends a list predicates to the DataSourceDelete builder.

type DataSourceGroupBy

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

DataSourceGroupBy is the group-by builder for DataSource entities.

func (*DataSourceGroupBy) Aggregate

func (dsgb *DataSourceGroupBy) Aggregate(fns ...AggregateFunc) *DataSourceGroupBy

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

func (*DataSourceGroupBy) Bool

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

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

func (*DataSourceGroupBy) BoolX

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

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

func (*DataSourceGroupBy) Bools

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

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

func (*DataSourceGroupBy) BoolsX

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

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

func (*DataSourceGroupBy) Float64

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

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

func (*DataSourceGroupBy) Float64X

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

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

func (*DataSourceGroupBy) Float64s

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

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

func (*DataSourceGroupBy) Float64sX

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

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

func (*DataSourceGroupBy) Int

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

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

func (*DataSourceGroupBy) IntX

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

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

func (*DataSourceGroupBy) Ints

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

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

func (*DataSourceGroupBy) IntsX

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

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

func (*DataSourceGroupBy) Scan

func (dsgb *DataSourceGroupBy) Scan(ctx context.Context, v any) error

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

func (*DataSourceGroupBy) ScanX

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

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

func (*DataSourceGroupBy) String

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

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

func (*DataSourceGroupBy) StringX

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

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

func (*DataSourceGroupBy) Strings

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

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

func (*DataSourceGroupBy) StringsX

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

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

type DataSourceMutation

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

DataSourceMutation represents an operation that mutates the DataSource nodes in the graph.

func (*DataSourceMutation) AddField

func (m *DataSourceMutation) 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 (*DataSourceMutation) AddedEdges

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

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

func (*DataSourceMutation) AddedField

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

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

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

func (*DataSourceMutation) AddedIDs

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

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

func (*DataSourceMutation) ClearConfig

func (m *DataSourceMutation) ClearConfig()

ClearConfig clears the value of the "config" field.

func (*DataSourceMutation) ClearEdge

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

func (m *DataSourceMutation) 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 (*DataSourceMutation) ClearedEdges

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

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

func (*DataSourceMutation) ClearedFields

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

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

func (DataSourceMutation) Client

func (m DataSourceMutation) 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 (*DataSourceMutation) Config

func (m *DataSourceMutation) Config() (r string, exists bool)

Config returns the value of the "config" field in the mutation.

func (*DataSourceMutation) ConfigCleared

func (m *DataSourceMutation) ConfigCleared() bool

ConfigCleared returns if the "config" field was cleared in this mutation.

func (*DataSourceMutation) DateAdded

func (m *DataSourceMutation) DateAdded() (r time.Time, exists bool)

DateAdded returns the value of the "date_added" field in the mutation.

func (*DataSourceMutation) EdgeCleared

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

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

func (*DataSourceMutation) Field

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

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

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

func (*DataSourceMutation) Fields

func (m *DataSourceMutation) 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 (*DataSourceMutation) GetType

func (m *DataSourceMutation) GetType() (r string, exists bool)

GetType returns the value of the "type" field in the mutation.

func (*DataSourceMutation) ID

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

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

func (*DataSourceMutation) IDs

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

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

func (*DataSourceMutation) LastIndexed

func (m *DataSourceMutation) LastIndexed() (r time.Time, exists bool)

LastIndexed returns the value of the "last_indexed" field in the mutation.

func (*DataSourceMutation) Name

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

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

func (*DataSourceMutation) OldConfig

func (m *DataSourceMutation) OldConfig(ctx context.Context) (v string, err error)

OldConfig returns the old "config" field's value of the DataSource entity. If the DataSource 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 (*DataSourceMutation) OldDateAdded

func (m *DataSourceMutation) OldDateAdded(ctx context.Context) (v time.Time, err error)

OldDateAdded returns the old "date_added" field's value of the DataSource entity. If the DataSource 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 (*DataSourceMutation) OldField

func (m *DataSourceMutation) 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 (*DataSourceMutation) OldLastIndexed

func (m *DataSourceMutation) OldLastIndexed(ctx context.Context) (v time.Time, err error)

OldLastIndexed returns the old "last_indexed" field's value of the DataSource entity. If the DataSource 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 (*DataSourceMutation) OldName

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

OldName returns the old "name" field's value of the DataSource entity. If the DataSource 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 (*DataSourceMutation) OldStatus

func (m *DataSourceMutation) OldStatus(ctx context.Context) (v string, err error)

OldStatus returns the old "status" field's value of the DataSource entity. If the DataSource 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 (*DataSourceMutation) OldType

func (m *DataSourceMutation) OldType(ctx context.Context) (v string, err error)

OldType returns the old "type" field's value of the DataSource entity. If the DataSource 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 (*DataSourceMutation) Op

func (m *DataSourceMutation) Op() Op

Op returns the operation name.

func (*DataSourceMutation) RemovedEdges

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

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

func (*DataSourceMutation) RemovedIDs

func (m *DataSourceMutation) 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 (*DataSourceMutation) ResetConfig

func (m *DataSourceMutation) ResetConfig()

ResetConfig resets all changes to the "config" field.

func (*DataSourceMutation) ResetDateAdded

func (m *DataSourceMutation) ResetDateAdded()

ResetDateAdded resets all changes to the "date_added" field.

func (*DataSourceMutation) ResetEdge

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

func (m *DataSourceMutation) 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 (*DataSourceMutation) ResetLastIndexed

func (m *DataSourceMutation) ResetLastIndexed()

ResetLastIndexed resets all changes to the "last_indexed" field.

func (*DataSourceMutation) ResetName

func (m *DataSourceMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*DataSourceMutation) ResetStatus

func (m *DataSourceMutation) ResetStatus()

ResetStatus resets all changes to the "status" field.

func (*DataSourceMutation) ResetType

func (m *DataSourceMutation) ResetType()

ResetType resets all changes to the "type" field.

func (*DataSourceMutation) SetConfig

func (m *DataSourceMutation) SetConfig(s string)

SetConfig sets the "config" field.

func (*DataSourceMutation) SetDateAdded

func (m *DataSourceMutation) SetDateAdded(t time.Time)

SetDateAdded sets the "date_added" field.

func (*DataSourceMutation) SetField

func (m *DataSourceMutation) 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 (*DataSourceMutation) SetLastIndexed

func (m *DataSourceMutation) SetLastIndexed(t time.Time)

SetLastIndexed sets the "last_indexed" field.

func (*DataSourceMutation) SetName

func (m *DataSourceMutation) SetName(s string)

SetName sets the "name" field.

func (*DataSourceMutation) SetOp

func (m *DataSourceMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*DataSourceMutation) SetStatus

func (m *DataSourceMutation) SetStatus(s string)

SetStatus sets the "status" field.

func (*DataSourceMutation) SetType

func (m *DataSourceMutation) SetType(s string)

SetType sets the "type" field.

func (*DataSourceMutation) Status

func (m *DataSourceMutation) Status() (r string, exists bool)

Status returns the value of the "status" field in the mutation.

func (DataSourceMutation) Tx

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

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

func (*DataSourceMutation) Type

func (m *DataSourceMutation) Type() string

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

func (*DataSourceMutation) Where

func (m *DataSourceMutation) Where(ps ...predicate.DataSource)

Where appends a list predicates to the DataSourceMutation builder.

func (*DataSourceMutation) WhereP

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

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

type DataSourceQuery

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

DataSourceQuery is the builder for querying DataSource entities.

func (*DataSourceQuery) Aggregate

func (dsq *DataSourceQuery) Aggregate(fns ...AggregateFunc) *DataSourceSelect

Aggregate returns a DataSourceSelect configured with the given aggregations.

func (*DataSourceQuery) All

func (dsq *DataSourceQuery) All(ctx context.Context) ([]*DataSource, error)

All executes the query and returns a list of DataSources.

func (*DataSourceQuery) AllX

func (dsq *DataSourceQuery) AllX(ctx context.Context) []*DataSource

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

func (*DataSourceQuery) Clone

func (dsq *DataSourceQuery) Clone() *DataSourceQuery

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

func (*DataSourceQuery) Count

func (dsq *DataSourceQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*DataSourceQuery) CountX

func (dsq *DataSourceQuery) CountX(ctx context.Context) int

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

func (*DataSourceQuery) Exist

func (dsq *DataSourceQuery) Exist(ctx context.Context) (bool, error)

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

func (*DataSourceQuery) ExistX

func (dsq *DataSourceQuery) ExistX(ctx context.Context) bool

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

func (*DataSourceQuery) First

func (dsq *DataSourceQuery) First(ctx context.Context) (*DataSource, error)

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

func (*DataSourceQuery) FirstID

func (dsq *DataSourceQuery) FirstID(ctx context.Context) (id int, err error)

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

func (*DataSourceQuery) FirstIDX

func (dsq *DataSourceQuery) FirstIDX(ctx context.Context) int

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

func (*DataSourceQuery) FirstX

func (dsq *DataSourceQuery) FirstX(ctx context.Context) *DataSource

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

func (*DataSourceQuery) GroupBy

func (dsq *DataSourceQuery) GroupBy(field string, fields ...string) *DataSourceGroupBy

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

Example:

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

client.DataSource.Query().
	GroupBy(datasource.FieldName).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*DataSourceQuery) IDs

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

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

func (*DataSourceQuery) IDsX

func (dsq *DataSourceQuery) IDsX(ctx context.Context) []int

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

func (*DataSourceQuery) Limit

func (dsq *DataSourceQuery) Limit(limit int) *DataSourceQuery

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

func (*DataSourceQuery) Offset

func (dsq *DataSourceQuery) Offset(offset int) *DataSourceQuery

Offset to start from.

func (*DataSourceQuery) Only

func (dsq *DataSourceQuery) Only(ctx context.Context) (*DataSource, error)

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

func (*DataSourceQuery) OnlyID

func (dsq *DataSourceQuery) OnlyID(ctx context.Context) (id int, err error)

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

func (*DataSourceQuery) OnlyIDX

func (dsq *DataSourceQuery) OnlyIDX(ctx context.Context) int

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

func (*DataSourceQuery) OnlyX

func (dsq *DataSourceQuery) OnlyX(ctx context.Context) *DataSource

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

func (*DataSourceQuery) Order

Order specifies how the records should be ordered.

func (*DataSourceQuery) Select

func (dsq *DataSourceQuery) Select(fields ...string) *DataSourceSelect

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

Example:

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

client.DataSource.Query().
	Select(datasource.FieldName).
	Scan(ctx, &v)

func (*DataSourceQuery) Unique

func (dsq *DataSourceQuery) Unique(unique bool) *DataSourceQuery

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

Where adds a new predicate for the DataSourceQuery builder.

type DataSourceSelect

type DataSourceSelect struct {
	*DataSourceQuery
	// contains filtered or unexported fields
}

DataSourceSelect is the builder for selecting fields of DataSource entities.

func (*DataSourceSelect) Aggregate

func (dss *DataSourceSelect) Aggregate(fns ...AggregateFunc) *DataSourceSelect

Aggregate adds the given aggregation functions to the selector query.

func (*DataSourceSelect) Bool

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

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

func (*DataSourceSelect) BoolX

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

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

func (*DataSourceSelect) Bools

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

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

func (*DataSourceSelect) BoolsX

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

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

func (*DataSourceSelect) Float64

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

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

func (*DataSourceSelect) Float64X

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

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

func (*DataSourceSelect) Float64s

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

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

func (*DataSourceSelect) Float64sX

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

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

func (*DataSourceSelect) Int

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

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

func (*DataSourceSelect) IntX

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

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

func (*DataSourceSelect) Ints

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

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

func (*DataSourceSelect) IntsX

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

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

func (*DataSourceSelect) Scan

func (dss *DataSourceSelect) Scan(ctx context.Context, v any) error

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

func (*DataSourceSelect) ScanX

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

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

func (*DataSourceSelect) String

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

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

func (*DataSourceSelect) StringX

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

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

func (*DataSourceSelect) Strings

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

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

func (*DataSourceSelect) StringsX

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

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

type DataSourceUpdate

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

DataSourceUpdate is the builder for updating DataSource entities.

func (*DataSourceUpdate) ClearConfig

func (dsu *DataSourceUpdate) ClearConfig() *DataSourceUpdate

ClearConfig clears the value of the "config" field.

func (*DataSourceUpdate) Exec

func (dsu *DataSourceUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*DataSourceUpdate) ExecX

func (dsu *DataSourceUpdate) ExecX(ctx context.Context)

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

func (*DataSourceUpdate) Mutation

func (dsu *DataSourceUpdate) Mutation() *DataSourceMutation

Mutation returns the DataSourceMutation object of the builder.

func (*DataSourceUpdate) Save

func (dsu *DataSourceUpdate) Save(ctx context.Context) (int, error)

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

func (*DataSourceUpdate) SaveX

func (dsu *DataSourceUpdate) SaveX(ctx context.Context) int

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

func (*DataSourceUpdate) SetConfig

func (dsu *DataSourceUpdate) SetConfig(s string) *DataSourceUpdate

SetConfig sets the "config" field.

func (*DataSourceUpdate) SetDateAdded

func (dsu *DataSourceUpdate) SetDateAdded(t time.Time) *DataSourceUpdate

SetDateAdded sets the "date_added" field.

func (*DataSourceUpdate) SetLastIndexed

func (dsu *DataSourceUpdate) SetLastIndexed(t time.Time) *DataSourceUpdate

SetLastIndexed sets the "last_indexed" field.

func (*DataSourceUpdate) SetName

func (dsu *DataSourceUpdate) SetName(s string) *DataSourceUpdate

SetName sets the "name" field.

func (*DataSourceUpdate) SetNillableConfig

func (dsu *DataSourceUpdate) SetNillableConfig(s *string) *DataSourceUpdate

SetNillableConfig sets the "config" field if the given value is not nil.

func (*DataSourceUpdate) SetNillableDateAdded

func (dsu *DataSourceUpdate) SetNillableDateAdded(t *time.Time) *DataSourceUpdate

SetNillableDateAdded sets the "date_added" field if the given value is not nil.

func (*DataSourceUpdate) SetNillableLastIndexed

func (dsu *DataSourceUpdate) SetNillableLastIndexed(t *time.Time) *DataSourceUpdate

SetNillableLastIndexed sets the "last_indexed" field if the given value is not nil.

func (*DataSourceUpdate) SetNillableStatus

func (dsu *DataSourceUpdate) SetNillableStatus(s *string) *DataSourceUpdate

SetNillableStatus sets the "status" field if the given value is not nil.

func (*DataSourceUpdate) SetNillableType

func (dsu *DataSourceUpdate) SetNillableType(s *string) *DataSourceUpdate

SetNillableType sets the "type" field if the given value is not nil.

func (*DataSourceUpdate) SetStatus

func (dsu *DataSourceUpdate) SetStatus(s string) *DataSourceUpdate

SetStatus sets the "status" field.

func (*DataSourceUpdate) SetType

func (dsu *DataSourceUpdate) SetType(s string) *DataSourceUpdate

SetType sets the "type" field.

func (*DataSourceUpdate) Where

Where appends a list predicates to the DataSourceUpdate builder.

type DataSourceUpdateOne

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

DataSourceUpdateOne is the builder for updating a single DataSource entity.

func (*DataSourceUpdateOne) ClearConfig

func (dsuo *DataSourceUpdateOne) ClearConfig() *DataSourceUpdateOne

ClearConfig clears the value of the "config" field.

func (*DataSourceUpdateOne) Exec

func (dsuo *DataSourceUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*DataSourceUpdateOne) ExecX

func (dsuo *DataSourceUpdateOne) ExecX(ctx context.Context)

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

func (*DataSourceUpdateOne) Mutation

func (dsuo *DataSourceUpdateOne) Mutation() *DataSourceMutation

Mutation returns the DataSourceMutation object of the builder.

func (*DataSourceUpdateOne) Save

func (dsuo *DataSourceUpdateOne) Save(ctx context.Context) (*DataSource, error)

Save executes the query and returns the updated DataSource entity.

func (*DataSourceUpdateOne) SaveX

func (dsuo *DataSourceUpdateOne) SaveX(ctx context.Context) *DataSource

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

func (*DataSourceUpdateOne) Select

func (dsuo *DataSourceUpdateOne) Select(field string, fields ...string) *DataSourceUpdateOne

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

func (*DataSourceUpdateOne) SetConfig

func (dsuo *DataSourceUpdateOne) SetConfig(s string) *DataSourceUpdateOne

SetConfig sets the "config" field.

func (*DataSourceUpdateOne) SetDateAdded

func (dsuo *DataSourceUpdateOne) SetDateAdded(t time.Time) *DataSourceUpdateOne

SetDateAdded sets the "date_added" field.

func (*DataSourceUpdateOne) SetLastIndexed

func (dsuo *DataSourceUpdateOne) SetLastIndexed(t time.Time) *DataSourceUpdateOne

SetLastIndexed sets the "last_indexed" field.

func (*DataSourceUpdateOne) SetName

SetName sets the "name" field.

func (*DataSourceUpdateOne) SetNillableConfig

func (dsuo *DataSourceUpdateOne) SetNillableConfig(s *string) *DataSourceUpdateOne

SetNillableConfig sets the "config" field if the given value is not nil.

func (*DataSourceUpdateOne) SetNillableDateAdded

func (dsuo *DataSourceUpdateOne) SetNillableDateAdded(t *time.Time) *DataSourceUpdateOne

SetNillableDateAdded sets the "date_added" field if the given value is not nil.

func (*DataSourceUpdateOne) SetNillableLastIndexed

func (dsuo *DataSourceUpdateOne) SetNillableLastIndexed(t *time.Time) *DataSourceUpdateOne

SetNillableLastIndexed sets the "last_indexed" field if the given value is not nil.

func (*DataSourceUpdateOne) SetNillableStatus

func (dsuo *DataSourceUpdateOne) SetNillableStatus(s *string) *DataSourceUpdateOne

SetNillableStatus sets the "status" field if the given value is not nil.

func (*DataSourceUpdateOne) SetNillableType

func (dsuo *DataSourceUpdateOne) SetNillableType(s *string) *DataSourceUpdateOne

SetNillableType sets the "type" field if the given value is not nil.

func (*DataSourceUpdateOne) SetStatus

func (dsuo *DataSourceUpdateOne) SetStatus(s string) *DataSourceUpdateOne

SetStatus sets the "status" field.

func (*DataSourceUpdateOne) SetType

SetType sets the "type" field.

func (*DataSourceUpdateOne) Where

Where appends a list predicates to the DataSourceUpdate builder.

type DataSources

type DataSources []*DataSource

DataSources is a parsable slice of DataSource.

type Group

type Group struct {

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

Group is the model entity for the Group schema.

func (*Group) QueryUsers

func (gr *Group) QueryUsers() *UserQuery

QueryUsers queries the "users" edge of the Group entity.

func (*Group) String

func (gr *Group) String() string

String implements the fmt.Stringer.

func (*Group) Unwrap

func (gr *Group) Unwrap() *Group

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

func (gr *Group) Update() *GroupUpdateOne

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

func (*Group) Value

func (gr *Group) Value(name string) (ent.Value, error)

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

type GroupClient

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

GroupClient is a client for the Group schema.

func NewGroupClient

func NewGroupClient(c config) *GroupClient

NewGroupClient returns a client for the Group from the given config.

func (*GroupClient) Create

func (c *GroupClient) Create() *GroupCreate

Create returns a builder for creating a Group entity.

func (*GroupClient) CreateBulk

func (c *GroupClient) CreateBulk(builders ...*GroupCreate) *GroupCreateBulk

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

func (*GroupClient) Delete

func (c *GroupClient) Delete() *GroupDelete

Delete returns a delete builder for Group.

func (*GroupClient) DeleteOne

func (c *GroupClient) DeleteOne(gr *Group) *GroupDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*GroupClient) DeleteOneID

func (c *GroupClient) DeleteOneID(id int) *GroupDeleteOne

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

func (*GroupClient) Get

func (c *GroupClient) Get(ctx context.Context, id int) (*Group, error)

Get returns a Group entity by its id.

func (*GroupClient) GetX

func (c *GroupClient) GetX(ctx context.Context, id int) *Group

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

func (*GroupClient) Hooks

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

Hooks returns the client hooks.

func (*GroupClient) Intercept

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

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

func (*GroupClient) Interceptors

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

Interceptors returns the client interceptors.

func (*GroupClient) Query

func (c *GroupClient) Query() *GroupQuery

Query returns a query builder for Group.

func (*GroupClient) QueryUsers

func (c *GroupClient) QueryUsers(gr *Group) *UserQuery

QueryUsers queries the users edge of a Group.

func (*GroupClient) Update

func (c *GroupClient) Update() *GroupUpdate

Update returns an update builder for Group.

func (*GroupClient) UpdateOne

func (c *GroupClient) UpdateOne(gr *Group) *GroupUpdateOne

UpdateOne returns an update builder for the given entity.

func (*GroupClient) UpdateOneID

func (c *GroupClient) UpdateOneID(id int) *GroupUpdateOne

UpdateOneID returns an update builder for the given id.

func (*GroupClient) Use

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

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

type GroupCreate

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

GroupCreate is the builder for creating a Group entity.

func (*GroupCreate) AddUserIDs

func (gc *GroupCreate) AddUserIDs(ids ...int) *GroupCreate

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

func (*GroupCreate) AddUsers

func (gc *GroupCreate) AddUsers(u ...*User) *GroupCreate

AddUsers adds the "users" edges to the User entity.

func (*GroupCreate) Exec

func (gc *GroupCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*GroupCreate) ExecX

func (gc *GroupCreate) ExecX(ctx context.Context)

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

func (*GroupCreate) Mutation

func (gc *GroupCreate) Mutation() *GroupMutation

Mutation returns the GroupMutation object of the builder.

func (*GroupCreate) Save

func (gc *GroupCreate) Save(ctx context.Context) (*Group, error)

Save creates the Group in the database.

func (*GroupCreate) SaveX

func (gc *GroupCreate) SaveX(ctx context.Context) *Group

SaveX calls Save and panics if Save returns an error.

func (*GroupCreate) SetCreatedAt

func (gc *GroupCreate) SetCreatedAt(t time.Time) *GroupCreate

SetCreatedAt sets the "created_at" field.

func (*GroupCreate) SetName

func (gc *GroupCreate) SetName(s string) *GroupCreate

SetName sets the "name" field.

func (*GroupCreate) SetNillableCreatedAt

func (gc *GroupCreate) SetNillableCreatedAt(t *time.Time) *GroupCreate

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

type GroupCreateBulk

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

GroupCreateBulk is the builder for creating many Group entities in bulk.

func (*GroupCreateBulk) Exec

func (gcb *GroupCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*GroupCreateBulk) ExecX

func (gcb *GroupCreateBulk) ExecX(ctx context.Context)

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

func (*GroupCreateBulk) Save

func (gcb *GroupCreateBulk) Save(ctx context.Context) ([]*Group, error)

Save creates the Group entities in the database.

func (*GroupCreateBulk) SaveX

func (gcb *GroupCreateBulk) SaveX(ctx context.Context) []*Group

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

type GroupDelete

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

GroupDelete is the builder for deleting a Group entity.

func (*GroupDelete) Exec

func (gd *GroupDelete) Exec(ctx context.Context) (int, error)

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

func (*GroupDelete) ExecX

func (gd *GroupDelete) ExecX(ctx context.Context) int

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

func (*GroupDelete) Where

func (gd *GroupDelete) Where(ps ...predicate.Group) *GroupDelete

Where appends a list predicates to the GroupDelete builder.

type GroupDeleteOne

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

GroupDeleteOne is the builder for deleting a single Group entity.

func (*GroupDeleteOne) Exec

func (gdo *GroupDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*GroupDeleteOne) ExecX

func (gdo *GroupDeleteOne) ExecX(ctx context.Context)

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

func (*GroupDeleteOne) Where

func (gdo *GroupDeleteOne) Where(ps ...predicate.Group) *GroupDeleteOne

Where appends a list predicates to the GroupDelete builder.

type GroupEdges

type GroupEdges struct {
	// Users holds the value of the users edge.
	Users []*User `json:"users,omitempty"`
	// contains filtered or unexported fields
}

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

func (GroupEdges) UsersOrErr

func (e GroupEdges) UsersOrErr() ([]*User, error)

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

type GroupGroupBy

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

GroupGroupBy is the group-by builder for Group entities.

func (*GroupGroupBy) Aggregate

func (ggb *GroupGroupBy) Aggregate(fns ...AggregateFunc) *GroupGroupBy

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

func (*GroupGroupBy) Bool

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

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

func (*GroupGroupBy) BoolX

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

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

func (*GroupGroupBy) Bools

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

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

func (*GroupGroupBy) BoolsX

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

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

func (*GroupGroupBy) Float64

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

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

func (*GroupGroupBy) Float64X

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

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

func (*GroupGroupBy) Float64s

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

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

func (*GroupGroupBy) Float64sX

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

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

func (*GroupGroupBy) Int

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

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

func (*GroupGroupBy) IntX

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

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

func (*GroupGroupBy) Ints

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

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

func (*GroupGroupBy) IntsX

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

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

func (*GroupGroupBy) Scan

func (ggb *GroupGroupBy) Scan(ctx context.Context, v any) error

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

func (*GroupGroupBy) ScanX

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

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

func (*GroupGroupBy) String

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

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

func (*GroupGroupBy) StringX

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

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

func (*GroupGroupBy) Strings

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

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

func (*GroupGroupBy) StringsX

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

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

type GroupMutation

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

GroupMutation represents an operation that mutates the Group nodes in the graph.

func (*GroupMutation) AddField

func (m *GroupMutation) 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 (*GroupMutation) AddUserIDs

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

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

func (*GroupMutation) AddedEdges

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

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

func (*GroupMutation) AddedField

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

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

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

func (*GroupMutation) AddedIDs

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

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

func (*GroupMutation) ClearEdge

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

func (m *GroupMutation) 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 (*GroupMutation) ClearUsers

func (m *GroupMutation) ClearUsers()

ClearUsers clears the "users" edge to the User entity.

func (*GroupMutation) ClearedEdges

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

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

func (*GroupMutation) ClearedFields

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

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

func (GroupMutation) Client

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

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

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

func (*GroupMutation) EdgeCleared

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

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

func (*GroupMutation) Field

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

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

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

func (*GroupMutation) Fields

func (m *GroupMutation) 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 (*GroupMutation) ID

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

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

func (*GroupMutation) IDs

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

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

func (*GroupMutation) Name

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

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

func (*GroupMutation) OldCreatedAt

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

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

func (m *GroupMutation) 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 (*GroupMutation) OldName

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

OldName returns the old "name" field's value of the Group entity. If the Group 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 (*GroupMutation) Op

func (m *GroupMutation) Op() Op

Op returns the operation name.

func (*GroupMutation) RemoveUserIDs

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

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

func (*GroupMutation) RemovedEdges

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

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

func (*GroupMutation) RemovedIDs

func (m *GroupMutation) 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 (*GroupMutation) RemovedUsersIDs

func (m *GroupMutation) RemovedUsersIDs() (ids []int)

RemovedUsers returns the removed IDs of the "users" edge to the User entity.

func (*GroupMutation) ResetCreatedAt

func (m *GroupMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*GroupMutation) ResetEdge

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

func (m *GroupMutation) 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 (*GroupMutation) ResetName

func (m *GroupMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*GroupMutation) ResetUsers

func (m *GroupMutation) ResetUsers()

ResetUsers resets all changes to the "users" edge.

func (*GroupMutation) SetCreatedAt

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

SetCreatedAt sets the "created_at" field.

func (*GroupMutation) SetField

func (m *GroupMutation) 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 (*GroupMutation) SetName

func (m *GroupMutation) SetName(s string)

SetName sets the "name" field.

func (*GroupMutation) SetOp

func (m *GroupMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (GroupMutation) Tx

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

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

func (*GroupMutation) Type

func (m *GroupMutation) Type() string

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

func (*GroupMutation) UsersCleared

func (m *GroupMutation) UsersCleared() bool

UsersCleared reports if the "users" edge to the User entity was cleared.

func (*GroupMutation) UsersIDs

func (m *GroupMutation) UsersIDs() (ids []int)

UsersIDs returns the "users" edge IDs in the mutation.

func (*GroupMutation) Where

func (m *GroupMutation) Where(ps ...predicate.Group)

Where appends a list predicates to the GroupMutation builder.

func (*GroupMutation) WhereP

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

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

type GroupQuery

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

GroupQuery is the builder for querying Group entities.

func (*GroupQuery) Aggregate

func (gq *GroupQuery) Aggregate(fns ...AggregateFunc) *GroupSelect

Aggregate returns a GroupSelect configured with the given aggregations.

func (*GroupQuery) All

func (gq *GroupQuery) All(ctx context.Context) ([]*Group, error)

All executes the query and returns a list of Groups.

func (*GroupQuery) AllX

func (gq *GroupQuery) AllX(ctx context.Context) []*Group

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

func (*GroupQuery) Clone

func (gq *GroupQuery) Clone() *GroupQuery

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

func (*GroupQuery) Count

func (gq *GroupQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*GroupQuery) CountX

func (gq *GroupQuery) CountX(ctx context.Context) int

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

func (*GroupQuery) Exist

func (gq *GroupQuery) Exist(ctx context.Context) (bool, error)

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

func (*GroupQuery) ExistX

func (gq *GroupQuery) ExistX(ctx context.Context) bool

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

func (*GroupQuery) First

func (gq *GroupQuery) First(ctx context.Context) (*Group, error)

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

func (*GroupQuery) FirstID

func (gq *GroupQuery) FirstID(ctx context.Context) (id int, err error)

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

func (*GroupQuery) FirstIDX

func (gq *GroupQuery) FirstIDX(ctx context.Context) int

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

func (*GroupQuery) FirstX

func (gq *GroupQuery) FirstX(ctx context.Context) *Group

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

func (*GroupQuery) GroupBy

func (gq *GroupQuery) GroupBy(field string, fields ...string) *GroupGroupBy

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

Example:

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

client.Group.Query().
	GroupBy(group.FieldName).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*GroupQuery) IDs

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

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

func (*GroupQuery) IDsX

func (gq *GroupQuery) IDsX(ctx context.Context) []int

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

func (*GroupQuery) Limit

func (gq *GroupQuery) Limit(limit int) *GroupQuery

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

func (*GroupQuery) Offset

func (gq *GroupQuery) Offset(offset int) *GroupQuery

Offset to start from.

func (*GroupQuery) Only

func (gq *GroupQuery) Only(ctx context.Context) (*Group, error)

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

func (*GroupQuery) OnlyID

func (gq *GroupQuery) OnlyID(ctx context.Context) (id int, err error)

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

func (*GroupQuery) OnlyIDX

func (gq *GroupQuery) OnlyIDX(ctx context.Context) int

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

func (*GroupQuery) OnlyX

func (gq *GroupQuery) OnlyX(ctx context.Context) *Group

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

func (*GroupQuery) Order

func (gq *GroupQuery) Order(o ...group.OrderOption) *GroupQuery

Order specifies how the records should be ordered.

func (*GroupQuery) QueryUsers

func (gq *GroupQuery) QueryUsers() *UserQuery

QueryUsers chains the current query on the "users" edge.

func (*GroupQuery) Select

func (gq *GroupQuery) Select(fields ...string) *GroupSelect

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

Example:

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

client.Group.Query().
	Select(group.FieldName).
	Scan(ctx, &v)

func (*GroupQuery) Unique

func (gq *GroupQuery) Unique(unique bool) *GroupQuery

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

func (gq *GroupQuery) Where(ps ...predicate.Group) *GroupQuery

Where adds a new predicate for the GroupQuery builder.

func (*GroupQuery) WithUsers

func (gq *GroupQuery) WithUsers(opts ...func(*UserQuery)) *GroupQuery

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

type GroupSelect

type GroupSelect struct {
	*GroupQuery
	// contains filtered or unexported fields
}

GroupSelect is the builder for selecting fields of Group entities.

func (*GroupSelect) Aggregate

func (gs *GroupSelect) Aggregate(fns ...AggregateFunc) *GroupSelect

Aggregate adds the given aggregation functions to the selector query.

func (*GroupSelect) Bool

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

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

func (*GroupSelect) BoolX

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

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

func (*GroupSelect) Bools

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

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

func (*GroupSelect) BoolsX

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

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

func (*GroupSelect) Float64

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

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

func (*GroupSelect) Float64X

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

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

func (*GroupSelect) Float64s

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

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

func (*GroupSelect) Float64sX

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

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

func (*GroupSelect) Int

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

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

func (*GroupSelect) IntX

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

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

func (*GroupSelect) Ints

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

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

func (*GroupSelect) IntsX

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

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

func (*GroupSelect) Scan

func (gs *GroupSelect) Scan(ctx context.Context, v any) error

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

func (*GroupSelect) ScanX

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

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

func (*GroupSelect) String

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

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

func (*GroupSelect) StringX

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

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

func (*GroupSelect) Strings

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

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

func (*GroupSelect) StringsX

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

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

type GroupUpdate

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

GroupUpdate is the builder for updating Group entities.

func (*GroupUpdate) AddUserIDs

func (gu *GroupUpdate) AddUserIDs(ids ...int) *GroupUpdate

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

func (*GroupUpdate) AddUsers

func (gu *GroupUpdate) AddUsers(u ...*User) *GroupUpdate

AddUsers adds the "users" edges to the User entity.

func (*GroupUpdate) ClearUsers

func (gu *GroupUpdate) ClearUsers() *GroupUpdate

ClearUsers clears all "users" edges to the User entity.

func (*GroupUpdate) Exec

func (gu *GroupUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*GroupUpdate) ExecX

func (gu *GroupUpdate) ExecX(ctx context.Context)

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

func (*GroupUpdate) Mutation

func (gu *GroupUpdate) Mutation() *GroupMutation

Mutation returns the GroupMutation object of the builder.

func (*GroupUpdate) RemoveUserIDs

func (gu *GroupUpdate) RemoveUserIDs(ids ...int) *GroupUpdate

RemoveUserIDs removes the "users" edge to User entities by IDs.

func (*GroupUpdate) RemoveUsers

func (gu *GroupUpdate) RemoveUsers(u ...*User) *GroupUpdate

RemoveUsers removes "users" edges to User entities.

func (*GroupUpdate) Save

func (gu *GroupUpdate) Save(ctx context.Context) (int, error)

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

func (*GroupUpdate) SaveX

func (gu *GroupUpdate) SaveX(ctx context.Context) int

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

func (*GroupUpdate) SetName

func (gu *GroupUpdate) SetName(s string) *GroupUpdate

SetName sets the "name" field.

func (*GroupUpdate) Where

func (gu *GroupUpdate) Where(ps ...predicate.Group) *GroupUpdate

Where appends a list predicates to the GroupUpdate builder.

type GroupUpdateOne

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

GroupUpdateOne is the builder for updating a single Group entity.

func (*GroupUpdateOne) AddUserIDs

func (guo *GroupUpdateOne) AddUserIDs(ids ...int) *GroupUpdateOne

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

func (*GroupUpdateOne) AddUsers

func (guo *GroupUpdateOne) AddUsers(u ...*User) *GroupUpdateOne

AddUsers adds the "users" edges to the User entity.

func (*GroupUpdateOne) ClearUsers

func (guo *GroupUpdateOne) ClearUsers() *GroupUpdateOne

ClearUsers clears all "users" edges to the User entity.

func (*GroupUpdateOne) Exec

func (guo *GroupUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*GroupUpdateOne) ExecX

func (guo *GroupUpdateOne) ExecX(ctx context.Context)

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

func (*GroupUpdateOne) Mutation

func (guo *GroupUpdateOne) Mutation() *GroupMutation

Mutation returns the GroupMutation object of the builder.

func (*GroupUpdateOne) RemoveUserIDs

func (guo *GroupUpdateOne) RemoveUserIDs(ids ...int) *GroupUpdateOne

RemoveUserIDs removes the "users" edge to User entities by IDs.

func (*GroupUpdateOne) RemoveUsers

func (guo *GroupUpdateOne) RemoveUsers(u ...*User) *GroupUpdateOne

RemoveUsers removes "users" edges to User entities.

func (*GroupUpdateOne) Save

func (guo *GroupUpdateOne) Save(ctx context.Context) (*Group, error)

Save executes the query and returns the updated Group entity.

func (*GroupUpdateOne) SaveX

func (guo *GroupUpdateOne) SaveX(ctx context.Context) *Group

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

func (*GroupUpdateOne) Select

func (guo *GroupUpdateOne) Select(field string, fields ...string) *GroupUpdateOne

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

func (*GroupUpdateOne) SetName

func (guo *GroupUpdateOne) SetName(s string) *GroupUpdateOne

SetName sets the "name" field.

func (*GroupUpdateOne) Where

func (guo *GroupUpdateOne) Where(ps ...predicate.Group) *GroupUpdateOne

Where appends a list predicates to the GroupUpdate builder.

type Groups

type Groups []*Group

Groups is a parsable slice of Group.

type Hook

type Hook = ent.Hook

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

type InterceptFunc

type InterceptFunc = ent.InterceptFunc

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

type Interceptor

type Interceptor = ent.Interceptor

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

type MutateFunc

type MutateFunc = ent.MutateFunc

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

type Mutation

type Mutation = ent.Mutation

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

type Mutator

type Mutator = ent.Mutator

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

type NotFoundError

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

NotFoundError returns when trying to fetch a specific entity and it was not found in the database.

func (*NotFoundError) Error

func (e *NotFoundError) Error() string

Error implements the error interface.

type NotLoadedError

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

NotLoadedError returns when trying to get a node that was not loaded by the query.

func (*NotLoadedError) Error

func (e *NotLoadedError) Error() string

Error implements the error interface.

type NotSingularError

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

NotSingularError returns when trying to fetch a singular entity and more then one was found in the database.

func (*NotSingularError) Error

func (e *NotSingularError) Error() string

Error implements the error interface.

type Op

type Op = ent.Op

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

type Option

type Option func(*config)

Option function to configure the client.

func Debug

func Debug() Option

Debug enables debug logging on the ent.Driver.

func Driver

func Driver(driver dialect.Driver) Option

Driver configures the client driver.

func Log

func Log(fn func(...any)) Option

Log sets the logging function for debug mode.

type OrderFunc

type OrderFunc func(*sql.Selector)

OrderFunc applies an ordering on the sql selector. Deprecated: Use Asc/Desc functions or the package builders instead.

type PasswordToken

type PasswordToken struct {

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

PasswordToken is the model entity for the PasswordToken schema.

func (*PasswordToken) QueryUser

func (pt *PasswordToken) QueryUser() *UserQuery

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

func (*PasswordToken) String

func (pt *PasswordToken) String() string

String implements the fmt.Stringer.

func (*PasswordToken) Unwrap

func (pt *PasswordToken) Unwrap() *PasswordToken

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

func (pt *PasswordToken) Update() *PasswordTokenUpdateOne

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

func (*PasswordToken) Value

func (pt *PasswordToken) Value(name string) (ent.Value, error)

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

type PasswordTokenClient

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

PasswordTokenClient is a client for the PasswordToken schema.

func NewPasswordTokenClient

func NewPasswordTokenClient(c config) *PasswordTokenClient

NewPasswordTokenClient returns a client for the PasswordToken from the given config.

func (*PasswordTokenClient) Create

Create returns a builder for creating a PasswordToken entity.

func (*PasswordTokenClient) CreateBulk

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

func (*PasswordTokenClient) Delete

Delete returns a delete builder for PasswordToken.

func (*PasswordTokenClient) DeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*PasswordTokenClient) DeleteOneID

func (c *PasswordTokenClient) DeleteOneID(id int) *PasswordTokenDeleteOne

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

func (*PasswordTokenClient) Get

Get returns a PasswordToken entity by its id.

func (*PasswordTokenClient) GetX

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

func (*PasswordTokenClient) Hooks

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

Hooks returns the client hooks.

func (*PasswordTokenClient) Intercept

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

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

func (*PasswordTokenClient) Interceptors

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

Interceptors returns the client interceptors.

func (*PasswordTokenClient) Query

Query returns a query builder for PasswordToken.

func (*PasswordTokenClient) QueryUser

func (c *PasswordTokenClient) QueryUser(pt *PasswordToken) *UserQuery

QueryUser queries the user edge of a PasswordToken.

func (*PasswordTokenClient) Update

Update returns an update builder for PasswordToken.

func (*PasswordTokenClient) UpdateOne

UpdateOne returns an update builder for the given entity.

func (*PasswordTokenClient) UpdateOneID

func (c *PasswordTokenClient) UpdateOneID(id int) *PasswordTokenUpdateOne

UpdateOneID returns an update builder for the given id.

func (*PasswordTokenClient) Use

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

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

type PasswordTokenCreate

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

PasswordTokenCreate is the builder for creating a PasswordToken entity.

func (*PasswordTokenCreate) Exec

func (ptc *PasswordTokenCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*PasswordTokenCreate) ExecX

func (ptc *PasswordTokenCreate) ExecX(ctx context.Context)

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

func (*PasswordTokenCreate) Mutation

func (ptc *PasswordTokenCreate) Mutation() *PasswordTokenMutation

Mutation returns the PasswordTokenMutation object of the builder.

func (*PasswordTokenCreate) Save

Save creates the PasswordToken in the database.

func (*PasswordTokenCreate) SaveX

SaveX calls Save and panics if Save returns an error.

func (*PasswordTokenCreate) SetCreatedAt

func (ptc *PasswordTokenCreate) SetCreatedAt(t time.Time) *PasswordTokenCreate

SetCreatedAt sets the "created_at" field.

func (*PasswordTokenCreate) SetHash

SetHash sets the "hash" field.

func (*PasswordTokenCreate) SetNillableCreatedAt

func (ptc *PasswordTokenCreate) SetNillableCreatedAt(t *time.Time) *PasswordTokenCreate

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

func (*PasswordTokenCreate) SetUser

func (ptc *PasswordTokenCreate) SetUser(u *User) *PasswordTokenCreate

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

func (*PasswordTokenCreate) SetUserID

func (ptc *PasswordTokenCreate) SetUserID(id int) *PasswordTokenCreate

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

type PasswordTokenCreateBulk

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

PasswordTokenCreateBulk is the builder for creating many PasswordToken entities in bulk.

func (*PasswordTokenCreateBulk) Exec

func (ptcb *PasswordTokenCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*PasswordTokenCreateBulk) ExecX

func (ptcb *PasswordTokenCreateBulk) ExecX(ctx context.Context)

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

func (*PasswordTokenCreateBulk) Save

Save creates the PasswordToken entities in the database.

func (*PasswordTokenCreateBulk) SaveX

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

type PasswordTokenDelete

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

PasswordTokenDelete is the builder for deleting a PasswordToken entity.

func (*PasswordTokenDelete) Exec

func (ptd *PasswordTokenDelete) Exec(ctx context.Context) (int, error)

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

func (*PasswordTokenDelete) ExecX

func (ptd *PasswordTokenDelete) ExecX(ctx context.Context) int

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

func (*PasswordTokenDelete) Where

Where appends a list predicates to the PasswordTokenDelete builder.

type PasswordTokenDeleteOne

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

PasswordTokenDeleteOne is the builder for deleting a single PasswordToken entity.

func (*PasswordTokenDeleteOne) Exec

func (ptdo *PasswordTokenDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*PasswordTokenDeleteOne) ExecX

func (ptdo *PasswordTokenDeleteOne) ExecX(ctx context.Context)

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

func (*PasswordTokenDeleteOne) Where

Where appends a list predicates to the PasswordTokenDelete builder.

type PasswordTokenEdges

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

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

func (PasswordTokenEdges) UserOrErr

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

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

type PasswordTokenGroupBy

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

PasswordTokenGroupBy is the group-by builder for PasswordToken entities.

func (*PasswordTokenGroupBy) Aggregate

func (ptgb *PasswordTokenGroupBy) Aggregate(fns ...AggregateFunc) *PasswordTokenGroupBy

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

func (*PasswordTokenGroupBy) Bool

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

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

func (*PasswordTokenGroupBy) BoolX

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

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

func (*PasswordTokenGroupBy) Bools

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

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

func (*PasswordTokenGroupBy) BoolsX

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

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

func (*PasswordTokenGroupBy) Float64

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

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

func (*PasswordTokenGroupBy) Float64X

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

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

func (*PasswordTokenGroupBy) Float64s

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

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

func (*PasswordTokenGroupBy) Float64sX

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

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

func (*PasswordTokenGroupBy) Int

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

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

func (*PasswordTokenGroupBy) IntX

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

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

func (*PasswordTokenGroupBy) Ints

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

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

func (*PasswordTokenGroupBy) IntsX

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

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

func (*PasswordTokenGroupBy) Scan

func (ptgb *PasswordTokenGroupBy) Scan(ctx context.Context, v any) error

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

func (*PasswordTokenGroupBy) ScanX

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

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

func (*PasswordTokenGroupBy) String

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

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

func (*PasswordTokenGroupBy) StringX

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

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

func (*PasswordTokenGroupBy) Strings

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

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

func (*PasswordTokenGroupBy) StringsX

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

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

type PasswordTokenMutation

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

PasswordTokenMutation represents an operation that mutates the PasswordToken nodes in the graph.

func (*PasswordTokenMutation) AddField

func (m *PasswordTokenMutation) 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 (*PasswordTokenMutation) AddedEdges

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

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

func (*PasswordTokenMutation) AddedField

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

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

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

func (*PasswordTokenMutation) AddedIDs

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

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

func (*PasswordTokenMutation) ClearEdge

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

func (m *PasswordTokenMutation) 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 (*PasswordTokenMutation) ClearUser

func (m *PasswordTokenMutation) ClearUser()

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

func (*PasswordTokenMutation) ClearedEdges

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

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

func (*PasswordTokenMutation) ClearedFields

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

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

func (PasswordTokenMutation) Client

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

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

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

func (*PasswordTokenMutation) EdgeCleared

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

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

func (*PasswordTokenMutation) Field

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

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

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

func (*PasswordTokenMutation) Fields

func (m *PasswordTokenMutation) 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 (*PasswordTokenMutation) Hash

func (m *PasswordTokenMutation) Hash() (r string, exists bool)

Hash returns the value of the "hash" field in the mutation.

func (*PasswordTokenMutation) ID

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

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

func (*PasswordTokenMutation) IDs

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

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

func (*PasswordTokenMutation) OldCreatedAt

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

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

func (m *PasswordTokenMutation) 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 (*PasswordTokenMutation) OldHash

func (m *PasswordTokenMutation) OldHash(ctx context.Context) (v string, err error)

OldHash returns the old "hash" field's value of the PasswordToken entity. If the PasswordToken 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 (*PasswordTokenMutation) Op

func (m *PasswordTokenMutation) Op() Op

Op returns the operation name.

func (*PasswordTokenMutation) RemovedEdges

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

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

func (*PasswordTokenMutation) RemovedIDs

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

func (m *PasswordTokenMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*PasswordTokenMutation) ResetEdge

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

func (m *PasswordTokenMutation) 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 (*PasswordTokenMutation) ResetHash

func (m *PasswordTokenMutation) ResetHash()

ResetHash resets all changes to the "hash" field.

func (*PasswordTokenMutation) ResetUser

func (m *PasswordTokenMutation) ResetUser()

ResetUser resets all changes to the "user" edge.

func (*PasswordTokenMutation) SetCreatedAt

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

SetCreatedAt sets the "created_at" field.

func (*PasswordTokenMutation) SetField

func (m *PasswordTokenMutation) 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 (*PasswordTokenMutation) SetHash

func (m *PasswordTokenMutation) SetHash(s string)

SetHash sets the "hash" field.

func (*PasswordTokenMutation) SetOp

func (m *PasswordTokenMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*PasswordTokenMutation) SetUserID

func (m *PasswordTokenMutation) SetUserID(id int)

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

func (PasswordTokenMutation) Tx

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

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

func (*PasswordTokenMutation) Type

func (m *PasswordTokenMutation) Type() string

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

func (*PasswordTokenMutation) UserCleared

func (m *PasswordTokenMutation) UserCleared() bool

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

func (*PasswordTokenMutation) UserID

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

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

func (*PasswordTokenMutation) UserIDs

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

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

func (*PasswordTokenMutation) Where

Where appends a list predicates to the PasswordTokenMutation builder.

func (*PasswordTokenMutation) WhereP

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

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

type PasswordTokenQuery

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

PasswordTokenQuery is the builder for querying PasswordToken entities.

func (*PasswordTokenQuery) Aggregate

func (ptq *PasswordTokenQuery) Aggregate(fns ...AggregateFunc) *PasswordTokenSelect

Aggregate returns a PasswordTokenSelect configured with the given aggregations.

func (*PasswordTokenQuery) All

All executes the query and returns a list of PasswordTokens.

func (*PasswordTokenQuery) AllX

func (ptq *PasswordTokenQuery) AllX(ctx context.Context) []*PasswordToken

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

func (*PasswordTokenQuery) Clone

func (ptq *PasswordTokenQuery) Clone() *PasswordTokenQuery

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

func (*PasswordTokenQuery) Count

func (ptq *PasswordTokenQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*PasswordTokenQuery) CountX

func (ptq *PasswordTokenQuery) CountX(ctx context.Context) int

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

func (*PasswordTokenQuery) Exist

func (ptq *PasswordTokenQuery) Exist(ctx context.Context) (bool, error)

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

func (*PasswordTokenQuery) ExistX

func (ptq *PasswordTokenQuery) ExistX(ctx context.Context) bool

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

func (*PasswordTokenQuery) First

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

func (*PasswordTokenQuery) FirstID

func (ptq *PasswordTokenQuery) FirstID(ctx context.Context) (id int, err error)

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

func (*PasswordTokenQuery) FirstIDX

func (ptq *PasswordTokenQuery) FirstIDX(ctx context.Context) int

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

func (*PasswordTokenQuery) FirstX

func (ptq *PasswordTokenQuery) FirstX(ctx context.Context) *PasswordToken

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

func (*PasswordTokenQuery) GroupBy

func (ptq *PasswordTokenQuery) GroupBy(field string, fields ...string) *PasswordTokenGroupBy

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 {
	Hash string `json:"hash,omitempty"`
	Count int `json:"count,omitempty"`
}

client.PasswordToken.Query().
	GroupBy(passwordtoken.FieldHash).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*PasswordTokenQuery) IDs

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

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

func (*PasswordTokenQuery) IDsX

func (ptq *PasswordTokenQuery) IDsX(ctx context.Context) []int

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

func (*PasswordTokenQuery) Limit

func (ptq *PasswordTokenQuery) Limit(limit int) *PasswordTokenQuery

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

func (*PasswordTokenQuery) Offset

func (ptq *PasswordTokenQuery) Offset(offset int) *PasswordTokenQuery

Offset to start from.

func (*PasswordTokenQuery) Only

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

func (*PasswordTokenQuery) OnlyID

func (ptq *PasswordTokenQuery) OnlyID(ctx context.Context) (id int, err error)

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

func (*PasswordTokenQuery) OnlyIDX

func (ptq *PasswordTokenQuery) OnlyIDX(ctx context.Context) int

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

func (*PasswordTokenQuery) OnlyX

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

func (*PasswordTokenQuery) Order

Order specifies how the records should be ordered.

func (*PasswordTokenQuery) QueryUser

func (ptq *PasswordTokenQuery) QueryUser() *UserQuery

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

func (*PasswordTokenQuery) Select

func (ptq *PasswordTokenQuery) Select(fields ...string) *PasswordTokenSelect

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 {
	Hash string `json:"hash,omitempty"`
}

client.PasswordToken.Query().
	Select(passwordtoken.FieldHash).
	Scan(ctx, &v)

func (*PasswordTokenQuery) Unique

func (ptq *PasswordTokenQuery) Unique(unique bool) *PasswordTokenQuery

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

Where adds a new predicate for the PasswordTokenQuery builder.

func (*PasswordTokenQuery) WithUser

func (ptq *PasswordTokenQuery) WithUser(opts ...func(*UserQuery)) *PasswordTokenQuery

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

type PasswordTokenSelect

type PasswordTokenSelect struct {
	*PasswordTokenQuery
	// contains filtered or unexported fields
}

PasswordTokenSelect is the builder for selecting fields of PasswordToken entities.

func (*PasswordTokenSelect) Aggregate

func (pts *PasswordTokenSelect) Aggregate(fns ...AggregateFunc) *PasswordTokenSelect

Aggregate adds the given aggregation functions to the selector query.

func (*PasswordTokenSelect) Bool

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

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

func (*PasswordTokenSelect) BoolX

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

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

func (*PasswordTokenSelect) Bools

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

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

func (*PasswordTokenSelect) BoolsX

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

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

func (*PasswordTokenSelect) Float64

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

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

func (*PasswordTokenSelect) Float64X

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

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

func (*PasswordTokenSelect) Float64s

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

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

func (*PasswordTokenSelect) Float64sX

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

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

func (*PasswordTokenSelect) Int

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

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

func (*PasswordTokenSelect) IntX

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

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

func (*PasswordTokenSelect) Ints

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

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

func (*PasswordTokenSelect) IntsX

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

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

func (*PasswordTokenSelect) Scan

func (pts *PasswordTokenSelect) Scan(ctx context.Context, v any) error

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

func (*PasswordTokenSelect) ScanX

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

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

func (*PasswordTokenSelect) String

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

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

func (*PasswordTokenSelect) StringX

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

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

func (*PasswordTokenSelect) Strings

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

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

func (*PasswordTokenSelect) StringsX

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

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

type PasswordTokenUpdate

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

PasswordTokenUpdate is the builder for updating PasswordToken entities.

func (*PasswordTokenUpdate) ClearUser

func (ptu *PasswordTokenUpdate) ClearUser() *PasswordTokenUpdate

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

func (*PasswordTokenUpdate) Exec

func (ptu *PasswordTokenUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*PasswordTokenUpdate) ExecX

func (ptu *PasswordTokenUpdate) ExecX(ctx context.Context)

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

func (*PasswordTokenUpdate) Mutation

func (ptu *PasswordTokenUpdate) Mutation() *PasswordTokenMutation

Mutation returns the PasswordTokenMutation object of the builder.

func (*PasswordTokenUpdate) Save

func (ptu *PasswordTokenUpdate) Save(ctx context.Context) (int, error)

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

func (*PasswordTokenUpdate) SaveX

func (ptu *PasswordTokenUpdate) SaveX(ctx context.Context) int

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

func (*PasswordTokenUpdate) SetCreatedAt

func (ptu *PasswordTokenUpdate) SetCreatedAt(t time.Time) *PasswordTokenUpdate

SetCreatedAt sets the "created_at" field.

func (*PasswordTokenUpdate) SetHash

SetHash sets the "hash" field.

func (*PasswordTokenUpdate) SetNillableCreatedAt

func (ptu *PasswordTokenUpdate) SetNillableCreatedAt(t *time.Time) *PasswordTokenUpdate

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

func (*PasswordTokenUpdate) SetUser

func (ptu *PasswordTokenUpdate) SetUser(u *User) *PasswordTokenUpdate

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

func (*PasswordTokenUpdate) SetUserID

func (ptu *PasswordTokenUpdate) SetUserID(id int) *PasswordTokenUpdate

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

func (*PasswordTokenUpdate) Where

Where appends a list predicates to the PasswordTokenUpdate builder.

type PasswordTokenUpdateOne

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

PasswordTokenUpdateOne is the builder for updating a single PasswordToken entity.

func (*PasswordTokenUpdateOne) ClearUser

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

func (*PasswordTokenUpdateOne) Exec

func (ptuo *PasswordTokenUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*PasswordTokenUpdateOne) ExecX

func (ptuo *PasswordTokenUpdateOne) ExecX(ctx context.Context)

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

func (*PasswordTokenUpdateOne) Mutation

Mutation returns the PasswordTokenMutation object of the builder.

func (*PasswordTokenUpdateOne) Save

Save executes the query and returns the updated PasswordToken entity.

func (*PasswordTokenUpdateOne) SaveX

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

func (*PasswordTokenUpdateOne) Select

func (ptuo *PasswordTokenUpdateOne) Select(field string, fields ...string) *PasswordTokenUpdateOne

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

func (*PasswordTokenUpdateOne) SetCreatedAt

func (ptuo *PasswordTokenUpdateOne) SetCreatedAt(t time.Time) *PasswordTokenUpdateOne

SetCreatedAt sets the "created_at" field.

func (*PasswordTokenUpdateOne) SetHash

SetHash sets the "hash" field.

func (*PasswordTokenUpdateOne) SetNillableCreatedAt

func (ptuo *PasswordTokenUpdateOne) SetNillableCreatedAt(t *time.Time) *PasswordTokenUpdateOne

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

func (*PasswordTokenUpdateOne) SetUser

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

func (*PasswordTokenUpdateOne) SetUserID

func (ptuo *PasswordTokenUpdateOne) SetUserID(id int) *PasswordTokenUpdateOne

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

func (*PasswordTokenUpdateOne) Where

Where appends a list predicates to the PasswordTokenUpdate builder.

type PasswordTokens

type PasswordTokens []*PasswordToken

PasswordTokens is a parsable slice of PasswordToken.

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 {

	// DataSource is the client for interacting with the DataSource builders.
	DataSource *DataSourceClient
	// Group is the client for interacting with the Group builders.
	Group *GroupClient
	// PasswordToken is the client for interacting with the PasswordToken builders.
	PasswordToken *PasswordTokenClient
	// User is the client for interacting with the User builders.
	User *UserClient
	// contains filtered or unexported fields
}

Tx is a transactional client that is created by calling Client.Tx().

func TxFromContext

func TxFromContext(ctx context.Context) *Tx

TxFromContext returns a Tx stored inside a context, or nil if there isn't one.

func (*Tx) Client

func (tx *Tx) Client() *Client

Client returns a Client that binds to current transaction.

func (*Tx) Commit

func (tx *Tx) Commit() error

Commit commits the transaction.

func (*Tx) OnCommit

func (tx *Tx) OnCommit(f CommitHook)

OnCommit adds a hook to call on commit.

func (*Tx) OnRollback

func (tx *Tx) OnRollback(f RollbackHook)

OnRollback adds a hook to call on rollback.

func (*Tx) Rollback

func (tx *Tx) Rollback() error

Rollback rollbacks the transaction.

type User

type User struct {

	// ID of the ent.
	ID int `json:"id,omitempty"`
	// Name holds the value of the "name" field.
	Name string `json:"name,omitempty"`
	// Email holds the value of the "email" field.
	Email string `json:"email,omitempty"`
	// Password holds the value of the "password" field.
	Password string `json:"-"`
	// Verified holds the value of the "verified" field.
	Verified bool `json:"verified,omitempty"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the UserQuery when eager-loading is set.
	Edges UserEdges `json:"edges"`
	// contains filtered or unexported fields
}

User is the model entity for the User schema.

func (*User) QueryGroups

func (u *User) QueryGroups() *GroupQuery

QueryGroups queries the "groups" edge of the User entity.

func (*User) QueryOwner

func (u *User) QueryOwner() *PasswordTokenQuery

QueryOwner queries the "owner" edge of the User entity.

func (*User) String

func (u *User) String() string

String implements the fmt.Stringer.

func (*User) Unwrap

func (u *User) Unwrap() *User

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

func (*User) Update

func (u *User) Update() *UserUpdateOne

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

func (*User) Value

func (u *User) Value(name string) (ent.Value, error)

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

type UserClient

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

UserClient is a client for the User schema.

func NewUserClient

func NewUserClient(c config) *UserClient

NewUserClient returns a client for the User from the given config.

func (*UserClient) Create

func (c *UserClient) Create() *UserCreate

Create returns a builder for creating a User entity.

func (*UserClient) CreateBulk

func (c *UserClient) CreateBulk(builders ...*UserCreate) *UserCreateBulk

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

func (*UserClient) Delete

func (c *UserClient) Delete() *UserDelete

Delete returns a delete builder for User.

func (*UserClient) DeleteOne

func (c *UserClient) DeleteOne(u *User) *UserDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*UserClient) DeleteOneID

func (c *UserClient) DeleteOneID(id int) *UserDeleteOne

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

func (*UserClient) Get

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

Get returns a User entity by its id.

func (*UserClient) GetX

func (c *UserClient) GetX(ctx context.Context, id int) *User

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

func (*UserClient) Hooks

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

Hooks returns the client hooks.

func (*UserClient) Intercept

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

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

func (*UserClient) Interceptors

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

Interceptors returns the client interceptors.

func (*UserClient) Query

func (c *UserClient) Query() *UserQuery

Query returns a query builder for User.

func (*UserClient) QueryGroups

func (c *UserClient) QueryGroups(u *User) *GroupQuery

QueryGroups queries the groups edge of a User.

func (*UserClient) QueryOwner

func (c *UserClient) QueryOwner(u *User) *PasswordTokenQuery

QueryOwner queries the owner edge of a User.

func (*UserClient) Update

func (c *UserClient) Update() *UserUpdate

Update returns an update builder for User.

func (*UserClient) UpdateOne

func (c *UserClient) UpdateOne(u *User) *UserUpdateOne

UpdateOne returns an update builder for the given entity.

func (*UserClient) UpdateOneID

func (c *UserClient) UpdateOneID(id int) *UserUpdateOne

UpdateOneID returns an update builder for the given id.

func (*UserClient) Use

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

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

type UserCreate

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

UserCreate is the builder for creating a User entity.

func (*UserCreate) AddGroupIDs

func (uc *UserCreate) AddGroupIDs(ids ...int) *UserCreate

AddGroupIDs adds the "groups" edge to the Group entity by IDs.

func (*UserCreate) AddGroups

func (uc *UserCreate) AddGroups(g ...*Group) *UserCreate

AddGroups adds the "groups" edges to the Group entity.

func (*UserCreate) AddOwner

func (uc *UserCreate) AddOwner(p ...*PasswordToken) *UserCreate

AddOwner adds the "owner" edges to the PasswordToken entity.

func (*UserCreate) AddOwnerIDs

func (uc *UserCreate) AddOwnerIDs(ids ...int) *UserCreate

AddOwnerIDs adds the "owner" edge to the PasswordToken entity by IDs.

func (*UserCreate) Exec

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

Exec executes the query.

func (*UserCreate) ExecX

func (uc *UserCreate) ExecX(ctx context.Context)

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

func (*UserCreate) Mutation

func (uc *UserCreate) Mutation() *UserMutation

Mutation returns the UserMutation object of the builder.

func (*UserCreate) 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) SetEmail

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

SetEmail sets the "email" field.

func (*UserCreate) SetName

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

SetName sets the "name" 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) SetNillableVerified

func (uc *UserCreate) SetNillableVerified(b *bool) *UserCreate

SetNillableVerified sets the "verified" field if the given value is not nil.

func (*UserCreate) SetPassword

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

SetPassword sets the "password" field.

func (*UserCreate) SetVerified

func (uc *UserCreate) SetVerified(b bool) *UserCreate

SetVerified sets the "verified" 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) ExecX

func (ucb *UserCreateBulk) ExecX(ctx context.Context)

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

func (*UserCreateBulk) Save

func (ucb *UserCreateBulk) Save(ctx context.Context) ([]*User, error)

Save creates the User entities in the database.

func (*UserCreateBulk) SaveX

func (ucb *UserCreateBulk) SaveX(ctx context.Context) []*User

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

type UserDelete

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

UserDelete is the builder for deleting a User entity.

func (*UserDelete) Exec

func (ud *UserDelete) Exec(ctx context.Context) (int, error)

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

func (*UserDelete) ExecX

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

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

func (*UserDelete) Where

func (ud *UserDelete) Where(ps ...predicate.User) *UserDelete

Where appends a list predicates to the UserDelete builder.

type UserDeleteOne

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

UserDeleteOne is the builder for deleting a single User entity.

func (*UserDeleteOne) Exec

func (udo *UserDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*UserDeleteOne) ExecX

func (udo *UserDeleteOne) ExecX(ctx context.Context)

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

func (*UserDeleteOne) Where

func (udo *UserDeleteOne) Where(ps ...predicate.User) *UserDeleteOne

Where appends a list predicates to the UserDelete builder.

type UserEdges

type UserEdges struct {
	// Owner holds the value of the owner edge.
	Owner []*PasswordToken `json:"owner,omitempty"`
	// Groups holds the value of the groups edge.
	Groups []*Group `json:"groups,omitempty"`
	// contains filtered or unexported fields
}

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

func (UserEdges) GroupsOrErr

func (e UserEdges) GroupsOrErr() ([]*Group, error)

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

func (UserEdges) OwnerOrErr

func (e UserEdges) OwnerOrErr() ([]*PasswordToken, error)

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

type UserGroupBy

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

UserGroupBy is the group-by builder for User entities.

func (*UserGroupBy) Aggregate

func (ugb *UserGroupBy) Aggregate(fns ...AggregateFunc) *UserGroupBy

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

func (*UserGroupBy) Bool

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

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

func (*UserGroupBy) BoolX

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

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

func (*UserGroupBy) Bools

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

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

func (*UserGroupBy) BoolsX

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

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

func (*UserGroupBy) Float64

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

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

func (*UserGroupBy) Float64X

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

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

func (*UserGroupBy) Float64s

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

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

func (*UserGroupBy) Float64sX

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

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

func (*UserGroupBy) Int

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

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

func (*UserGroupBy) IntX

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

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

func (*UserGroupBy) Ints

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

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

func (*UserGroupBy) IntsX

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

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

func (*UserGroupBy) Scan

func (ugb *UserGroupBy) Scan(ctx context.Context, v any) error

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

func (*UserGroupBy) ScanX

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

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

func (*UserGroupBy) String

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

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

func (*UserGroupBy) StringX

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

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

func (*UserGroupBy) Strings

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

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

func (*UserGroupBy) StringsX

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

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

type UserMutation

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

UserMutation represents an operation that mutates the User nodes in the graph.

func (*UserMutation) 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) AddGroupIDs

func (m *UserMutation) AddGroupIDs(ids ...int)

AddGroupIDs adds the "groups" edge to the Group entity by ids.

func (*UserMutation) AddOwnerIDs

func (m *UserMutation) AddOwnerIDs(ids ...int)

AddOwnerIDs adds the "owner" edge to the PasswordToken entity by ids.

func (*UserMutation) AddedEdges

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

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

func (*UserMutation) AddedField

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

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

func (*UserMutation) AddedFields

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

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

func (*UserMutation) AddedIDs

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

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

func (*UserMutation) ClearEdge

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

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

func (*UserMutation) 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) ClearGroups

func (m *UserMutation) ClearGroups()

ClearGroups clears the "groups" edge to the Group entity.

func (*UserMutation) ClearOwner

func (m *UserMutation) ClearOwner()

ClearOwner clears the "owner" edge to the PasswordToken entity.

func (*UserMutation) ClearedEdges

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

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

func (*UserMutation) ClearedFields

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

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

func (UserMutation) Client

func (m UserMutation) Client() *Client

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

func (*UserMutation) CreatedAt

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

CreatedAt returns the value of the "created_at" field in the 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) 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) GroupsCleared

func (m *UserMutation) GroupsCleared() bool

GroupsCleared reports if the "groups" edge to the Group entity was cleared.

func (*UserMutation) GroupsIDs

func (m *UserMutation) GroupsIDs() (ids []int)

GroupsIDs returns the "groups" edge IDs in the mutation.

func (*UserMutation) ID

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

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

func (*UserMutation) IDs

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

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

func (*UserMutation) Name

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

Name returns the value of the "name" 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) 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) OldName

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

OldName returns the old "name" 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) OldPassword

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

OldPassword returns the old "password" 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) OldVerified

func (m *UserMutation) OldVerified(ctx context.Context) (v bool, err error)

OldVerified returns the old "verified" 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) OwnerCleared

func (m *UserMutation) OwnerCleared() bool

OwnerCleared reports if the "owner" edge to the PasswordToken entity was cleared.

func (*UserMutation) OwnerIDs

func (m *UserMutation) OwnerIDs() (ids []int)

OwnerIDs returns the "owner" edge IDs in the mutation.

func (*UserMutation) Password

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

Password returns the value of the "password" field in the mutation.

func (*UserMutation) RemoveGroupIDs

func (m *UserMutation) RemoveGroupIDs(ids ...int)

RemoveGroupIDs removes the "groups" edge to the Group entity by IDs.

func (*UserMutation) RemoveOwnerIDs

func (m *UserMutation) RemoveOwnerIDs(ids ...int)

RemoveOwnerIDs removes the "owner" edge to the PasswordToken entity by IDs.

func (*UserMutation) RemovedEdges

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

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

func (*UserMutation) RemovedGroupsIDs

func (m *UserMutation) RemovedGroupsIDs() (ids []int)

RemovedGroups returns the removed IDs of the "groups" edge to the Group entity.

func (*UserMutation) RemovedIDs

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

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

func (*UserMutation) RemovedOwnerIDs

func (m *UserMutation) RemovedOwnerIDs() (ids []int)

RemovedOwner returns the removed IDs of the "owner" edge to the PasswordToken entity.

func (*UserMutation) ResetCreatedAt

func (m *UserMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_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) ResetGroups

func (m *UserMutation) ResetGroups()

ResetGroups resets all changes to the "groups" edge.

func (*UserMutation) ResetName

func (m *UserMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*UserMutation) ResetOwner

func (m *UserMutation) ResetOwner()

ResetOwner resets all changes to the "owner" edge.

func (*UserMutation) ResetPassword

func (m *UserMutation) ResetPassword()

ResetPassword resets all changes to the "password" field.

func (*UserMutation) ResetVerified

func (m *UserMutation) ResetVerified()

ResetVerified resets all changes to the "verified" field.

func (*UserMutation) SetCreatedAt

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

SetCreatedAt sets the "created_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) SetName

func (m *UserMutation) SetName(s string)

SetName sets the "name" field.

func (*UserMutation) SetOp

func (m *UserMutation) SetOp(op Op)

SetOp allows setting the mutation operation.

func (*UserMutation) SetPassword

func (m *UserMutation) SetPassword(s string)

SetPassword sets the "password" field.

func (*UserMutation) SetVerified

func (m *UserMutation) SetVerified(b bool)

SetVerified sets the "verified" 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) Verified

func (m *UserMutation) Verified() (r bool, exists bool)

Verified returns the value of the "verified" field in the 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 UserQuery

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

UserQuery is the builder for querying User entities.

func (*UserQuery) Aggregate

func (uq *UserQuery) Aggregate(fns ...AggregateFunc) *UserSelect

Aggregate returns a UserSelect configured with the given aggregations.

func (*UserQuery) All

func (uq *UserQuery) All(ctx context.Context) ([]*User, error)

All executes the query and returns a list of Users.

func (*UserQuery) AllX

func (uq *UserQuery) AllX(ctx context.Context) []*User

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

func (*UserQuery) Clone

func (uq *UserQuery) Clone() *UserQuery

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

func (*UserQuery) Count

func (uq *UserQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*UserQuery) CountX

func (uq *UserQuery) CountX(ctx context.Context) int

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

func (*UserQuery) Exist

func (uq *UserQuery) Exist(ctx context.Context) (bool, error)

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

func (*UserQuery) ExistX

func (uq *UserQuery) ExistX(ctx context.Context) bool

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

func (*UserQuery) First

func (uq *UserQuery) First(ctx context.Context) (*User, error)

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

func (*UserQuery) FirstID

func (uq *UserQuery) FirstID(ctx context.Context) (id int, err error)

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

func (*UserQuery) FirstIDX

func (uq *UserQuery) FirstIDX(ctx context.Context) int

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

func (*UserQuery) FirstX

func (uq *UserQuery) FirstX(ctx context.Context) *User

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

func (*UserQuery) GroupBy

func (uq *UserQuery) GroupBy(field string, fields ...string) *UserGroupBy

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

Example:

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

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

func (*UserQuery) IDs

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

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

func (*UserQuery) IDsX

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

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

func (*UserQuery) Limit

func (uq *UserQuery) Limit(limit int) *UserQuery

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

func (*UserQuery) Offset

func (uq *UserQuery) Offset(offset int) *UserQuery

Offset to start from.

func (*UserQuery) Only

func (uq *UserQuery) Only(ctx context.Context) (*User, error)

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

func (*UserQuery) OnlyID

func (uq *UserQuery) OnlyID(ctx context.Context) (id int, err error)

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

func (*UserQuery) OnlyIDX

func (uq *UserQuery) OnlyIDX(ctx context.Context) int

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

func (*UserQuery) OnlyX

func (uq *UserQuery) OnlyX(ctx context.Context) *User

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

func (*UserQuery) Order

func (uq *UserQuery) Order(o ...user.OrderOption) *UserQuery

Order specifies how the records should be ordered.

func (*UserQuery) QueryGroups

func (uq *UserQuery) QueryGroups() *GroupQuery

QueryGroups chains the current query on the "groups" edge.

func (*UserQuery) QueryOwner

func (uq *UserQuery) QueryOwner() *PasswordTokenQuery

QueryOwner chains the current query on the "owner" edge.

func (*UserQuery) Select

func (uq *UserQuery) Select(fields ...string) *UserSelect

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

Example:

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

client.User.Query().
	Select(user.FieldName).
	Scan(ctx, &v)

func (*UserQuery) Unique

func (uq *UserQuery) Unique(unique bool) *UserQuery

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

func (*UserQuery) Where

func (uq *UserQuery) Where(ps ...predicate.User) *UserQuery

Where adds a new predicate for the UserQuery builder.

func (*UserQuery) WithGroups

func (uq *UserQuery) WithGroups(opts ...func(*GroupQuery)) *UserQuery

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

func (*UserQuery) WithOwner

func (uq *UserQuery) WithOwner(opts ...func(*PasswordTokenQuery)) *UserQuery

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

type UserSelect

type UserSelect struct {
	*UserQuery
	// contains filtered or unexported fields
}

UserSelect is the builder for selecting fields of User entities.

func (*UserSelect) Aggregate

func (us *UserSelect) Aggregate(fns ...AggregateFunc) *UserSelect

Aggregate adds the given aggregation functions to the selector query.

func (*UserSelect) Bool

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

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

func (*UserSelect) BoolX

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

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

func (*UserSelect) Bools

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

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

func (*UserSelect) BoolsX

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

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

func (*UserSelect) Float64

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

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

func (*UserSelect) Float64X

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

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

func (*UserSelect) Float64s

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

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

func (*UserSelect) Float64sX

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

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

func (*UserSelect) Int

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

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

func (*UserSelect) IntX

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

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

func (*UserSelect) Ints

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

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

func (*UserSelect) IntsX

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

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

func (*UserSelect) Scan

func (us *UserSelect) Scan(ctx context.Context, v any) error

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

func (*UserSelect) ScanX

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

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

func (*UserSelect) String

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

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

func (*UserSelect) StringX

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

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

func (*UserSelect) Strings

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

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

func (*UserSelect) StringsX

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

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

type UserUpdate

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

UserUpdate is the builder for updating User entities.

func (*UserUpdate) AddGroupIDs

func (uu *UserUpdate) AddGroupIDs(ids ...int) *UserUpdate

AddGroupIDs adds the "groups" edge to the Group entity by IDs.

func (*UserUpdate) AddGroups

func (uu *UserUpdate) AddGroups(g ...*Group) *UserUpdate

AddGroups adds the "groups" edges to the Group entity.

func (*UserUpdate) AddOwner

func (uu *UserUpdate) AddOwner(p ...*PasswordToken) *UserUpdate

AddOwner adds the "owner" edges to the PasswordToken entity.

func (*UserUpdate) AddOwnerIDs

func (uu *UserUpdate) AddOwnerIDs(ids ...int) *UserUpdate

AddOwnerIDs adds the "owner" edge to the PasswordToken entity by IDs.

func (*UserUpdate) ClearGroups

func (uu *UserUpdate) ClearGroups() *UserUpdate

ClearGroups clears all "groups" edges to the Group entity.

func (*UserUpdate) ClearOwner

func (uu *UserUpdate) ClearOwner() *UserUpdate

ClearOwner clears all "owner" edges to the PasswordToken entity.

func (*UserUpdate) Exec

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

Exec executes the query.

func (*UserUpdate) ExecX

func (uu *UserUpdate) ExecX(ctx context.Context)

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

func (*UserUpdate) Mutation

func (uu *UserUpdate) Mutation() *UserMutation

Mutation returns the UserMutation object of the builder.

func (*UserUpdate) RemoveGroupIDs

func (uu *UserUpdate) RemoveGroupIDs(ids ...int) *UserUpdate

RemoveGroupIDs removes the "groups" edge to Group entities by IDs.

func (*UserUpdate) RemoveGroups

func (uu *UserUpdate) RemoveGroups(g ...*Group) *UserUpdate

RemoveGroups removes "groups" edges to Group entities.

func (*UserUpdate) RemoveOwner

func (uu *UserUpdate) RemoveOwner(p ...*PasswordToken) *UserUpdate

RemoveOwner removes "owner" edges to PasswordToken entities.

func (*UserUpdate) RemoveOwnerIDs

func (uu *UserUpdate) RemoveOwnerIDs(ids ...int) *UserUpdate

RemoveOwnerIDs removes the "owner" edge to PasswordToken entities by IDs.

func (*UserUpdate) Save

func (uu *UserUpdate) Save(ctx context.Context) (int, error)

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

func (*UserUpdate) SaveX

func (uu *UserUpdate) SaveX(ctx context.Context) int

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

func (*UserUpdate) SetEmail

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

SetEmail sets the "email" field.

func (*UserUpdate) SetName

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

SetName sets the "name" field.

func (*UserUpdate) SetNillableVerified

func (uu *UserUpdate) SetNillableVerified(b *bool) *UserUpdate

SetNillableVerified sets the "verified" field if the given value is not nil.

func (*UserUpdate) SetPassword

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

SetPassword sets the "password" field.

func (*UserUpdate) SetVerified

func (uu *UserUpdate) SetVerified(b bool) *UserUpdate

SetVerified sets the "verified" 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) AddGroupIDs

func (uuo *UserUpdateOne) AddGroupIDs(ids ...int) *UserUpdateOne

AddGroupIDs adds the "groups" edge to the Group entity by IDs.

func (*UserUpdateOne) AddGroups

func (uuo *UserUpdateOne) AddGroups(g ...*Group) *UserUpdateOne

AddGroups adds the "groups" edges to the Group entity.

func (*UserUpdateOne) AddOwner

func (uuo *UserUpdateOne) AddOwner(p ...*PasswordToken) *UserUpdateOne

AddOwner adds the "owner" edges to the PasswordToken entity.

func (*UserUpdateOne) AddOwnerIDs

func (uuo *UserUpdateOne) AddOwnerIDs(ids ...int) *UserUpdateOne

AddOwnerIDs adds the "owner" edge to the PasswordToken entity by IDs.

func (*UserUpdateOne) ClearGroups

func (uuo *UserUpdateOne) ClearGroups() *UserUpdateOne

ClearGroups clears all "groups" edges to the Group entity.

func (*UserUpdateOne) ClearOwner

func (uuo *UserUpdateOne) ClearOwner() *UserUpdateOne

ClearOwner clears all "owner" edges to the PasswordToken entity.

func (*UserUpdateOne) Exec

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

Exec executes the query on the entity.

func (*UserUpdateOne) ExecX

func (uuo *UserUpdateOne) ExecX(ctx context.Context)

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

func (*UserUpdateOne) Mutation

func (uuo *UserUpdateOne) Mutation() *UserMutation

Mutation returns the UserMutation object of the builder.

func (*UserUpdateOne) RemoveGroupIDs

func (uuo *UserUpdateOne) RemoveGroupIDs(ids ...int) *UserUpdateOne

RemoveGroupIDs removes the "groups" edge to Group entities by IDs.

func (*UserUpdateOne) RemoveGroups

func (uuo *UserUpdateOne) RemoveGroups(g ...*Group) *UserUpdateOne

RemoveGroups removes "groups" edges to Group entities.

func (*UserUpdateOne) RemoveOwner

func (uuo *UserUpdateOne) RemoveOwner(p ...*PasswordToken) *UserUpdateOne

RemoveOwner removes "owner" edges to PasswordToken entities.

func (*UserUpdateOne) RemoveOwnerIDs

func (uuo *UserUpdateOne) RemoveOwnerIDs(ids ...int) *UserUpdateOne

RemoveOwnerIDs removes the "owner" edge to PasswordToken entities by IDs.

func (*UserUpdateOne) Save

func (uuo *UserUpdateOne) Save(ctx context.Context) (*User, error)

Save executes the query and returns the updated User entity.

func (*UserUpdateOne) SaveX

func (uuo *UserUpdateOne) SaveX(ctx context.Context) *User

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

func (*UserUpdateOne) Select

func (uuo *UserUpdateOne) Select(field string, fields ...string) *UserUpdateOne

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

func (*UserUpdateOne) SetEmail

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

SetEmail sets the "email" field.

func (*UserUpdateOne) SetName

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

SetName sets the "name" field.

func (*UserUpdateOne) SetNillableVerified

func (uuo *UserUpdateOne) SetNillableVerified(b *bool) *UserUpdateOne

SetNillableVerified sets the "verified" field if the given value is not nil.

func (*UserUpdateOne) SetPassword

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

SetPassword sets the "password" field.

func (*UserUpdateOne) SetVerified

func (uuo *UserUpdateOne) SetVerified(b bool) *UserUpdateOne

SetVerified sets the "verified" field.

func (*UserUpdateOne) Where

func (uuo *UserUpdateOne) Where(ps ...predicate.User) *UserUpdateOne

Where appends a list predicates to the UserUpdate builder.

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