ent

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Nov 26, 2022 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.
	TypeUser               = "User"
	TypeWebauthnCredential = "WebauthnCredential"
)

Variables

This section is empty.

Functions

func IsConstraintError

func IsConstraintError(err error) bool

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

func IsNotFound

func IsNotFound(err error) bool

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

func IsNotLoaded

func IsNotLoaded(err error) bool

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

func IsNotSingular

func IsNotSingular(err error) bool

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

func IsValidationError

func IsValidationError(err error) bool

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

func MaskNotFound

func MaskNotFound(err error) error

MaskNotFound masks not found error.

func NewContext

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

NewContext returns a new context with the given Client attached.

func NewTxContext

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

NewTxContext returns a new context with the given Tx attached.

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
	// User is the client for interacting with the User builders.
	User *UserClient
	// WebauthnCredential is the client for interacting with the WebauthnCredential builders.
	WebauthnCredential *WebauthnCredentialClient
	// 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().
	User.
	Query().
	Count(ctx)

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 Hook

type Hook = ent.Hook

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(...interface{})) Option

Log sets the logging function for debug mode.

type OrderFunc

type OrderFunc func(*sql.Selector)

OrderFunc applies an ordering on the sql selector.

func Asc

func Asc(fields ...string) OrderFunc

Asc applies the given fields in ASC order.

func Desc

func Desc(fields ...string) OrderFunc

Desc applies the given fields in DESC order.

type Policy

type Policy = ent.Policy

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

type Tx struct {

	// User is the client for interacting with the User builders.
	User *UserClient
	// WebauthnCredential is the client for interacting with the WebauthnCredential builders.
	WebauthnCredential *WebauthnCredentialClient
	// 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 string `json:"id,omitempty"`
	// CreateTime holds the value of the "create_time" field.
	CreateTime time.Time `json:"create_time,omitempty"`
	// UpdateTime holds the value of the "update_time" field.
	UpdateTime time.Time `json:"update_time,omitempty"`
	// Name holds the value of the "name" field.
	Name string `json:"name,omitempty"`
	// Displayname holds the value of the "displayname" field.
	Displayname string `json:"displayname,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) QueryCredentials

func (u *User) QueryCredentials() *WebauthnCredentialQuery

QueryCredentials queries the "credentials" 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.

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

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

func (*UserClient) Get

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

Get returns a User entity by its id.

func (*UserClient) GetX

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

func (c *UserClient) Query() *UserQuery

Query returns a query builder for User.

func (*UserClient) QueryCredentials

func (c *UserClient) QueryCredentials(u *User) *WebauthnCredentialQuery

QueryCredentials queries the credentials 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 string) *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) AddCredentialIDs

func (uc *UserCreate) AddCredentialIDs(ids ...string) *UserCreate

AddCredentialIDs adds the "credentials" edge to the WebauthnCredential entity by IDs.

func (*UserCreate) AddCredentials

func (uc *UserCreate) AddCredentials(w ...*WebauthnCredential) *UserCreate

AddCredentials adds the "credentials" edges to the WebauthnCredential entity.

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

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

SetCreateTime sets the "create_time" field.

func (*UserCreate) SetDisplayname

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

SetDisplayname sets the "displayname" field.

func (*UserCreate) SetID

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

SetID sets the "id" field.

func (*UserCreate) SetName

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

SetName sets the "name" field.

func (*UserCreate) SetNillableCreateTime

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

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

func (*UserCreate) SetNillableUpdateTime

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

SetNillableUpdateTime sets the "update_time" field if the given value is not nil.

func (*UserCreate) SetUpdateTime

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

SetUpdateTime sets the "update_time" 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.

type UserEdges

type UserEdges struct {
	// Credentials holds the value of the credentials edge.
	Credentials []*WebauthnCredential `json:"credentials,omitempty"`
	// contains filtered or unexported fields
}

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

func (UserEdges) CredentialsOrErr

func (e UserEdges) CredentialsOrErr() ([]*WebauthnCredential, error)

CredentialsOrErr returns the Credentials 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 interface{}) error

Scan applies the group-by query and scans the result into the given value.

func (*UserGroupBy) ScanX

func (s *UserGroupBy) ScanX(ctx context.Context, v interface{})

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

func (m *UserMutation) AddCredentialIDs(ids ...string)

AddCredentialIDs adds the "credentials" edge to the WebauthnCredential entity by ids.

func (*UserMutation) AddField

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

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

func (*UserMutation) 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) ClearCredentials

func (m *UserMutation) ClearCredentials()

ClearCredentials clears the "credentials" edge to the WebauthnCredential entity.

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

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

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

func (*UserMutation) CredentialsCleared

func (m *UserMutation) CredentialsCleared() bool

CredentialsCleared reports if the "credentials" edge to the WebauthnCredential entity was cleared.

func (*UserMutation) CredentialsIDs

func (m *UserMutation) CredentialsIDs() (ids []string)

CredentialsIDs returns the "credentials" edge IDs in the mutation.

func (*UserMutation) Displayname

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

Displayname returns the value of the "displayname" 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) 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) ID

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

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

OldCreateTime returns the old "create_time" 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) OldDisplayname

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

OldDisplayname returns the old "displayname" 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) OldUpdateTime

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

OldUpdateTime returns the old "update_time" 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) RemoveCredentialIDs

func (m *UserMutation) RemoveCredentialIDs(ids ...string)

RemoveCredentialIDs removes the "credentials" edge to the WebauthnCredential entity by IDs.

func (*UserMutation) RemovedCredentialsIDs

func (m *UserMutation) RemovedCredentialsIDs() (ids []string)

RemovedCredentials returns the removed IDs of the "credentials" edge to the WebauthnCredential entity.

func (*UserMutation) RemovedEdges

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

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

func (*UserMutation) RemovedIDs

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

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

func (*UserMutation) ResetCreateTime

func (m *UserMutation) ResetCreateTime()

ResetCreateTime resets all changes to the "create_time" field.

func (*UserMutation) ResetCredentials

func (m *UserMutation) ResetCredentials()

ResetCredentials resets all changes to the "credentials" edge.

func (*UserMutation) ResetDisplayname

func (m *UserMutation) ResetDisplayname()

ResetDisplayname resets all changes to the "displayname" 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) 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) ResetName

func (m *UserMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*UserMutation) ResetUpdateTime

func (m *UserMutation) ResetUpdateTime()

ResetUpdateTime resets all changes to the "update_time" field.

func (*UserMutation) SetCreateTime

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

SetCreateTime sets the "create_time" field.

func (*UserMutation) SetDisplayname

func (m *UserMutation) SetDisplayname(s string)

SetDisplayname sets the "displayname" field.

func (*UserMutation) SetField

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

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

func (*UserMutation) SetID

func (m *UserMutation) SetID(id string)

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

func (*UserMutation) SetName

func (m *UserMutation) SetName(s string)

SetName sets the "name" field.

func (*UserMutation) SetUpdateTime

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

SetUpdateTime sets the "update_time" 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) UpdateTime

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

UpdateTime returns the value of the "update_time" field in the mutation.

func (*UserMutation) Where

func (m *UserMutation) Where(ps ...predicate.User)

Where appends a list predicates to the UserMutation builder.

type UserQuery

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

UserQuery is the builder for querying User entities.

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

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

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

func (*UserQuery) IDs

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

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

func (*UserQuery) IDsX

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

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

func (*UserQuery) Limit

func (uq *UserQuery) Limit(limit int) *UserQuery

Limit adds a limit step to the query.

func (*UserQuery) Offset

func (uq *UserQuery) Offset(offset int) *UserQuery

Offset adds an offset step to the query.

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

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

func (*UserQuery) OnlyX

func (uq *UserQuery) OnlyX(ctx context.Context) *User

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

func (*UserQuery) Order

func (uq *UserQuery) Order(o ...OrderFunc) *UserQuery

Order adds an order step to the query.

func (*UserQuery) QueryCredentials

func (uq *UserQuery) QueryCredentials() *WebauthnCredentialQuery

QueryCredentials chains the current query on the "credentials" 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 {
	CreateTime time.Time `json:"create_time,omitempty"`
}

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

func (uq *UserQuery) WithCredentials(opts ...func(*WebauthnCredentialQuery)) *UserQuery

WithCredentials tells the query-builder to eager-load the nodes that are connected to the "credentials" 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) 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 interface{}) 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 interface{})

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

func (uu *UserUpdate) AddCredentialIDs(ids ...string) *UserUpdate

AddCredentialIDs adds the "credentials" edge to the WebauthnCredential entity by IDs.

func (*UserUpdate) AddCredentials

func (uu *UserUpdate) AddCredentials(w ...*WebauthnCredential) *UserUpdate

AddCredentials adds the "credentials" edges to the WebauthnCredential entity.

func (*UserUpdate) ClearCredentials

func (uu *UserUpdate) ClearCredentials() *UserUpdate

ClearCredentials clears all "credentials" edges to the WebauthnCredential 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) RemoveCredentialIDs

func (uu *UserUpdate) RemoveCredentialIDs(ids ...string) *UserUpdate

RemoveCredentialIDs removes the "credentials" edge to WebauthnCredential entities by IDs.

func (*UserUpdate) RemoveCredentials

func (uu *UserUpdate) RemoveCredentials(w ...*WebauthnCredential) *UserUpdate

RemoveCredentials removes "credentials" edges to WebauthnCredential entities.

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

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

SetDisplayname sets the "displayname" field.

func (*UserUpdate) SetName

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

SetName sets the "name" field.

func (*UserUpdate) SetUpdateTime

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

SetUpdateTime sets the "update_time" 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) AddCredentialIDs

func (uuo *UserUpdateOne) AddCredentialIDs(ids ...string) *UserUpdateOne

AddCredentialIDs adds the "credentials" edge to the WebauthnCredential entity by IDs.

func (*UserUpdateOne) AddCredentials

func (uuo *UserUpdateOne) AddCredentials(w ...*WebauthnCredential) *UserUpdateOne

AddCredentials adds the "credentials" edges to the WebauthnCredential entity.

func (*UserUpdateOne) ClearCredentials

func (uuo *UserUpdateOne) ClearCredentials() *UserUpdateOne

ClearCredentials clears all "credentials" edges to the WebauthnCredential 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) RemoveCredentialIDs

func (uuo *UserUpdateOne) RemoveCredentialIDs(ids ...string) *UserUpdateOne

RemoveCredentialIDs removes the "credentials" edge to WebauthnCredential entities by IDs.

func (*UserUpdateOne) RemoveCredentials

func (uuo *UserUpdateOne) RemoveCredentials(w ...*WebauthnCredential) *UserUpdateOne

RemoveCredentials removes "credentials" edges to WebauthnCredential entities.

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

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

SetDisplayname sets the "displayname" field.

func (*UserUpdateOne) SetName

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

SetName sets the "name" field.

func (*UserUpdateOne) SetUpdateTime

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

SetUpdateTime sets the "update_time" field.

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.

type WebauthnCredential

type WebauthnCredential struct {

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

WebauthnCredential is the model entity for the WebauthnCredential schema.

func (*WebauthnCredential) QueryUser

func (wc *WebauthnCredential) QueryUser() *UserQuery

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

func (*WebauthnCredential) String

func (wc *WebauthnCredential) String() string

String implements the fmt.Stringer.

func (*WebauthnCredential) Unwrap

func (wc *WebauthnCredential) Unwrap() *WebauthnCredential

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

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

type WebauthnCredentialClient

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

WebauthnCredentialClient is a client for the WebauthnCredential schema.

func NewWebauthnCredentialClient

func NewWebauthnCredentialClient(c config) *WebauthnCredentialClient

NewWebauthnCredentialClient returns a client for the WebauthnCredential from the given config.

func (*WebauthnCredentialClient) Create

Create returns a builder for creating a WebauthnCredential entity.

func (*WebauthnCredentialClient) CreateBulk

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

func (*WebauthnCredentialClient) Delete

Delete returns a delete builder for WebauthnCredential.

func (*WebauthnCredentialClient) DeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*WebauthnCredentialClient) DeleteOneID

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

func (*WebauthnCredentialClient) Get

Get returns a WebauthnCredential entity by its id.

func (*WebauthnCredentialClient) GetX

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

func (*WebauthnCredentialClient) Hooks

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

Hooks returns the client hooks.

func (*WebauthnCredentialClient) Query

Query returns a query builder for WebauthnCredential.

func (*WebauthnCredentialClient) QueryUser

QueryUser queries the user edge of a WebauthnCredential.

func (*WebauthnCredentialClient) Update

Update returns an update builder for WebauthnCredential.

func (*WebauthnCredentialClient) UpdateOne

UpdateOne returns an update builder for the given entity.

func (*WebauthnCredentialClient) UpdateOneID

UpdateOneID returns an update builder for the given id.

func (*WebauthnCredentialClient) Use

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

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

type WebauthnCredentialCreate

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

WebauthnCredentialCreate is the builder for creating a WebauthnCredential entity.

func (*WebauthnCredentialCreate) Exec

Exec executes the query.

func (*WebauthnCredentialCreate) ExecX

func (wcc *WebauthnCredentialCreate) ExecX(ctx context.Context)

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

func (*WebauthnCredentialCreate) Mutation

Mutation returns the WebauthnCredentialMutation object of the builder.

func (*WebauthnCredentialCreate) Save

Save creates the WebauthnCredential in the database.

func (*WebauthnCredentialCreate) SaveX

SaveX calls Save and panics if Save returns an error.

func (*WebauthnCredentialCreate) SetCreateTime

SetCreateTime sets the "create_time" field.

func (*WebauthnCredentialCreate) SetCredential

SetCredential sets the "credential" field.

func (*WebauthnCredentialCreate) SetID

SetID sets the "id" field.

func (*WebauthnCredentialCreate) SetNillableCreateTime

func (wcc *WebauthnCredentialCreate) SetNillableCreateTime(t *time.Time) *WebauthnCredentialCreate

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

func (*WebauthnCredentialCreate) SetNillableUpdateTime

func (wcc *WebauthnCredentialCreate) SetNillableUpdateTime(t *time.Time) *WebauthnCredentialCreate

SetNillableUpdateTime sets the "update_time" field if the given value is not nil.

func (*WebauthnCredentialCreate) SetUpdateTime

SetUpdateTime sets the "update_time" field.

func (*WebauthnCredentialCreate) SetUser

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

func (*WebauthnCredentialCreate) SetUserID

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

type WebauthnCredentialCreateBulk

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

WebauthnCredentialCreateBulk is the builder for creating many WebauthnCredential entities in bulk.

func (*WebauthnCredentialCreateBulk) Exec

Exec executes the query.

func (*WebauthnCredentialCreateBulk) ExecX

func (wccb *WebauthnCredentialCreateBulk) ExecX(ctx context.Context)

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

func (*WebauthnCredentialCreateBulk) Save

Save creates the WebauthnCredential entities in the database.

func (*WebauthnCredentialCreateBulk) SaveX

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

type WebauthnCredentialDelete

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

WebauthnCredentialDelete is the builder for deleting a WebauthnCredential entity.

func (*WebauthnCredentialDelete) Exec

func (wcd *WebauthnCredentialDelete) Exec(ctx context.Context) (int, error)

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

func (*WebauthnCredentialDelete) ExecX

func (wcd *WebauthnCredentialDelete) ExecX(ctx context.Context) int

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

func (*WebauthnCredentialDelete) Where

Where appends a list predicates to the WebauthnCredentialDelete builder.

type WebauthnCredentialDeleteOne

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

WebauthnCredentialDeleteOne is the builder for deleting a single WebauthnCredential entity.

func (*WebauthnCredentialDeleteOne) Exec

Exec executes the deletion query.

func (*WebauthnCredentialDeleteOne) ExecX

func (wcdo *WebauthnCredentialDeleteOne) ExecX(ctx context.Context)

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

type WebauthnCredentialEdges

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

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

func (WebauthnCredentialEdges) UserOrErr

func (e WebauthnCredentialEdges) 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 WebauthnCredentialGroupBy

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

WebauthnCredentialGroupBy is the group-by builder for WebauthnCredential entities.

func (*WebauthnCredentialGroupBy) Aggregate

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

func (*WebauthnCredentialGroupBy) Bool

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

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

func (*WebauthnCredentialGroupBy) BoolX

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

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

func (*WebauthnCredentialGroupBy) Bools

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

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

func (*WebauthnCredentialGroupBy) BoolsX

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

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

func (*WebauthnCredentialGroupBy) Float64

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

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

func (*WebauthnCredentialGroupBy) Float64X

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

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

func (*WebauthnCredentialGroupBy) Float64s

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

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

func (*WebauthnCredentialGroupBy) Float64sX

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

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

func (*WebauthnCredentialGroupBy) Int

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

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

func (*WebauthnCredentialGroupBy) IntX

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

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

func (*WebauthnCredentialGroupBy) Ints

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

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

func (*WebauthnCredentialGroupBy) IntsX

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

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

func (*WebauthnCredentialGroupBy) Scan

func (wcgb *WebauthnCredentialGroupBy) Scan(ctx context.Context, v interface{}) error

Scan applies the group-by query and scans the result into the given value.

func (*WebauthnCredentialGroupBy) ScanX

func (s *WebauthnCredentialGroupBy) ScanX(ctx context.Context, v interface{})

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

func (*WebauthnCredentialGroupBy) String

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

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

func (*WebauthnCredentialGroupBy) StringX

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

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

func (*WebauthnCredentialGroupBy) Strings

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

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

func (*WebauthnCredentialGroupBy) StringsX

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

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

type WebauthnCredentialMutation

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

WebauthnCredentialMutation represents an operation that mutates the WebauthnCredential nodes in the graph.

func (*WebauthnCredentialMutation) AddField

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

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

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

func (*WebauthnCredentialMutation) AddedField

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

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

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

func (*WebauthnCredentialMutation) AddedIDs

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

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

func (*WebauthnCredentialMutation) ClearEdge

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

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

func (m *WebauthnCredentialMutation) ClearUser()

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

func (*WebauthnCredentialMutation) ClearedEdges

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

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

func (*WebauthnCredentialMutation) ClearedFields

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

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

func (WebauthnCredentialMutation) Client

func (m WebauthnCredentialMutation) 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 (*WebauthnCredentialMutation) CreateTime

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

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

func (*WebauthnCredentialMutation) Credential

func (m *WebauthnCredentialMutation) Credential() (r webauthn.Credential, exists bool)

Credential returns the value of the "credential" field in the mutation.

func (*WebauthnCredentialMutation) EdgeCleared

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

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

func (*WebauthnCredentialMutation) Field

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

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

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

func (*WebauthnCredentialMutation) Fields

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

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

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 (*WebauthnCredentialMutation) OldCreateTime

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

OldCreateTime returns the old "create_time" field's value of the WebauthnCredential entity. If the WebauthnCredential 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 (*WebauthnCredentialMutation) OldCredential

func (m *WebauthnCredentialMutation) OldCredential(ctx context.Context) (v webauthn.Credential, err error)

OldCredential returns the old "credential" field's value of the WebauthnCredential entity. If the WebauthnCredential 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 (*WebauthnCredentialMutation) OldField

func (m *WebauthnCredentialMutation) 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 (*WebauthnCredentialMutation) OldUpdateTime

func (m *WebauthnCredentialMutation) OldUpdateTime(ctx context.Context) (v time.Time, err error)

OldUpdateTime returns the old "update_time" field's value of the WebauthnCredential entity. If the WebauthnCredential 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 (*WebauthnCredentialMutation) Op

Op returns the operation name.

func (*WebauthnCredentialMutation) RemovedEdges

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

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

func (*WebauthnCredentialMutation) RemovedIDs

func (m *WebauthnCredentialMutation) 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 (*WebauthnCredentialMutation) ResetCreateTime

func (m *WebauthnCredentialMutation) ResetCreateTime()

ResetCreateTime resets all changes to the "create_time" field.

func (*WebauthnCredentialMutation) ResetCredential

func (m *WebauthnCredentialMutation) ResetCredential()

ResetCredential resets all changes to the "credential" field.

func (*WebauthnCredentialMutation) ResetEdge

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

func (m *WebauthnCredentialMutation) 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 (*WebauthnCredentialMutation) ResetUpdateTime

func (m *WebauthnCredentialMutation) ResetUpdateTime()

ResetUpdateTime resets all changes to the "update_time" field.

func (*WebauthnCredentialMutation) ResetUser

func (m *WebauthnCredentialMutation) ResetUser()

ResetUser resets all changes to the "user" edge.

func (*WebauthnCredentialMutation) SetCreateTime

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

SetCreateTime sets the "create_time" field.

func (*WebauthnCredentialMutation) SetCredential

func (m *WebauthnCredentialMutation) SetCredential(w webauthn.Credential)

SetCredential sets the "credential" field.

func (*WebauthnCredentialMutation) SetField

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

func (m *WebauthnCredentialMutation) SetID(id string)

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

func (*WebauthnCredentialMutation) SetUpdateTime

func (m *WebauthnCredentialMutation) SetUpdateTime(t time.Time)

SetUpdateTime sets the "update_time" field.

func (*WebauthnCredentialMutation) SetUserID

func (m *WebauthnCredentialMutation) SetUserID(id string)

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

func (WebauthnCredentialMutation) Tx

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

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

func (*WebauthnCredentialMutation) Type

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

func (*WebauthnCredentialMutation) UpdateTime

func (m *WebauthnCredentialMutation) UpdateTime() (r time.Time, exists bool)

UpdateTime returns the value of the "update_time" field in the mutation.

func (*WebauthnCredentialMutation) UserCleared

func (m *WebauthnCredentialMutation) UserCleared() bool

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

func (*WebauthnCredentialMutation) UserID

func (m *WebauthnCredentialMutation) UserID() (id string, exists bool)

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

func (*WebauthnCredentialMutation) UserIDs

func (m *WebauthnCredentialMutation) UserIDs() (ids []string)

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

Where appends a list predicates to the WebauthnCredentialMutation builder.

type WebauthnCredentialQuery

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

WebauthnCredentialQuery is the builder for querying WebauthnCredential entities.

func (*WebauthnCredentialQuery) All

All executes the query and returns a list of WebauthnCredentials.

func (*WebauthnCredentialQuery) AllX

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

func (*WebauthnCredentialQuery) Clone

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

func (*WebauthnCredentialQuery) Count

func (wcq *WebauthnCredentialQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*WebauthnCredentialQuery) CountX

func (wcq *WebauthnCredentialQuery) CountX(ctx context.Context) int

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

func (*WebauthnCredentialQuery) Exist

func (wcq *WebauthnCredentialQuery) Exist(ctx context.Context) (bool, error)

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

func (*WebauthnCredentialQuery) ExistX

func (wcq *WebauthnCredentialQuery) ExistX(ctx context.Context) bool

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

func (*WebauthnCredentialQuery) First

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

func (*WebauthnCredentialQuery) FirstID

func (wcq *WebauthnCredentialQuery) FirstID(ctx context.Context) (id string, err error)

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

func (*WebauthnCredentialQuery) FirstIDX

func (wcq *WebauthnCredentialQuery) FirstIDX(ctx context.Context) string

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

func (*WebauthnCredentialQuery) FirstX

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

func (*WebauthnCredentialQuery) GroupBy

func (wcq *WebauthnCredentialQuery) GroupBy(field string, fields ...string) *WebauthnCredentialGroupBy

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

Example:

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

client.WebauthnCredential.Query().
	GroupBy(webauthncredential.FieldCreateTime).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*WebauthnCredentialQuery) IDs

func (wcq *WebauthnCredentialQuery) IDs(ctx context.Context) ([]string, error)

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

func (*WebauthnCredentialQuery) IDsX

func (wcq *WebauthnCredentialQuery) IDsX(ctx context.Context) []string

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

func (*WebauthnCredentialQuery) Limit

Limit adds a limit step to the query.

func (*WebauthnCredentialQuery) Offset

Offset adds an offset step to the query.

func (*WebauthnCredentialQuery) Only

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

func (*WebauthnCredentialQuery) OnlyID

func (wcq *WebauthnCredentialQuery) OnlyID(ctx context.Context) (id string, err error)

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

func (*WebauthnCredentialQuery) OnlyIDX

func (wcq *WebauthnCredentialQuery) OnlyIDX(ctx context.Context) string

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

func (*WebauthnCredentialQuery) OnlyX

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

func (*WebauthnCredentialQuery) Order

Order adds an order step to the query.

func (*WebauthnCredentialQuery) QueryUser

func (wcq *WebauthnCredentialQuery) QueryUser() *UserQuery

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

func (*WebauthnCredentialQuery) Select

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

Example:

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

client.WebauthnCredential.Query().
	Select(webauthncredential.FieldCreateTime).
	Scan(ctx, &v)

func (*WebauthnCredentialQuery) Unique

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

Where adds a new predicate for the WebauthnCredentialQuery builder.

func (*WebauthnCredentialQuery) WithUser

func (wcq *WebauthnCredentialQuery) WithUser(opts ...func(*UserQuery)) *WebauthnCredentialQuery

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 WebauthnCredentialSelect

type WebauthnCredentialSelect struct {
	*WebauthnCredentialQuery
	// contains filtered or unexported fields
}

WebauthnCredentialSelect is the builder for selecting fields of WebauthnCredential entities.

func (*WebauthnCredentialSelect) Bool

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

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

func (*WebauthnCredentialSelect) BoolX

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

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

func (*WebauthnCredentialSelect) Bools

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

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

func (*WebauthnCredentialSelect) BoolsX

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

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

func (*WebauthnCredentialSelect) Float64

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

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

func (*WebauthnCredentialSelect) Float64X

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

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

func (*WebauthnCredentialSelect) Float64s

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

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

func (*WebauthnCredentialSelect) Float64sX

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

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

func (*WebauthnCredentialSelect) Int

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

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

func (*WebauthnCredentialSelect) IntX

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

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

func (*WebauthnCredentialSelect) Ints

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

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

func (*WebauthnCredentialSelect) IntsX

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

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

func (*WebauthnCredentialSelect) Scan

func (wcs *WebauthnCredentialSelect) Scan(ctx context.Context, v interface{}) error

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

func (*WebauthnCredentialSelect) ScanX

func (s *WebauthnCredentialSelect) ScanX(ctx context.Context, v interface{})

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

func (*WebauthnCredentialSelect) String

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

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

func (*WebauthnCredentialSelect) StringX

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

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

func (*WebauthnCredentialSelect) Strings

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

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

func (*WebauthnCredentialSelect) StringsX

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

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

type WebauthnCredentialUpdate

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

WebauthnCredentialUpdate is the builder for updating WebauthnCredential entities.

func (*WebauthnCredentialUpdate) ClearUser

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

func (*WebauthnCredentialUpdate) Exec

Exec executes the query.

func (*WebauthnCredentialUpdate) ExecX

func (wcu *WebauthnCredentialUpdate) ExecX(ctx context.Context)

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

func (*WebauthnCredentialUpdate) Mutation

Mutation returns the WebauthnCredentialMutation object of the builder.

func (*WebauthnCredentialUpdate) Save

func (wcu *WebauthnCredentialUpdate) Save(ctx context.Context) (int, error)

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

func (*WebauthnCredentialUpdate) SaveX

func (wcu *WebauthnCredentialUpdate) SaveX(ctx context.Context) int

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

func (*WebauthnCredentialUpdate) SetCredential

SetCredential sets the "credential" field.

func (*WebauthnCredentialUpdate) SetUpdateTime

SetUpdateTime sets the "update_time" field.

func (*WebauthnCredentialUpdate) SetUser

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

func (*WebauthnCredentialUpdate) SetUserID

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

func (*WebauthnCredentialUpdate) Where

Where appends a list predicates to the WebauthnCredentialUpdate builder.

type WebauthnCredentialUpdateOne

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

WebauthnCredentialUpdateOne is the builder for updating a single WebauthnCredential entity.

func (*WebauthnCredentialUpdateOne) ClearUser

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

func (*WebauthnCredentialUpdateOne) Exec

Exec executes the query on the entity.

func (*WebauthnCredentialUpdateOne) ExecX

func (wcuo *WebauthnCredentialUpdateOne) ExecX(ctx context.Context)

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

func (*WebauthnCredentialUpdateOne) Mutation

Mutation returns the WebauthnCredentialMutation object of the builder.

func (*WebauthnCredentialUpdateOne) Save

Save executes the query and returns the updated WebauthnCredential entity.

func (*WebauthnCredentialUpdateOne) SaveX

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

func (*WebauthnCredentialUpdateOne) Select

func (wcuo *WebauthnCredentialUpdateOne) Select(field string, fields ...string) *WebauthnCredentialUpdateOne

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

func (*WebauthnCredentialUpdateOne) SetCredential

SetCredential sets the "credential" field.

func (*WebauthnCredentialUpdateOne) SetUpdateTime

SetUpdateTime sets the "update_time" field.

func (*WebauthnCredentialUpdateOne) SetUser

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

func (*WebauthnCredentialUpdateOne) SetUserID

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

type WebauthnCredentials

type WebauthnCredentials []*WebauthnCredential

WebauthnCredentials is a parsable slice of WebauthnCredential.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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