ent

package
v0.0.0-...-3ebf473 Latest Latest
Warning

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

Go to latest
Published: Apr 4, 2023 License: Apache-2.0 Imports: 24 Imported by: 4

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.
	TypeCredential    = "Credential"
	TypeDID           = "DID"
	TypeNaturalPerson = "NaturalPerson"
	TypePrivateKey    = "PrivateKey"
	TypePublicKey     = "PublicKey"
	TypeUser          = "User"
)

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
	// Credential is the client for interacting with the Credential builders.
	Credential *CredentialClient
	// DID is the client for interacting with the DID builders.
	DID *DIDClient
	// NaturalPerson is the client for interacting with the NaturalPerson builders.
	NaturalPerson *NaturalPersonClient
	// PrivateKey is the client for interacting with the PrivateKey builders.
	PrivateKey *PrivateKeyClient
	// PublicKey is the client for interacting with the PublicKey builders.
	PublicKey *PublicKeyClient
	// 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().
	Credential.
	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 Credential

type Credential struct {

	// ID of the ent.
	ID string `json:"id,omitempty"`
	// Type holds the value of the "type" field.
	Type string `json:"type,omitempty"`
	// Raw holds the value of the "raw" field.
	Raw []uint8 `json:"raw,omitempty"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// UpdatedAt holds the value of the "updated_at" field.
	UpdatedAt time.Time `json:"updated_at,omitempty"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the CredentialQuery when eager-loading is set.
	Edges CredentialEdges `json:"edges"`
	// contains filtered or unexported fields
}

Credential is the model entity for the Credential schema.

func (*Credential) QueryAccount

func (c *Credential) QueryAccount() *UserQuery

QueryAccount queries the "account" edge of the Credential entity.

func (*Credential) String

func (c *Credential) String() string

String implements the fmt.Stringer.

func (*Credential) Unwrap

func (c *Credential) Unwrap() *Credential

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

func (c *Credential) Update() *CredentialUpdateOne

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

type CredentialClient

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

CredentialClient is a client for the Credential schema.

func NewCredentialClient

func NewCredentialClient(c config) *CredentialClient

NewCredentialClient returns a client for the Credential from the given config.

func (*CredentialClient) Create

func (c *CredentialClient) Create() *CredentialCreate

Create returns a builder for creating a Credential entity.

func (*CredentialClient) CreateBulk

func (c *CredentialClient) CreateBulk(builders ...*CredentialCreate) *CredentialCreateBulk

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

func (*CredentialClient) Delete

func (c *CredentialClient) Delete() *CredentialDelete

Delete returns a delete builder for Credential.

func (*CredentialClient) DeleteOne

func (c *CredentialClient) DeleteOne(cr *Credential) *CredentialDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*CredentialClient) DeleteOneID

func (c *CredentialClient) DeleteOneID(id string) *CredentialDeleteOne

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

func (*CredentialClient) Get

func (c *CredentialClient) Get(ctx context.Context, id string) (*Credential, error)

Get returns a Credential entity by its id.

func (*CredentialClient) GetX

func (c *CredentialClient) GetX(ctx context.Context, id string) *Credential

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

func (*CredentialClient) Hooks

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

Hooks returns the client hooks.

func (*CredentialClient) Query

func (c *CredentialClient) Query() *CredentialQuery

Query returns a query builder for Credential.

func (*CredentialClient) QueryAccount

func (c *CredentialClient) QueryAccount(cr *Credential) *UserQuery

QueryAccount queries the account edge of a Credential.

func (*CredentialClient) Update

func (c *CredentialClient) Update() *CredentialUpdate

Update returns an update builder for Credential.

func (*CredentialClient) UpdateOne

func (c *CredentialClient) UpdateOne(cr *Credential) *CredentialUpdateOne

UpdateOne returns an update builder for the given entity.

func (*CredentialClient) UpdateOneID

func (c *CredentialClient) UpdateOneID(id string) *CredentialUpdateOne

UpdateOneID returns an update builder for the given id.

func (*CredentialClient) Use

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

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

type CredentialCreate

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

CredentialCreate is the builder for creating a Credential entity.

func (*CredentialCreate) Exec

func (cc *CredentialCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*CredentialCreate) ExecX

func (cc *CredentialCreate) ExecX(ctx context.Context)

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

func (*CredentialCreate) Mutation

func (cc *CredentialCreate) Mutation() *CredentialMutation

Mutation returns the CredentialMutation object of the builder.

func (*CredentialCreate) Save

func (cc *CredentialCreate) Save(ctx context.Context) (*Credential, error)

Save creates the Credential in the database.

func (*CredentialCreate) SaveX

func (cc *CredentialCreate) SaveX(ctx context.Context) *Credential

SaveX calls Save and panics if Save returns an error.

func (*CredentialCreate) SetAccount

func (cc *CredentialCreate) SetAccount(u *User) *CredentialCreate

SetAccount sets the "account" edge to the User entity.

func (*CredentialCreate) SetAccountID

func (cc *CredentialCreate) SetAccountID(id string) *CredentialCreate

SetAccountID sets the "account" edge to the User entity by ID.

func (*CredentialCreate) SetCreatedAt

func (cc *CredentialCreate) SetCreatedAt(t time.Time) *CredentialCreate

SetCreatedAt sets the "created_at" field.

func (*CredentialCreate) SetID

SetID sets the "id" field.

func (*CredentialCreate) SetNillableAccountID

func (cc *CredentialCreate) SetNillableAccountID(id *string) *CredentialCreate

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

func (*CredentialCreate) SetNillableCreatedAt

func (cc *CredentialCreate) SetNillableCreatedAt(t *time.Time) *CredentialCreate

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

func (*CredentialCreate) SetNillableType

func (cc *CredentialCreate) SetNillableType(s *string) *CredentialCreate

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

func (*CredentialCreate) SetNillableUpdatedAt

func (cc *CredentialCreate) SetNillableUpdatedAt(t *time.Time) *CredentialCreate

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

func (*CredentialCreate) SetRaw

func (cc *CredentialCreate) SetRaw(u []uint8) *CredentialCreate

SetRaw sets the "raw" field.

func (*CredentialCreate) SetType

func (cc *CredentialCreate) SetType(s string) *CredentialCreate

SetType sets the "type" field.

func (*CredentialCreate) SetUpdatedAt

func (cc *CredentialCreate) SetUpdatedAt(t time.Time) *CredentialCreate

SetUpdatedAt sets the "updated_at" field.

type CredentialCreateBulk

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

CredentialCreateBulk is the builder for creating many Credential entities in bulk.

func (*CredentialCreateBulk) Exec

func (ccb *CredentialCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*CredentialCreateBulk) ExecX

func (ccb *CredentialCreateBulk) ExecX(ctx context.Context)

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

func (*CredentialCreateBulk) Save

func (ccb *CredentialCreateBulk) Save(ctx context.Context) ([]*Credential, error)

Save creates the Credential entities in the database.

func (*CredentialCreateBulk) SaveX

func (ccb *CredentialCreateBulk) SaveX(ctx context.Context) []*Credential

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

type CredentialDelete

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

CredentialDelete is the builder for deleting a Credential entity.

func (*CredentialDelete) Exec

func (cd *CredentialDelete) Exec(ctx context.Context) (int, error)

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

func (*CredentialDelete) ExecX

func (cd *CredentialDelete) ExecX(ctx context.Context) int

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

func (*CredentialDelete) Where

Where appends a list predicates to the CredentialDelete builder.

type CredentialDeleteOne

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

CredentialDeleteOne is the builder for deleting a single Credential entity.

func (*CredentialDeleteOne) Exec

func (cdo *CredentialDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*CredentialDeleteOne) ExecX

func (cdo *CredentialDeleteOne) ExecX(ctx context.Context)

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

type CredentialEdges

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

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

func (CredentialEdges) AccountOrErr

func (e CredentialEdges) AccountOrErr() (*User, error)

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

type CredentialGroupBy

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

CredentialGroupBy is the group-by builder for Credential entities.

func (*CredentialGroupBy) Aggregate

func (cgb *CredentialGroupBy) Aggregate(fns ...AggregateFunc) *CredentialGroupBy

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

func (*CredentialGroupBy) Bool

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

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

func (*CredentialGroupBy) BoolX

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

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

func (*CredentialGroupBy) Bools

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

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

func (*CredentialGroupBy) BoolsX

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

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

func (*CredentialGroupBy) Float64

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

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

func (*CredentialGroupBy) Float64X

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

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

func (*CredentialGroupBy) Float64s

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

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

func (*CredentialGroupBy) Float64sX

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

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

func (*CredentialGroupBy) Int

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

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

func (*CredentialGroupBy) IntX

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

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

func (*CredentialGroupBy) Ints

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

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

func (*CredentialGroupBy) IntsX

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

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

func (*CredentialGroupBy) Scan

func (cgb *CredentialGroupBy) Scan(ctx context.Context, v interface{}) error

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

func (*CredentialGroupBy) ScanX

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

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

func (*CredentialGroupBy) String

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

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

func (*CredentialGroupBy) StringX

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

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

func (*CredentialGroupBy) Strings

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

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

func (*CredentialGroupBy) StringsX

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

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

type CredentialMutation

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

CredentialMutation represents an operation that mutates the Credential nodes in the graph.

func (*CredentialMutation) AccountCleared

func (m *CredentialMutation) AccountCleared() bool

AccountCleared reports if the "account" edge to the User entity was cleared.

func (*CredentialMutation) AccountID

func (m *CredentialMutation) AccountID() (id string, exists bool)

AccountID returns the "account" edge ID in the mutation.

func (*CredentialMutation) AccountIDs

func (m *CredentialMutation) AccountIDs() (ids []string)

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

func (*CredentialMutation) AddField

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

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

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

func (*CredentialMutation) AddedField

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

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

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

func (*CredentialMutation) AddedIDs

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

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

func (*CredentialMutation) ClearAccount

func (m *CredentialMutation) ClearAccount()

ClearAccount clears the "account" edge to the User entity.

func (*CredentialMutation) ClearEdge

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

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

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

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

func (*CredentialMutation) ClearedFields

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

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

func (CredentialMutation) Client

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

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

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

func (*CredentialMutation) EdgeCleared

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

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

func (*CredentialMutation) Field

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

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

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

func (*CredentialMutation) Fields

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

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

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

func (*CredentialMutation) ID

func (m *CredentialMutation) 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 (*CredentialMutation) IDs

func (m *CredentialMutation) 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 (*CredentialMutation) OldCreatedAt

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

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

func (m *CredentialMutation) 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 (*CredentialMutation) OldRaw

func (m *CredentialMutation) OldRaw(ctx context.Context) (v []uint8, err error)

OldRaw returns the old "raw" field's value of the Credential entity. If the Credential 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 (*CredentialMutation) OldType

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

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

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

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

func (m *CredentialMutation) Op() Op

Op returns the operation name.

func (*CredentialMutation) Raw

func (m *CredentialMutation) Raw() (r []uint8, exists bool)

Raw returns the value of the "raw" field in the mutation.

func (*CredentialMutation) RemovedEdges

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

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

func (*CredentialMutation) RemovedIDs

func (m *CredentialMutation) 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 (*CredentialMutation) ResetAccount

func (m *CredentialMutation) ResetAccount()

ResetAccount resets all changes to the "account" edge.

func (*CredentialMutation) ResetCreatedAt

func (m *CredentialMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*CredentialMutation) ResetEdge

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

func (m *CredentialMutation) 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 (*CredentialMutation) ResetRaw

func (m *CredentialMutation) ResetRaw()

ResetRaw resets all changes to the "raw" field.

func (*CredentialMutation) ResetType

func (m *CredentialMutation) ResetType()

ResetType resets all changes to the "type" field.

func (*CredentialMutation) ResetUpdatedAt

func (m *CredentialMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*CredentialMutation) SetAccountID

func (m *CredentialMutation) SetAccountID(id string)

SetAccountID sets the "account" edge to the User entity by id.

func (*CredentialMutation) SetCreatedAt

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

SetCreatedAt sets the "created_at" field.

func (*CredentialMutation) SetField

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

func (m *CredentialMutation) SetID(id string)

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

func (*CredentialMutation) SetRaw

func (m *CredentialMutation) SetRaw(u []uint8)

SetRaw sets the "raw" field.

func (*CredentialMutation) SetType

func (m *CredentialMutation) SetType(s string)

SetType sets the "type" field.

func (*CredentialMutation) SetUpdatedAt

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

SetUpdatedAt sets the "updated_at" field.

func (CredentialMutation) Tx

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

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

func (*CredentialMutation) Type

func (m *CredentialMutation) Type() string

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

func (*CredentialMutation) UpdatedAt

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

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

func (*CredentialMutation) Where

func (m *CredentialMutation) Where(ps ...predicate.Credential)

Where appends a list predicates to the CredentialMutation builder.

type CredentialQuery

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

CredentialQuery is the builder for querying Credential entities.

func (*CredentialQuery) All

func (cq *CredentialQuery) All(ctx context.Context) ([]*Credential, error)

All executes the query and returns a list of Credentials.

func (*CredentialQuery) AllX

func (cq *CredentialQuery) AllX(ctx context.Context) []*Credential

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

func (*CredentialQuery) Clone

func (cq *CredentialQuery) Clone() *CredentialQuery

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

func (*CredentialQuery) Count

func (cq *CredentialQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*CredentialQuery) CountX

func (cq *CredentialQuery) CountX(ctx context.Context) int

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

func (*CredentialQuery) Exist

func (cq *CredentialQuery) Exist(ctx context.Context) (bool, error)

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

func (*CredentialQuery) ExistX

func (cq *CredentialQuery) ExistX(ctx context.Context) bool

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

func (*CredentialQuery) First

func (cq *CredentialQuery) First(ctx context.Context) (*Credential, error)

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

func (*CredentialQuery) FirstID

func (cq *CredentialQuery) FirstID(ctx context.Context) (id string, err error)

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

func (*CredentialQuery) FirstIDX

func (cq *CredentialQuery) FirstIDX(ctx context.Context) string

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

func (*CredentialQuery) FirstX

func (cq *CredentialQuery) FirstX(ctx context.Context) *Credential

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

func (*CredentialQuery) GroupBy

func (cq *CredentialQuery) GroupBy(field string, fields ...string) *CredentialGroupBy

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 {
	Type string `json:"type,omitempty"`
	Count int `json:"count,omitempty"`
}

client.Credential.Query().
	GroupBy(credential.FieldType).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*CredentialQuery) IDs

func (cq *CredentialQuery) IDs(ctx context.Context) ([]string, error)

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

func (*CredentialQuery) IDsX

func (cq *CredentialQuery) IDsX(ctx context.Context) []string

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

func (*CredentialQuery) Limit

func (cq *CredentialQuery) Limit(limit int) *CredentialQuery

Limit adds a limit step to the query.

func (*CredentialQuery) Offset

func (cq *CredentialQuery) Offset(offset int) *CredentialQuery

Offset adds an offset step to the query.

func (*CredentialQuery) Only

func (cq *CredentialQuery) Only(ctx context.Context) (*Credential, error)

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

func (*CredentialQuery) OnlyID

func (cq *CredentialQuery) OnlyID(ctx context.Context) (id string, err error)

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

func (*CredentialQuery) OnlyIDX

func (cq *CredentialQuery) OnlyIDX(ctx context.Context) string

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

func (*CredentialQuery) OnlyX

func (cq *CredentialQuery) OnlyX(ctx context.Context) *Credential

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

func (*CredentialQuery) Order

func (cq *CredentialQuery) Order(o ...OrderFunc) *CredentialQuery

Order adds an order step to the query.

func (*CredentialQuery) QueryAccount

func (cq *CredentialQuery) QueryAccount() *UserQuery

QueryAccount chains the current query on the "account" edge.

func (*CredentialQuery) Select

func (cq *CredentialQuery) Select(fields ...string) *CredentialSelect

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 {
	Type string `json:"type,omitempty"`
}

client.Credential.Query().
	Select(credential.FieldType).
	Scan(ctx, &v)

func (*CredentialQuery) Unique

func (cq *CredentialQuery) Unique(unique bool) *CredentialQuery

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

Where adds a new predicate for the CredentialQuery builder.

func (*CredentialQuery) WithAccount

func (cq *CredentialQuery) WithAccount(opts ...func(*UserQuery)) *CredentialQuery

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

type CredentialSelect

type CredentialSelect struct {
	*CredentialQuery
	// contains filtered or unexported fields
}

CredentialSelect is the builder for selecting fields of Credential entities.

func (*CredentialSelect) Bool

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

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

func (*CredentialSelect) BoolX

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

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

func (*CredentialSelect) Bools

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

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

func (*CredentialSelect) BoolsX

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

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

func (*CredentialSelect) Float64

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

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

func (*CredentialSelect) Float64X

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

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

func (*CredentialSelect) Float64s

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

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

func (*CredentialSelect) Float64sX

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

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

func (*CredentialSelect) Int

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

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

func (*CredentialSelect) IntX

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

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

func (*CredentialSelect) Ints

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

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

func (*CredentialSelect) IntsX

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

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

func (*CredentialSelect) Scan

func (cs *CredentialSelect) Scan(ctx context.Context, v interface{}) error

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

func (*CredentialSelect) ScanX

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

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

func (*CredentialSelect) String

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

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

func (*CredentialSelect) StringX

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

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

func (*CredentialSelect) Strings

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

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

func (*CredentialSelect) StringsX

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

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

type CredentialUpdate

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

CredentialUpdate is the builder for updating Credential entities.

func (*CredentialUpdate) ClearAccount

func (cu *CredentialUpdate) ClearAccount() *CredentialUpdate

ClearAccount clears the "account" edge to the User entity.

func (*CredentialUpdate) Exec

func (cu *CredentialUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*CredentialUpdate) ExecX

func (cu *CredentialUpdate) ExecX(ctx context.Context)

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

func (*CredentialUpdate) Mutation

func (cu *CredentialUpdate) Mutation() *CredentialMutation

Mutation returns the CredentialMutation object of the builder.

func (*CredentialUpdate) Save

func (cu *CredentialUpdate) Save(ctx context.Context) (int, error)

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

func (*CredentialUpdate) SaveX

func (cu *CredentialUpdate) SaveX(ctx context.Context) int

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

func (*CredentialUpdate) SetAccount

func (cu *CredentialUpdate) SetAccount(u *User) *CredentialUpdate

SetAccount sets the "account" edge to the User entity.

func (*CredentialUpdate) SetAccountID

func (cu *CredentialUpdate) SetAccountID(id string) *CredentialUpdate

SetAccountID sets the "account" edge to the User entity by ID.

func (*CredentialUpdate) SetNillableAccountID

func (cu *CredentialUpdate) SetNillableAccountID(id *string) *CredentialUpdate

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

func (*CredentialUpdate) SetNillableType

func (cu *CredentialUpdate) SetNillableType(s *string) *CredentialUpdate

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

func (*CredentialUpdate) SetNillableUpdatedAt

func (cu *CredentialUpdate) SetNillableUpdatedAt(t *time.Time) *CredentialUpdate

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

func (*CredentialUpdate) SetRaw

func (cu *CredentialUpdate) SetRaw(u []uint8) *CredentialUpdate

SetRaw sets the "raw" field.

func (*CredentialUpdate) SetType

func (cu *CredentialUpdate) SetType(s string) *CredentialUpdate

SetType sets the "type" field.

func (*CredentialUpdate) SetUpdatedAt

func (cu *CredentialUpdate) SetUpdatedAt(t time.Time) *CredentialUpdate

SetUpdatedAt sets the "updated_at" field.

func (*CredentialUpdate) Where

Where appends a list predicates to the CredentialUpdate builder.

type CredentialUpdateOne

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

CredentialUpdateOne is the builder for updating a single Credential entity.

func (*CredentialUpdateOne) ClearAccount

func (cuo *CredentialUpdateOne) ClearAccount() *CredentialUpdateOne

ClearAccount clears the "account" edge to the User entity.

func (*CredentialUpdateOne) Exec

func (cuo *CredentialUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*CredentialUpdateOne) ExecX

func (cuo *CredentialUpdateOne) ExecX(ctx context.Context)

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

func (*CredentialUpdateOne) Mutation

func (cuo *CredentialUpdateOne) Mutation() *CredentialMutation

Mutation returns the CredentialMutation object of the builder.

func (*CredentialUpdateOne) Save

func (cuo *CredentialUpdateOne) Save(ctx context.Context) (*Credential, error)

Save executes the query and returns the updated Credential entity.

func (*CredentialUpdateOne) SaveX

func (cuo *CredentialUpdateOne) SaveX(ctx context.Context) *Credential

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

func (*CredentialUpdateOne) Select

func (cuo *CredentialUpdateOne) Select(field string, fields ...string) *CredentialUpdateOne

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

func (*CredentialUpdateOne) SetAccount

func (cuo *CredentialUpdateOne) SetAccount(u *User) *CredentialUpdateOne

SetAccount sets the "account" edge to the User entity.

func (*CredentialUpdateOne) SetAccountID

func (cuo *CredentialUpdateOne) SetAccountID(id string) *CredentialUpdateOne

SetAccountID sets the "account" edge to the User entity by ID.

func (*CredentialUpdateOne) SetNillableAccountID

func (cuo *CredentialUpdateOne) SetNillableAccountID(id *string) *CredentialUpdateOne

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

func (*CredentialUpdateOne) SetNillableType

func (cuo *CredentialUpdateOne) SetNillableType(s *string) *CredentialUpdateOne

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

func (*CredentialUpdateOne) SetNillableUpdatedAt

func (cuo *CredentialUpdateOne) SetNillableUpdatedAt(t *time.Time) *CredentialUpdateOne

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

func (*CredentialUpdateOne) SetRaw

func (cuo *CredentialUpdateOne) SetRaw(u []uint8) *CredentialUpdateOne

SetRaw sets the "raw" field.

func (*CredentialUpdateOne) SetType

SetType sets the "type" field.

func (*CredentialUpdateOne) SetUpdatedAt

func (cuo *CredentialUpdateOne) SetUpdatedAt(t time.Time) *CredentialUpdateOne

SetUpdatedAt sets the "updated_at" field.

type Credentials

type Credentials []*Credential

Credentials is a parsable slice of Credential.

type DID

type DID struct {

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

DID is the model entity for the DID schema.

func (*DID) QueryUser

func (d *DID) QueryUser() *UserQuery

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

func (*DID) String

func (d *DID) String() string

String implements the fmt.Stringer.

func (*DID) Unwrap

func (d *DID) Unwrap() *DID

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

func (d *DID) Update() *DIDUpdateOne

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

type DIDClient

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

DIDClient is a client for the DID schema.

func NewDIDClient

func NewDIDClient(c config) *DIDClient

NewDIDClient returns a client for the DID from the given config.

func (*DIDClient) Create

func (c *DIDClient) Create() *DIDCreate

Create returns a builder for creating a DID entity.

func (*DIDClient) CreateBulk

func (c *DIDClient) CreateBulk(builders ...*DIDCreate) *DIDCreateBulk

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

func (*DIDClient) Delete

func (c *DIDClient) Delete() *DIDDelete

Delete returns a delete builder for DID.

func (*DIDClient) DeleteOne

func (c *DIDClient) DeleteOne(d *DID) *DIDDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*DIDClient) DeleteOneID

func (c *DIDClient) DeleteOneID(id string) *DIDDeleteOne

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

func (*DIDClient) Get

func (c *DIDClient) Get(ctx context.Context, id string) (*DID, error)

Get returns a DID entity by its id.

func (*DIDClient) GetX

func (c *DIDClient) GetX(ctx context.Context, id string) *DID

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

func (*DIDClient) Hooks

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

Hooks returns the client hooks.

func (*DIDClient) Query

func (c *DIDClient) Query() *DIDQuery

Query returns a query builder for DID.

func (*DIDClient) QueryUser

func (c *DIDClient) QueryUser(d *DID) *UserQuery

QueryUser queries the user edge of a DID.

func (*DIDClient) Update

func (c *DIDClient) Update() *DIDUpdate

Update returns an update builder for DID.

func (*DIDClient) UpdateOne

func (c *DIDClient) UpdateOne(d *DID) *DIDUpdateOne

UpdateOne returns an update builder for the given entity.

func (*DIDClient) UpdateOneID

func (c *DIDClient) UpdateOneID(id string) *DIDUpdateOne

UpdateOneID returns an update builder for the given id.

func (*DIDClient) Use

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

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

type DIDCreate

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

DIDCreate is the builder for creating a DID entity.

func (*DIDCreate) Exec

func (dc *DIDCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*DIDCreate) ExecX

func (dc *DIDCreate) ExecX(ctx context.Context)

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

func (*DIDCreate) Mutation

func (dc *DIDCreate) Mutation() *DIDMutation

Mutation returns the DIDMutation object of the builder.

func (*DIDCreate) Save

func (dc *DIDCreate) Save(ctx context.Context) (*DID, error)

Save creates the DID in the database.

func (*DIDCreate) SaveX

func (dc *DIDCreate) SaveX(ctx context.Context) *DID

SaveX calls Save and panics if Save returns an error.

func (*DIDCreate) SetCreatedAt

func (dc *DIDCreate) SetCreatedAt(t time.Time) *DIDCreate

SetCreatedAt sets the "created_at" field.

func (*DIDCreate) SetID

func (dc *DIDCreate) SetID(s string) *DIDCreate

SetID sets the "id" field.

func (*DIDCreate) SetMethod

func (dc *DIDCreate) SetMethod(s string) *DIDCreate

SetMethod sets the "method" field.

func (*DIDCreate) SetNillableCreatedAt

func (dc *DIDCreate) SetNillableCreatedAt(t *time.Time) *DIDCreate

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

func (*DIDCreate) SetNillableMethod

func (dc *DIDCreate) SetNillableMethod(s *string) *DIDCreate

SetNillableMethod sets the "method" field if the given value is not nil.

func (*DIDCreate) SetNillableUpdatedAt

func (dc *DIDCreate) SetNillableUpdatedAt(t *time.Time) *DIDCreate

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

func (*DIDCreate) SetNillableUserID

func (dc *DIDCreate) SetNillableUserID(id *string) *DIDCreate

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

func (*DIDCreate) SetUpdatedAt

func (dc *DIDCreate) SetUpdatedAt(t time.Time) *DIDCreate

SetUpdatedAt sets the "updated_at" field.

func (*DIDCreate) SetUser

func (dc *DIDCreate) SetUser(u *User) *DIDCreate

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

func (*DIDCreate) SetUserID

func (dc *DIDCreate) SetUserID(id string) *DIDCreate

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

type DIDCreateBulk

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

DIDCreateBulk is the builder for creating many DID entities in bulk.

func (*DIDCreateBulk) Exec

func (dcb *DIDCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*DIDCreateBulk) ExecX

func (dcb *DIDCreateBulk) ExecX(ctx context.Context)

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

func (*DIDCreateBulk) Save

func (dcb *DIDCreateBulk) Save(ctx context.Context) ([]*DID, error)

Save creates the DID entities in the database.

func (*DIDCreateBulk) SaveX

func (dcb *DIDCreateBulk) SaveX(ctx context.Context) []*DID

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

type DIDDelete

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

DIDDelete is the builder for deleting a DID entity.

func (*DIDDelete) Exec

func (dd *DIDDelete) Exec(ctx context.Context) (int, error)

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

func (*DIDDelete) ExecX

func (dd *DIDDelete) ExecX(ctx context.Context) int

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

func (*DIDDelete) Where

func (dd *DIDDelete) Where(ps ...predicate.DID) *DIDDelete

Where appends a list predicates to the DIDDelete builder.

type DIDDeleteOne

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

DIDDeleteOne is the builder for deleting a single DID entity.

func (*DIDDeleteOne) Exec

func (ddo *DIDDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*DIDDeleteOne) ExecX

func (ddo *DIDDeleteOne) ExecX(ctx context.Context)

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

type DIDEdges

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

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

func (DIDEdges) UserOrErr

func (e DIDEdges) 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 DIDGroupBy

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

DIDGroupBy is the group-by builder for DID entities.

func (*DIDGroupBy) Aggregate

func (dgb *DIDGroupBy) Aggregate(fns ...AggregateFunc) *DIDGroupBy

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

func (*DIDGroupBy) Bool

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

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

func (*DIDGroupBy) BoolX

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

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

func (*DIDGroupBy) Bools

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

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

func (*DIDGroupBy) BoolsX

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

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

func (*DIDGroupBy) Float64

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

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

func (*DIDGroupBy) Float64X

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

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

func (*DIDGroupBy) Float64s

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

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

func (*DIDGroupBy) Float64sX

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

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

func (*DIDGroupBy) Int

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

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

func (*DIDGroupBy) IntX

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

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

func (*DIDGroupBy) Ints

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

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

func (*DIDGroupBy) IntsX

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

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

func (*DIDGroupBy) Scan

func (dgb *DIDGroupBy) Scan(ctx context.Context, v interface{}) error

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

func (*DIDGroupBy) ScanX

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

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

func (*DIDGroupBy) String

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

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

func (*DIDGroupBy) StringX

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

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

func (*DIDGroupBy) Strings

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

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

func (*DIDGroupBy) StringsX

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

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

type DIDMutation

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

DIDMutation represents an operation that mutates the DID nodes in the graph.

func (*DIDMutation) AddField

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

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

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

func (*DIDMutation) AddedField

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

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

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

func (*DIDMutation) AddedIDs

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

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

func (*DIDMutation) ClearEdge

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

func (m *DIDMutation) 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 (*DIDMutation) ClearMethod

func (m *DIDMutation) ClearMethod()

ClearMethod clears the value of the "method" field.

func (*DIDMutation) ClearUser

func (m *DIDMutation) ClearUser()

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

func (*DIDMutation) ClearedEdges

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

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

func (*DIDMutation) ClearedFields

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

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

func (DIDMutation) Client

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

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

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

func (*DIDMutation) EdgeCleared

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

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

func (*DIDMutation) Field

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

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

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

func (*DIDMutation) Fields

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

func (m *DIDMutation) 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 (*DIDMutation) IDs

func (m *DIDMutation) 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 (*DIDMutation) Method

func (m *DIDMutation) Method() (r string, exists bool)

Method returns the value of the "method" field in the mutation.

func (*DIDMutation) MethodCleared

func (m *DIDMutation) MethodCleared() bool

MethodCleared returns if the "method" field was cleared in this mutation.

func (*DIDMutation) OldCreatedAt

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

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

func (m *DIDMutation) 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 (*DIDMutation) OldMethod

func (m *DIDMutation) OldMethod(ctx context.Context) (v string, err error)

OldMethod returns the old "method" field's value of the DID entity. If the DID 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 (*DIDMutation) OldUpdatedAt

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

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

func (m *DIDMutation) Op() Op

Op returns the operation name.

func (*DIDMutation) RemovedEdges

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

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

func (*DIDMutation) RemovedIDs

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

func (m *DIDMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*DIDMutation) ResetEdge

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

func (m *DIDMutation) 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 (*DIDMutation) ResetMethod

func (m *DIDMutation) ResetMethod()

ResetMethod resets all changes to the "method" field.

func (*DIDMutation) ResetUpdatedAt

func (m *DIDMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*DIDMutation) ResetUser

func (m *DIDMutation) ResetUser()

ResetUser resets all changes to the "user" edge.

func (*DIDMutation) SetCreatedAt

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

SetCreatedAt sets the "created_at" field.

func (*DIDMutation) SetField

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

func (m *DIDMutation) SetID(id string)

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

func (*DIDMutation) SetMethod

func (m *DIDMutation) SetMethod(s string)

SetMethod sets the "method" field.

func (*DIDMutation) SetUpdatedAt

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

SetUpdatedAt sets the "updated_at" field.

func (*DIDMutation) SetUserID

func (m *DIDMutation) SetUserID(id string)

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

func (DIDMutation) Tx

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

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

func (*DIDMutation) Type

func (m *DIDMutation) Type() string

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

func (*DIDMutation) UpdatedAt

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

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

func (*DIDMutation) UserCleared

func (m *DIDMutation) UserCleared() bool

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

func (*DIDMutation) UserID

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

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

func (*DIDMutation) UserIDs

func (m *DIDMutation) 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 (*DIDMutation) Where

func (m *DIDMutation) Where(ps ...predicate.DID)

Where appends a list predicates to the DIDMutation builder.

type DIDQuery

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

DIDQuery is the builder for querying DID entities.

func (*DIDQuery) All

func (dq *DIDQuery) All(ctx context.Context) ([]*DID, error)

All executes the query and returns a list of DIDs.

func (*DIDQuery) AllX

func (dq *DIDQuery) AllX(ctx context.Context) []*DID

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

func (*DIDQuery) Clone

func (dq *DIDQuery) Clone() *DIDQuery

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

func (*DIDQuery) Count

func (dq *DIDQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*DIDQuery) CountX

func (dq *DIDQuery) CountX(ctx context.Context) int

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

func (*DIDQuery) Exist

func (dq *DIDQuery) Exist(ctx context.Context) (bool, error)

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

func (*DIDQuery) ExistX

func (dq *DIDQuery) ExistX(ctx context.Context) bool

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

func (*DIDQuery) First

func (dq *DIDQuery) First(ctx context.Context) (*DID, error)

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

func (*DIDQuery) FirstID

func (dq *DIDQuery) FirstID(ctx context.Context) (id string, err error)

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

func (*DIDQuery) FirstIDX

func (dq *DIDQuery) FirstIDX(ctx context.Context) string

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

func (*DIDQuery) FirstX

func (dq *DIDQuery) FirstX(ctx context.Context) *DID

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

func (*DIDQuery) GroupBy

func (dq *DIDQuery) GroupBy(field string, fields ...string) *DIDGroupBy

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 {
	Method string `json:"method,omitempty"`
	Count int `json:"count,omitempty"`
}

client.DID.Query().
	GroupBy(did.FieldMethod).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*DIDQuery) IDs

func (dq *DIDQuery) IDs(ctx context.Context) ([]string, error)

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

func (*DIDQuery) IDsX

func (dq *DIDQuery) IDsX(ctx context.Context) []string

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

func (*DIDQuery) Limit

func (dq *DIDQuery) Limit(limit int) *DIDQuery

Limit adds a limit step to the query.

func (*DIDQuery) Offset

func (dq *DIDQuery) Offset(offset int) *DIDQuery

Offset adds an offset step to the query.

func (*DIDQuery) Only

func (dq *DIDQuery) Only(ctx context.Context) (*DID, error)

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

func (*DIDQuery) OnlyID

func (dq *DIDQuery) OnlyID(ctx context.Context) (id string, err error)

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

func (*DIDQuery) OnlyIDX

func (dq *DIDQuery) OnlyIDX(ctx context.Context) string

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

func (*DIDQuery) OnlyX

func (dq *DIDQuery) OnlyX(ctx context.Context) *DID

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

func (*DIDQuery) Order

func (dq *DIDQuery) Order(o ...OrderFunc) *DIDQuery

Order adds an order step to the query.

func (*DIDQuery) QueryUser

func (dq *DIDQuery) QueryUser() *UserQuery

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

func (*DIDQuery) Select

func (dq *DIDQuery) Select(fields ...string) *DIDSelect

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 {
	Method string `json:"method,omitempty"`
}

client.DID.Query().
	Select(did.FieldMethod).
	Scan(ctx, &v)

func (*DIDQuery) Unique

func (dq *DIDQuery) Unique(unique bool) *DIDQuery

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

func (dq *DIDQuery) Where(ps ...predicate.DID) *DIDQuery

Where adds a new predicate for the DIDQuery builder.

func (*DIDQuery) WithUser

func (dq *DIDQuery) WithUser(opts ...func(*UserQuery)) *DIDQuery

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 DIDSelect

type DIDSelect struct {
	*DIDQuery
	// contains filtered or unexported fields
}

DIDSelect is the builder for selecting fields of DID entities.

func (*DIDSelect) Bool

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

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

func (*DIDSelect) BoolX

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

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

func (*DIDSelect) Bools

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

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

func (*DIDSelect) BoolsX

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

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

func (*DIDSelect) Float64

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

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

func (*DIDSelect) Float64X

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

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

func (*DIDSelect) Float64s

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

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

func (*DIDSelect) Float64sX

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

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

func (*DIDSelect) Int

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

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

func (*DIDSelect) IntX

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

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

func (*DIDSelect) Ints

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

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

func (*DIDSelect) IntsX

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

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

func (*DIDSelect) Scan

func (ds *DIDSelect) Scan(ctx context.Context, v interface{}) error

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

func (*DIDSelect) ScanX

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

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

func (*DIDSelect) String

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

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

func (*DIDSelect) StringX

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

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

func (*DIDSelect) Strings

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

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

func (*DIDSelect) StringsX

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

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

type DIDUpdate

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

DIDUpdate is the builder for updating DID entities.

func (*DIDUpdate) ClearMethod

func (du *DIDUpdate) ClearMethod() *DIDUpdate

ClearMethod clears the value of the "method" field.

func (*DIDUpdate) ClearUser

func (du *DIDUpdate) ClearUser() *DIDUpdate

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

func (*DIDUpdate) Exec

func (du *DIDUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*DIDUpdate) ExecX

func (du *DIDUpdate) ExecX(ctx context.Context)

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

func (*DIDUpdate) Mutation

func (du *DIDUpdate) Mutation() *DIDMutation

Mutation returns the DIDMutation object of the builder.

func (*DIDUpdate) Save

func (du *DIDUpdate) Save(ctx context.Context) (int, error)

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

func (*DIDUpdate) SaveX

func (du *DIDUpdate) SaveX(ctx context.Context) int

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

func (*DIDUpdate) SetMethod

func (du *DIDUpdate) SetMethod(s string) *DIDUpdate

SetMethod sets the "method" field.

func (*DIDUpdate) SetNillableMethod

func (du *DIDUpdate) SetNillableMethod(s *string) *DIDUpdate

SetNillableMethod sets the "method" field if the given value is not nil.

func (*DIDUpdate) SetNillableUpdatedAt

func (du *DIDUpdate) SetNillableUpdatedAt(t *time.Time) *DIDUpdate

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

func (*DIDUpdate) SetNillableUserID

func (du *DIDUpdate) SetNillableUserID(id *string) *DIDUpdate

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

func (*DIDUpdate) SetUpdatedAt

func (du *DIDUpdate) SetUpdatedAt(t time.Time) *DIDUpdate

SetUpdatedAt sets the "updated_at" field.

func (*DIDUpdate) SetUser

func (du *DIDUpdate) SetUser(u *User) *DIDUpdate

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

func (*DIDUpdate) SetUserID

func (du *DIDUpdate) SetUserID(id string) *DIDUpdate

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

func (*DIDUpdate) Where

func (du *DIDUpdate) Where(ps ...predicate.DID) *DIDUpdate

Where appends a list predicates to the DIDUpdate builder.

type DIDUpdateOne

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

DIDUpdateOne is the builder for updating a single DID entity.

func (*DIDUpdateOne) ClearMethod

func (duo *DIDUpdateOne) ClearMethod() *DIDUpdateOne

ClearMethod clears the value of the "method" field.

func (*DIDUpdateOne) ClearUser

func (duo *DIDUpdateOne) ClearUser() *DIDUpdateOne

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

func (*DIDUpdateOne) Exec

func (duo *DIDUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*DIDUpdateOne) ExecX

func (duo *DIDUpdateOne) ExecX(ctx context.Context)

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

func (*DIDUpdateOne) Mutation

func (duo *DIDUpdateOne) Mutation() *DIDMutation

Mutation returns the DIDMutation object of the builder.

func (*DIDUpdateOne) Save

func (duo *DIDUpdateOne) Save(ctx context.Context) (*DID, error)

Save executes the query and returns the updated DID entity.

func (*DIDUpdateOne) SaveX

func (duo *DIDUpdateOne) SaveX(ctx context.Context) *DID

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

func (*DIDUpdateOne) Select

func (duo *DIDUpdateOne) Select(field string, fields ...string) *DIDUpdateOne

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

func (*DIDUpdateOne) SetMethod

func (duo *DIDUpdateOne) SetMethod(s string) *DIDUpdateOne

SetMethod sets the "method" field.

func (*DIDUpdateOne) SetNillableMethod

func (duo *DIDUpdateOne) SetNillableMethod(s *string) *DIDUpdateOne

SetNillableMethod sets the "method" field if the given value is not nil.

func (*DIDUpdateOne) SetNillableUpdatedAt

func (duo *DIDUpdateOne) SetNillableUpdatedAt(t *time.Time) *DIDUpdateOne

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

func (*DIDUpdateOne) SetNillableUserID

func (duo *DIDUpdateOne) SetNillableUserID(id *string) *DIDUpdateOne

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

func (*DIDUpdateOne) SetUpdatedAt

func (duo *DIDUpdateOne) SetUpdatedAt(t time.Time) *DIDUpdateOne

SetUpdatedAt sets the "updated_at" field.

func (*DIDUpdateOne) SetUser

func (duo *DIDUpdateOne) SetUser(u *User) *DIDUpdateOne

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

func (*DIDUpdateOne) SetUserID

func (duo *DIDUpdateOne) SetUserID(id string) *DIDUpdateOne

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

type DIDs

type DIDs []*DID

DIDs is a parsable slice of DID.

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 NaturalPerson

type NaturalPerson struct {

	// ID of the ent.
	ID string `json:"id,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"`
	// Type holds the value of the "type" field.
	Type string `json:"type,omitempty"`
	// Password holds the value of the "password" field.
	Password []byte `json:"-"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// UpdatedAt holds the value of the "updated_at" field.
	UpdatedAt time.Time `json:"updated_at,omitempty"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the NaturalPersonQuery when eager-loading is set.
	Edges NaturalPersonEdges `json:"edges"`
	// contains filtered or unexported fields
}

NaturalPerson is the model entity for the NaturalPerson schema.

func (*NaturalPerson) QueryCredentials

func (np *NaturalPerson) QueryCredentials() *CredentialQuery

QueryCredentials queries the "credentials" edge of the NaturalPerson entity.

func (*NaturalPerson) QueryKeys

func (np *NaturalPerson) QueryKeys() *PrivateKeyQuery

QueryKeys queries the "keys" edge of the NaturalPerson entity.

func (*NaturalPerson) String

func (np *NaturalPerson) String() string

String implements the fmt.Stringer.

func (*NaturalPerson) Unwrap

func (np *NaturalPerson) Unwrap() *NaturalPerson

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

func (np *NaturalPerson) Update() *NaturalPersonUpdateOne

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

type NaturalPersonClient

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

NaturalPersonClient is a client for the NaturalPerson schema.

func NewNaturalPersonClient

func NewNaturalPersonClient(c config) *NaturalPersonClient

NewNaturalPersonClient returns a client for the NaturalPerson from the given config.

func (*NaturalPersonClient) Create

Create returns a builder for creating a NaturalPerson entity.

func (*NaturalPersonClient) CreateBulk

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

func (*NaturalPersonClient) Delete

Delete returns a delete builder for NaturalPerson.

func (*NaturalPersonClient) DeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*NaturalPersonClient) DeleteOneID

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

func (*NaturalPersonClient) Get

Get returns a NaturalPerson entity by its id.

func (*NaturalPersonClient) GetX

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

func (*NaturalPersonClient) Hooks

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

Hooks returns the client hooks.

func (*NaturalPersonClient) Query

Query returns a query builder for NaturalPerson.

func (*NaturalPersonClient) QueryCredentials

func (c *NaturalPersonClient) QueryCredentials(np *NaturalPerson) *CredentialQuery

QueryCredentials queries the credentials edge of a NaturalPerson.

func (*NaturalPersonClient) QueryKeys

QueryKeys queries the keys edge of a NaturalPerson.

func (*NaturalPersonClient) Update

Update returns an update builder for NaturalPerson.

func (*NaturalPersonClient) UpdateOne

UpdateOne returns an update builder for the given entity.

func (*NaturalPersonClient) UpdateOneID

UpdateOneID returns an update builder for the given id.

func (*NaturalPersonClient) Use

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

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

type NaturalPersonCreate

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

NaturalPersonCreate is the builder for creating a NaturalPerson entity.

func (*NaturalPersonCreate) AddCredentialIDs

func (npc *NaturalPersonCreate) AddCredentialIDs(ids ...string) *NaturalPersonCreate

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

func (*NaturalPersonCreate) AddCredentials

func (npc *NaturalPersonCreate) AddCredentials(c ...*Credential) *NaturalPersonCreate

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

func (*NaturalPersonCreate) AddKeyIDs

func (npc *NaturalPersonCreate) AddKeyIDs(ids ...string) *NaturalPersonCreate

AddKeyIDs adds the "keys" edge to the PrivateKey entity by IDs.

func (*NaturalPersonCreate) AddKeys

func (npc *NaturalPersonCreate) AddKeys(p ...*PrivateKey) *NaturalPersonCreate

AddKeys adds the "keys" edges to the PrivateKey entity.

func (*NaturalPersonCreate) Exec

func (npc *NaturalPersonCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*NaturalPersonCreate) ExecX

func (npc *NaturalPersonCreate) ExecX(ctx context.Context)

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

func (*NaturalPersonCreate) Mutation

func (npc *NaturalPersonCreate) Mutation() *NaturalPersonMutation

Mutation returns the NaturalPersonMutation object of the builder.

func (*NaturalPersonCreate) Save

Save creates the NaturalPerson in the database.

func (*NaturalPersonCreate) SaveX

SaveX calls Save and panics if Save returns an error.

func (*NaturalPersonCreate) SetCreatedAt

func (npc *NaturalPersonCreate) SetCreatedAt(t time.Time) *NaturalPersonCreate

SetCreatedAt sets the "created_at" field.

func (*NaturalPersonCreate) SetDisplayname

func (npc *NaturalPersonCreate) SetDisplayname(s string) *NaturalPersonCreate

SetDisplayname sets the "displayname" field.

func (*NaturalPersonCreate) SetID

SetID sets the "id" field.

func (*NaturalPersonCreate) SetName

SetName sets the "name" field.

func (*NaturalPersonCreate) SetNillableCreatedAt

func (npc *NaturalPersonCreate) SetNillableCreatedAt(t *time.Time) *NaturalPersonCreate

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

func (*NaturalPersonCreate) SetNillableDisplayname

func (npc *NaturalPersonCreate) SetNillableDisplayname(s *string) *NaturalPersonCreate

SetNillableDisplayname sets the "displayname" field if the given value is not nil.

func (*NaturalPersonCreate) SetNillableUpdatedAt

func (npc *NaturalPersonCreate) SetNillableUpdatedAt(t *time.Time) *NaturalPersonCreate

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

func (*NaturalPersonCreate) SetPassword

func (npc *NaturalPersonCreate) SetPassword(b []byte) *NaturalPersonCreate

SetPassword sets the "password" field.

func (*NaturalPersonCreate) SetType

SetType sets the "type" field.

func (*NaturalPersonCreate) SetUpdatedAt

func (npc *NaturalPersonCreate) SetUpdatedAt(t time.Time) *NaturalPersonCreate

SetUpdatedAt sets the "updated_at" field.

type NaturalPersonCreateBulk

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

NaturalPersonCreateBulk is the builder for creating many NaturalPerson entities in bulk.

func (*NaturalPersonCreateBulk) Exec

func (npcb *NaturalPersonCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*NaturalPersonCreateBulk) ExecX

func (npcb *NaturalPersonCreateBulk) ExecX(ctx context.Context)

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

func (*NaturalPersonCreateBulk) Save

Save creates the NaturalPerson entities in the database.

func (*NaturalPersonCreateBulk) SaveX

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

type NaturalPersonDelete

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

NaturalPersonDelete is the builder for deleting a NaturalPerson entity.

func (*NaturalPersonDelete) Exec

func (npd *NaturalPersonDelete) Exec(ctx context.Context) (int, error)

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

func (*NaturalPersonDelete) ExecX

func (npd *NaturalPersonDelete) ExecX(ctx context.Context) int

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

func (*NaturalPersonDelete) Where

Where appends a list predicates to the NaturalPersonDelete builder.

type NaturalPersonDeleteOne

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

NaturalPersonDeleteOne is the builder for deleting a single NaturalPerson entity.

func (*NaturalPersonDeleteOne) Exec

func (npdo *NaturalPersonDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*NaturalPersonDeleteOne) ExecX

func (npdo *NaturalPersonDeleteOne) ExecX(ctx context.Context)

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

type NaturalPersonEdges

type NaturalPersonEdges struct {
	// Keys holds the value of the keys edge.
	Keys []*PrivateKey `json:"keys,omitempty"`
	// Credentials holds the value of the credentials edge.
	Credentials []*Credential `json:"credentials,omitempty"`
	// contains filtered or unexported fields
}

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

func (NaturalPersonEdges) CredentialsOrErr

func (e NaturalPersonEdges) CredentialsOrErr() ([]*Credential, error)

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

func (NaturalPersonEdges) KeysOrErr

func (e NaturalPersonEdges) KeysOrErr() ([]*PrivateKey, error)

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

type NaturalPersonGroupBy

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

NaturalPersonGroupBy is the group-by builder for NaturalPerson entities.

func (*NaturalPersonGroupBy) Aggregate

func (npgb *NaturalPersonGroupBy) Aggregate(fns ...AggregateFunc) *NaturalPersonGroupBy

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

func (*NaturalPersonGroupBy) Bool

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

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

func (*NaturalPersonGroupBy) BoolX

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

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

func (*NaturalPersonGroupBy) Bools

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

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

func (*NaturalPersonGroupBy) BoolsX

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

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

func (*NaturalPersonGroupBy) Float64

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

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

func (*NaturalPersonGroupBy) Float64X

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

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

func (*NaturalPersonGroupBy) Float64s

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

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

func (*NaturalPersonGroupBy) Float64sX

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

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

func (*NaturalPersonGroupBy) Int

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

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

func (*NaturalPersonGroupBy) IntX

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

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

func (*NaturalPersonGroupBy) Ints

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

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

func (*NaturalPersonGroupBy) IntsX

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

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

func (*NaturalPersonGroupBy) Scan

func (npgb *NaturalPersonGroupBy) Scan(ctx context.Context, v interface{}) error

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

func (*NaturalPersonGroupBy) ScanX

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

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

func (*NaturalPersonGroupBy) String

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

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

func (*NaturalPersonGroupBy) StringX

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

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

func (*NaturalPersonGroupBy) Strings

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

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

func (*NaturalPersonGroupBy) StringsX

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

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

type NaturalPersonMutation

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

NaturalPersonMutation represents an operation that mutates the NaturalPerson nodes in the graph.

func (*NaturalPersonMutation) AddCredentialIDs

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

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

func (*NaturalPersonMutation) AddField

func (m *NaturalPersonMutation) 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 (*NaturalPersonMutation) AddKeyIDs

func (m *NaturalPersonMutation) AddKeyIDs(ids ...string)

AddKeyIDs adds the "keys" edge to the PrivateKey entity by ids.

func (*NaturalPersonMutation) AddedEdges

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

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

func (*NaturalPersonMutation) AddedField

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

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

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

func (*NaturalPersonMutation) AddedIDs

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

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

func (*NaturalPersonMutation) ClearCredentials

func (m *NaturalPersonMutation) ClearCredentials()

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

func (*NaturalPersonMutation) ClearDisplayname

func (m *NaturalPersonMutation) ClearDisplayname()

ClearDisplayname clears the value of the "displayname" field.

func (*NaturalPersonMutation) ClearEdge

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

func (m *NaturalPersonMutation) 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 (*NaturalPersonMutation) ClearKeys

func (m *NaturalPersonMutation) ClearKeys()

ClearKeys clears the "keys" edge to the PrivateKey entity.

func (*NaturalPersonMutation) ClearedEdges

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

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

func (*NaturalPersonMutation) ClearedFields

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

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

func (NaturalPersonMutation) Client

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

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

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

func (*NaturalPersonMutation) CredentialsCleared

func (m *NaturalPersonMutation) CredentialsCleared() bool

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

func (*NaturalPersonMutation) CredentialsIDs

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

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

func (*NaturalPersonMutation) Displayname

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

Displayname returns the value of the "displayname" field in the mutation.

func (*NaturalPersonMutation) DisplaynameCleared

func (m *NaturalPersonMutation) DisplaynameCleared() bool

DisplaynameCleared returns if the "displayname" field was cleared in this mutation.

func (*NaturalPersonMutation) EdgeCleared

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

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

func (*NaturalPersonMutation) Field

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

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

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

func (*NaturalPersonMutation) Fields

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

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

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

func (*NaturalPersonMutation) ID

func (m *NaturalPersonMutation) 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 (*NaturalPersonMutation) 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 (*NaturalPersonMutation) KeysCleared

func (m *NaturalPersonMutation) KeysCleared() bool

KeysCleared reports if the "keys" edge to the PrivateKey entity was cleared.

func (*NaturalPersonMutation) KeysIDs

func (m *NaturalPersonMutation) KeysIDs() (ids []string)

KeysIDs returns the "keys" edge IDs in the mutation.

func (*NaturalPersonMutation) Name

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

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

func (*NaturalPersonMutation) OldCreatedAt

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

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

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

OldDisplayname returns the old "displayname" field's value of the NaturalPerson entity. If the NaturalPerson 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 (*NaturalPersonMutation) OldField

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

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

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

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

OldPassword returns the old "password" field's value of the NaturalPerson entity. If the NaturalPerson 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 (*NaturalPersonMutation) OldType

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

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

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

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

func (m *NaturalPersonMutation) Op() Op

Op returns the operation name.

func (*NaturalPersonMutation) Password

func (m *NaturalPersonMutation) Password() (r []byte, exists bool)

Password returns the value of the "password" field in the mutation.

func (*NaturalPersonMutation) RemoveCredentialIDs

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

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

func (*NaturalPersonMutation) RemoveKeyIDs

func (m *NaturalPersonMutation) RemoveKeyIDs(ids ...string)

RemoveKeyIDs removes the "keys" edge to the PrivateKey entity by IDs.

func (*NaturalPersonMutation) RemovedCredentialsIDs

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

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

func (*NaturalPersonMutation) RemovedEdges

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

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

func (*NaturalPersonMutation) RemovedIDs

func (m *NaturalPersonMutation) 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 (*NaturalPersonMutation) RemovedKeysIDs

func (m *NaturalPersonMutation) RemovedKeysIDs() (ids []string)

RemovedKeys returns the removed IDs of the "keys" edge to the PrivateKey entity.

func (*NaturalPersonMutation) ResetCreatedAt

func (m *NaturalPersonMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*NaturalPersonMutation) ResetCredentials

func (m *NaturalPersonMutation) ResetCredentials()

ResetCredentials resets all changes to the "credentials" edge.

func (*NaturalPersonMutation) ResetDisplayname

func (m *NaturalPersonMutation) ResetDisplayname()

ResetDisplayname resets all changes to the "displayname" field.

func (*NaturalPersonMutation) ResetEdge

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

func (m *NaturalPersonMutation) 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 (*NaturalPersonMutation) ResetKeys

func (m *NaturalPersonMutation) ResetKeys()

ResetKeys resets all changes to the "keys" edge.

func (*NaturalPersonMutation) ResetName

func (m *NaturalPersonMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*NaturalPersonMutation) ResetPassword

func (m *NaturalPersonMutation) ResetPassword()

ResetPassword resets all changes to the "password" field.

func (*NaturalPersonMutation) ResetType

func (m *NaturalPersonMutation) ResetType()

ResetType resets all changes to the "type" field.

func (*NaturalPersonMutation) ResetUpdatedAt

func (m *NaturalPersonMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*NaturalPersonMutation) SetCreatedAt

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

SetCreatedAt sets the "created_at" field.

func (*NaturalPersonMutation) SetDisplayname

func (m *NaturalPersonMutation) SetDisplayname(s string)

SetDisplayname sets the "displayname" field.

func (*NaturalPersonMutation) SetField

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

func (m *NaturalPersonMutation) SetID(id string)

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

func (*NaturalPersonMutation) SetName

func (m *NaturalPersonMutation) SetName(s string)

SetName sets the "name" field.

func (*NaturalPersonMutation) SetPassword

func (m *NaturalPersonMutation) SetPassword(b []byte)

SetPassword sets the "password" field.

func (*NaturalPersonMutation) SetType

func (m *NaturalPersonMutation) SetType(s string)

SetType sets the "type" field.

func (*NaturalPersonMutation) SetUpdatedAt

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

SetUpdatedAt sets the "updated_at" field.

func (NaturalPersonMutation) Tx

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

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

func (*NaturalPersonMutation) Type

func (m *NaturalPersonMutation) Type() string

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

func (*NaturalPersonMutation) UpdatedAt

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

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

func (*NaturalPersonMutation) Where

Where appends a list predicates to the NaturalPersonMutation builder.

type NaturalPersonQuery

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

NaturalPersonQuery is the builder for querying NaturalPerson entities.

func (*NaturalPersonQuery) All

All executes the query and returns a list of NaturalPersons.

func (*NaturalPersonQuery) AllX

func (npq *NaturalPersonQuery) AllX(ctx context.Context) []*NaturalPerson

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

func (*NaturalPersonQuery) Clone

func (npq *NaturalPersonQuery) Clone() *NaturalPersonQuery

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

func (*NaturalPersonQuery) Count

func (npq *NaturalPersonQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*NaturalPersonQuery) CountX

func (npq *NaturalPersonQuery) CountX(ctx context.Context) int

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

func (*NaturalPersonQuery) Exist

func (npq *NaturalPersonQuery) Exist(ctx context.Context) (bool, error)

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

func (*NaturalPersonQuery) ExistX

func (npq *NaturalPersonQuery) ExistX(ctx context.Context) bool

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

func (*NaturalPersonQuery) First

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

func (*NaturalPersonQuery) FirstID

func (npq *NaturalPersonQuery) FirstID(ctx context.Context) (id string, err error)

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

func (*NaturalPersonQuery) FirstIDX

func (npq *NaturalPersonQuery) FirstIDX(ctx context.Context) string

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

func (*NaturalPersonQuery) FirstX

func (npq *NaturalPersonQuery) FirstX(ctx context.Context) *NaturalPerson

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

func (*NaturalPersonQuery) GroupBy

func (npq *NaturalPersonQuery) GroupBy(field string, fields ...string) *NaturalPersonGroupBy

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.NaturalPerson.Query().
	GroupBy(naturalperson.FieldName).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*NaturalPersonQuery) IDs

func (npq *NaturalPersonQuery) IDs(ctx context.Context) ([]string, error)

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

func (*NaturalPersonQuery) IDsX

func (npq *NaturalPersonQuery) IDsX(ctx context.Context) []string

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

func (*NaturalPersonQuery) Limit

func (npq *NaturalPersonQuery) Limit(limit int) *NaturalPersonQuery

Limit adds a limit step to the query.

func (*NaturalPersonQuery) Offset

func (npq *NaturalPersonQuery) Offset(offset int) *NaturalPersonQuery

Offset adds an offset step to the query.

func (*NaturalPersonQuery) Only

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

func (*NaturalPersonQuery) OnlyID

func (npq *NaturalPersonQuery) OnlyID(ctx context.Context) (id string, err error)

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

func (*NaturalPersonQuery) OnlyIDX

func (npq *NaturalPersonQuery) OnlyIDX(ctx context.Context) string

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

func (*NaturalPersonQuery) OnlyX

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

func (*NaturalPersonQuery) Order

Order adds an order step to the query.

func (*NaturalPersonQuery) QueryCredentials

func (npq *NaturalPersonQuery) QueryCredentials() *CredentialQuery

QueryCredentials chains the current query on the "credentials" edge.

func (*NaturalPersonQuery) QueryKeys

func (npq *NaturalPersonQuery) QueryKeys() *PrivateKeyQuery

QueryKeys chains the current query on the "keys" edge.

func (*NaturalPersonQuery) Select

func (npq *NaturalPersonQuery) Select(fields ...string) *NaturalPersonSelect

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.NaturalPerson.Query().
	Select(naturalperson.FieldName).
	Scan(ctx, &v)

func (*NaturalPersonQuery) Unique

func (npq *NaturalPersonQuery) Unique(unique bool) *NaturalPersonQuery

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

Where adds a new predicate for the NaturalPersonQuery builder.

func (*NaturalPersonQuery) WithCredentials

func (npq *NaturalPersonQuery) WithCredentials(opts ...func(*CredentialQuery)) *NaturalPersonQuery

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.

func (*NaturalPersonQuery) WithKeys

func (npq *NaturalPersonQuery) WithKeys(opts ...func(*PrivateKeyQuery)) *NaturalPersonQuery

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

type NaturalPersonSelect

type NaturalPersonSelect struct {
	*NaturalPersonQuery
	// contains filtered or unexported fields
}

NaturalPersonSelect is the builder for selecting fields of NaturalPerson entities.

func (*NaturalPersonSelect) Bool

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

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

func (*NaturalPersonSelect) BoolX

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

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

func (*NaturalPersonSelect) Bools

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

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

func (*NaturalPersonSelect) BoolsX

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

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

func (*NaturalPersonSelect) Float64

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

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

func (*NaturalPersonSelect) Float64X

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

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

func (*NaturalPersonSelect) Float64s

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

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

func (*NaturalPersonSelect) Float64sX

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

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

func (*NaturalPersonSelect) Int

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

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

func (*NaturalPersonSelect) IntX

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

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

func (*NaturalPersonSelect) Ints

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

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

func (*NaturalPersonSelect) IntsX

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

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

func (*NaturalPersonSelect) Scan

func (nps *NaturalPersonSelect) Scan(ctx context.Context, v interface{}) error

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

func (*NaturalPersonSelect) ScanX

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

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

func (*NaturalPersonSelect) String

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

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

func (*NaturalPersonSelect) StringX

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

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

func (*NaturalPersonSelect) Strings

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

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

func (*NaturalPersonSelect) StringsX

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

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

type NaturalPersonUpdate

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

NaturalPersonUpdate is the builder for updating NaturalPerson entities.

func (*NaturalPersonUpdate) AddCredentialIDs

func (npu *NaturalPersonUpdate) AddCredentialIDs(ids ...string) *NaturalPersonUpdate

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

func (*NaturalPersonUpdate) AddCredentials

func (npu *NaturalPersonUpdate) AddCredentials(c ...*Credential) *NaturalPersonUpdate

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

func (*NaturalPersonUpdate) AddKeyIDs

func (npu *NaturalPersonUpdate) AddKeyIDs(ids ...string) *NaturalPersonUpdate

AddKeyIDs adds the "keys" edge to the PrivateKey entity by IDs.

func (*NaturalPersonUpdate) AddKeys

func (npu *NaturalPersonUpdate) AddKeys(p ...*PrivateKey) *NaturalPersonUpdate

AddKeys adds the "keys" edges to the PrivateKey entity.

func (*NaturalPersonUpdate) ClearCredentials

func (npu *NaturalPersonUpdate) ClearCredentials() *NaturalPersonUpdate

ClearCredentials clears all "credentials" edges to the Credential entity.

func (*NaturalPersonUpdate) ClearDisplayname

func (npu *NaturalPersonUpdate) ClearDisplayname() *NaturalPersonUpdate

ClearDisplayname clears the value of the "displayname" field.

func (*NaturalPersonUpdate) ClearKeys

func (npu *NaturalPersonUpdate) ClearKeys() *NaturalPersonUpdate

ClearKeys clears all "keys" edges to the PrivateKey entity.

func (*NaturalPersonUpdate) Exec

func (npu *NaturalPersonUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*NaturalPersonUpdate) ExecX

func (npu *NaturalPersonUpdate) ExecX(ctx context.Context)

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

func (*NaturalPersonUpdate) Mutation

func (npu *NaturalPersonUpdate) Mutation() *NaturalPersonMutation

Mutation returns the NaturalPersonMutation object of the builder.

func (*NaturalPersonUpdate) RemoveCredentialIDs

func (npu *NaturalPersonUpdate) RemoveCredentialIDs(ids ...string) *NaturalPersonUpdate

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

func (*NaturalPersonUpdate) RemoveCredentials

func (npu *NaturalPersonUpdate) RemoveCredentials(c ...*Credential) *NaturalPersonUpdate

RemoveCredentials removes "credentials" edges to Credential entities.

func (*NaturalPersonUpdate) RemoveKeyIDs

func (npu *NaturalPersonUpdate) RemoveKeyIDs(ids ...string) *NaturalPersonUpdate

RemoveKeyIDs removes the "keys" edge to PrivateKey entities by IDs.

func (*NaturalPersonUpdate) RemoveKeys

func (npu *NaturalPersonUpdate) RemoveKeys(p ...*PrivateKey) *NaturalPersonUpdate

RemoveKeys removes "keys" edges to PrivateKey entities.

func (*NaturalPersonUpdate) Save

func (npu *NaturalPersonUpdate) Save(ctx context.Context) (int, error)

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

func (*NaturalPersonUpdate) SaveX

func (npu *NaturalPersonUpdate) SaveX(ctx context.Context) int

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

func (*NaturalPersonUpdate) SetDisplayname

func (npu *NaturalPersonUpdate) SetDisplayname(s string) *NaturalPersonUpdate

SetDisplayname sets the "displayname" field.

func (*NaturalPersonUpdate) SetName

SetName sets the "name" field.

func (*NaturalPersonUpdate) SetNillableDisplayname

func (npu *NaturalPersonUpdate) SetNillableDisplayname(s *string) *NaturalPersonUpdate

SetNillableDisplayname sets the "displayname" field if the given value is not nil.

func (*NaturalPersonUpdate) SetNillableUpdatedAt

func (npu *NaturalPersonUpdate) SetNillableUpdatedAt(t *time.Time) *NaturalPersonUpdate

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

func (*NaturalPersonUpdate) SetPassword

func (npu *NaturalPersonUpdate) SetPassword(b []byte) *NaturalPersonUpdate

SetPassword sets the "password" field.

func (*NaturalPersonUpdate) SetType

SetType sets the "type" field.

func (*NaturalPersonUpdate) SetUpdatedAt

func (npu *NaturalPersonUpdate) SetUpdatedAt(t time.Time) *NaturalPersonUpdate

SetUpdatedAt sets the "updated_at" field.

func (*NaturalPersonUpdate) Where

Where appends a list predicates to the NaturalPersonUpdate builder.

type NaturalPersonUpdateOne

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

NaturalPersonUpdateOne is the builder for updating a single NaturalPerson entity.

func (*NaturalPersonUpdateOne) AddCredentialIDs

func (npuo *NaturalPersonUpdateOne) AddCredentialIDs(ids ...string) *NaturalPersonUpdateOne

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

func (*NaturalPersonUpdateOne) AddCredentials

func (npuo *NaturalPersonUpdateOne) AddCredentials(c ...*Credential) *NaturalPersonUpdateOne

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

func (*NaturalPersonUpdateOne) AddKeyIDs

func (npuo *NaturalPersonUpdateOne) AddKeyIDs(ids ...string) *NaturalPersonUpdateOne

AddKeyIDs adds the "keys" edge to the PrivateKey entity by IDs.

func (*NaturalPersonUpdateOne) AddKeys

AddKeys adds the "keys" edges to the PrivateKey entity.

func (*NaturalPersonUpdateOne) ClearCredentials

func (npuo *NaturalPersonUpdateOne) ClearCredentials() *NaturalPersonUpdateOne

ClearCredentials clears all "credentials" edges to the Credential entity.

func (*NaturalPersonUpdateOne) ClearDisplayname

func (npuo *NaturalPersonUpdateOne) ClearDisplayname() *NaturalPersonUpdateOne

ClearDisplayname clears the value of the "displayname" field.

func (*NaturalPersonUpdateOne) ClearKeys

ClearKeys clears all "keys" edges to the PrivateKey entity.

func (*NaturalPersonUpdateOne) Exec

func (npuo *NaturalPersonUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*NaturalPersonUpdateOne) ExecX

func (npuo *NaturalPersonUpdateOne) ExecX(ctx context.Context)

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

func (*NaturalPersonUpdateOne) Mutation

Mutation returns the NaturalPersonMutation object of the builder.

func (*NaturalPersonUpdateOne) RemoveCredentialIDs

func (npuo *NaturalPersonUpdateOne) RemoveCredentialIDs(ids ...string) *NaturalPersonUpdateOne

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

func (*NaturalPersonUpdateOne) RemoveCredentials

func (npuo *NaturalPersonUpdateOne) RemoveCredentials(c ...*Credential) *NaturalPersonUpdateOne

RemoveCredentials removes "credentials" edges to Credential entities.

func (*NaturalPersonUpdateOne) RemoveKeyIDs

func (npuo *NaturalPersonUpdateOne) RemoveKeyIDs(ids ...string) *NaturalPersonUpdateOne

RemoveKeyIDs removes the "keys" edge to PrivateKey entities by IDs.

func (*NaturalPersonUpdateOne) RemoveKeys

func (npuo *NaturalPersonUpdateOne) RemoveKeys(p ...*PrivateKey) *NaturalPersonUpdateOne

RemoveKeys removes "keys" edges to PrivateKey entities.

func (*NaturalPersonUpdateOne) Save

Save executes the query and returns the updated NaturalPerson entity.

func (*NaturalPersonUpdateOne) SaveX

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

func (*NaturalPersonUpdateOne) Select

func (npuo *NaturalPersonUpdateOne) Select(field string, fields ...string) *NaturalPersonUpdateOne

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

func (*NaturalPersonUpdateOne) SetDisplayname

func (npuo *NaturalPersonUpdateOne) SetDisplayname(s string) *NaturalPersonUpdateOne

SetDisplayname sets the "displayname" field.

func (*NaturalPersonUpdateOne) SetName

SetName sets the "name" field.

func (*NaturalPersonUpdateOne) SetNillableDisplayname

func (npuo *NaturalPersonUpdateOne) SetNillableDisplayname(s *string) *NaturalPersonUpdateOne

SetNillableDisplayname sets the "displayname" field if the given value is not nil.

func (*NaturalPersonUpdateOne) SetNillableUpdatedAt

func (npuo *NaturalPersonUpdateOne) SetNillableUpdatedAt(t *time.Time) *NaturalPersonUpdateOne

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

func (*NaturalPersonUpdateOne) SetPassword

func (npuo *NaturalPersonUpdateOne) SetPassword(b []byte) *NaturalPersonUpdateOne

SetPassword sets the "password" field.

func (*NaturalPersonUpdateOne) SetType

SetType sets the "type" field.

func (*NaturalPersonUpdateOne) SetUpdatedAt

func (npuo *NaturalPersonUpdateOne) SetUpdatedAt(t time.Time) *NaturalPersonUpdateOne

SetUpdatedAt sets the "updated_at" field.

type NaturalPersons

type NaturalPersons []*NaturalPerson

NaturalPersons is a parsable slice of NaturalPerson.

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 PrivateKey

type PrivateKey struct {

	// ID of the ent.
	ID string `json:"id,omitempty"`
	// Kty holds the value of the "kty" field.
	Kty string `json:"kty,omitempty"`
	// Alg holds the value of the "alg" field.
	Alg string `json:"alg,omitempty"`
	// Jwk holds the value of the "jwk" field.
	Jwk []uint8 `json:"jwk,omitempty"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// UpdatedAt holds the value of the "updated_at" field.
	UpdatedAt time.Time `json:"updated_at,omitempty"`
	// Edges holds the relations/edges for other nodes in the graph.
	// The values are being populated by the PrivateKeyQuery when eager-loading is set.
	Edges PrivateKeyEdges `json:"edges"`
	// contains filtered or unexported fields
}

PrivateKey is the model entity for the PrivateKey schema.

func (*PrivateKey) QueryUser

func (pk *PrivateKey) QueryUser() *UserQuery

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

func (*PrivateKey) String

func (pk *PrivateKey) String() string

String implements the fmt.Stringer.

func (*PrivateKey) Unwrap

func (pk *PrivateKey) Unwrap() *PrivateKey

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

func (pk *PrivateKey) Update() *PrivateKeyUpdateOne

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

type PrivateKeyClient

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

PrivateKeyClient is a client for the PrivateKey schema.

func NewPrivateKeyClient

func NewPrivateKeyClient(c config) *PrivateKeyClient

NewPrivateKeyClient returns a client for the PrivateKey from the given config.

func (*PrivateKeyClient) Create

func (c *PrivateKeyClient) Create() *PrivateKeyCreate

Create returns a builder for creating a PrivateKey entity.

func (*PrivateKeyClient) CreateBulk

func (c *PrivateKeyClient) CreateBulk(builders ...*PrivateKeyCreate) *PrivateKeyCreateBulk

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

func (*PrivateKeyClient) Delete

func (c *PrivateKeyClient) Delete() *PrivateKeyDelete

Delete returns a delete builder for PrivateKey.

func (*PrivateKeyClient) DeleteOne

func (c *PrivateKeyClient) DeleteOne(pk *PrivateKey) *PrivateKeyDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*PrivateKeyClient) DeleteOneID

func (c *PrivateKeyClient) DeleteOneID(id string) *PrivateKeyDeleteOne

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

func (*PrivateKeyClient) Get

func (c *PrivateKeyClient) Get(ctx context.Context, id string) (*PrivateKey, error)

Get returns a PrivateKey entity by its id.

func (*PrivateKeyClient) GetX

func (c *PrivateKeyClient) GetX(ctx context.Context, id string) *PrivateKey

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

func (*PrivateKeyClient) Hooks

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

Hooks returns the client hooks.

func (*PrivateKeyClient) Query

func (c *PrivateKeyClient) Query() *PrivateKeyQuery

Query returns a query builder for PrivateKey.

func (*PrivateKeyClient) QueryUser

func (c *PrivateKeyClient) QueryUser(pk *PrivateKey) *UserQuery

QueryUser queries the user edge of a PrivateKey.

func (*PrivateKeyClient) Update

func (c *PrivateKeyClient) Update() *PrivateKeyUpdate

Update returns an update builder for PrivateKey.

func (*PrivateKeyClient) UpdateOne

func (c *PrivateKeyClient) UpdateOne(pk *PrivateKey) *PrivateKeyUpdateOne

UpdateOne returns an update builder for the given entity.

func (*PrivateKeyClient) UpdateOneID

func (c *PrivateKeyClient) UpdateOneID(id string) *PrivateKeyUpdateOne

UpdateOneID returns an update builder for the given id.

func (*PrivateKeyClient) Use

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

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

type PrivateKeyCreate

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

PrivateKeyCreate is the builder for creating a PrivateKey entity.

func (*PrivateKeyCreate) Exec

func (pkc *PrivateKeyCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*PrivateKeyCreate) ExecX

func (pkc *PrivateKeyCreate) ExecX(ctx context.Context)

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

func (*PrivateKeyCreate) Mutation

func (pkc *PrivateKeyCreate) Mutation() *PrivateKeyMutation

Mutation returns the PrivateKeyMutation object of the builder.

func (*PrivateKeyCreate) Save

func (pkc *PrivateKeyCreate) Save(ctx context.Context) (*PrivateKey, error)

Save creates the PrivateKey in the database.

func (*PrivateKeyCreate) SaveX

func (pkc *PrivateKeyCreate) SaveX(ctx context.Context) *PrivateKey

SaveX calls Save and panics if Save returns an error.

func (*PrivateKeyCreate) SetAlg

func (pkc *PrivateKeyCreate) SetAlg(s string) *PrivateKeyCreate

SetAlg sets the "alg" field.

func (*PrivateKeyCreate) SetCreatedAt

func (pkc *PrivateKeyCreate) SetCreatedAt(t time.Time) *PrivateKeyCreate

SetCreatedAt sets the "created_at" field.

func (*PrivateKeyCreate) SetID

func (pkc *PrivateKeyCreate) SetID(s string) *PrivateKeyCreate

SetID sets the "id" field.

func (*PrivateKeyCreate) SetJwk

func (pkc *PrivateKeyCreate) SetJwk(u []uint8) *PrivateKeyCreate

SetJwk sets the "jwk" field.

func (*PrivateKeyCreate) SetKty

func (pkc *PrivateKeyCreate) SetKty(s string) *PrivateKeyCreate

SetKty sets the "kty" field.

func (*PrivateKeyCreate) SetNillableAlg

func (pkc *PrivateKeyCreate) SetNillableAlg(s *string) *PrivateKeyCreate

SetNillableAlg sets the "alg" field if the given value is not nil.

func (*PrivateKeyCreate) SetNillableCreatedAt

func (pkc *PrivateKeyCreate) SetNillableCreatedAt(t *time.Time) *PrivateKeyCreate

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

func (*PrivateKeyCreate) SetNillableUpdatedAt

func (pkc *PrivateKeyCreate) SetNillableUpdatedAt(t *time.Time) *PrivateKeyCreate

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

func (*PrivateKeyCreate) SetNillableUserID

func (pkc *PrivateKeyCreate) SetNillableUserID(id *string) *PrivateKeyCreate

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

func (*PrivateKeyCreate) SetUpdatedAt

func (pkc *PrivateKeyCreate) SetUpdatedAt(t time.Time) *PrivateKeyCreate

SetUpdatedAt sets the "updated_at" field.

func (*PrivateKeyCreate) SetUser

func (pkc *PrivateKeyCreate) SetUser(u *User) *PrivateKeyCreate

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

func (*PrivateKeyCreate) SetUserID

func (pkc *PrivateKeyCreate) SetUserID(id string) *PrivateKeyCreate

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

type PrivateKeyCreateBulk

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

PrivateKeyCreateBulk is the builder for creating many PrivateKey entities in bulk.

func (*PrivateKeyCreateBulk) Exec

func (pkcb *PrivateKeyCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*PrivateKeyCreateBulk) ExecX

func (pkcb *PrivateKeyCreateBulk) ExecX(ctx context.Context)

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

func (*PrivateKeyCreateBulk) Save

func (pkcb *PrivateKeyCreateBulk) Save(ctx context.Context) ([]*PrivateKey, error)

Save creates the PrivateKey entities in the database.

func (*PrivateKeyCreateBulk) SaveX

func (pkcb *PrivateKeyCreateBulk) SaveX(ctx context.Context) []*PrivateKey

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

type PrivateKeyDelete

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

PrivateKeyDelete is the builder for deleting a PrivateKey entity.

func (*PrivateKeyDelete) Exec

func (pkd *PrivateKeyDelete) Exec(ctx context.Context) (int, error)

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

func (*PrivateKeyDelete) ExecX

func (pkd *PrivateKeyDelete) ExecX(ctx context.Context) int

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

func (*PrivateKeyDelete) Where

Where appends a list predicates to the PrivateKeyDelete builder.

type PrivateKeyDeleteOne

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

PrivateKeyDeleteOne is the builder for deleting a single PrivateKey entity.

func (*PrivateKeyDeleteOne) Exec

func (pkdo *PrivateKeyDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*PrivateKeyDeleteOne) ExecX

func (pkdo *PrivateKeyDeleteOne) ExecX(ctx context.Context)

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

type PrivateKeyEdges

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

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

func (PrivateKeyEdges) UserOrErr

func (e PrivateKeyEdges) 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 PrivateKeyGroupBy

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

PrivateKeyGroupBy is the group-by builder for PrivateKey entities.

func (*PrivateKeyGroupBy) Aggregate

func (pkgb *PrivateKeyGroupBy) Aggregate(fns ...AggregateFunc) *PrivateKeyGroupBy

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

func (*PrivateKeyGroupBy) Bool

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

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

func (*PrivateKeyGroupBy) BoolX

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

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

func (*PrivateKeyGroupBy) Bools

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

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

func (*PrivateKeyGroupBy) BoolsX

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

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

func (*PrivateKeyGroupBy) Float64

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

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

func (*PrivateKeyGroupBy) Float64X

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

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

func (*PrivateKeyGroupBy) Float64s

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

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

func (*PrivateKeyGroupBy) Float64sX

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

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

func (*PrivateKeyGroupBy) Int

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

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

func (*PrivateKeyGroupBy) IntX

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

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

func (*PrivateKeyGroupBy) Ints

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

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

func (*PrivateKeyGroupBy) IntsX

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

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

func (*PrivateKeyGroupBy) Scan

func (pkgb *PrivateKeyGroupBy) Scan(ctx context.Context, v interface{}) error

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

func (*PrivateKeyGroupBy) ScanX

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

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

func (*PrivateKeyGroupBy) String

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

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

func (*PrivateKeyGroupBy) StringX

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

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

func (*PrivateKeyGroupBy) Strings

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

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

func (*PrivateKeyGroupBy) StringsX

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

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

type PrivateKeyMutation

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

PrivateKeyMutation represents an operation that mutates the PrivateKey nodes in the graph.

func (*PrivateKeyMutation) AddField

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

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

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

func (*PrivateKeyMutation) AddedField

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

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

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

func (*PrivateKeyMutation) AddedIDs

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

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

func (*PrivateKeyMutation) Alg

func (m *PrivateKeyMutation) Alg() (r string, exists bool)

Alg returns the value of the "alg" field in the mutation.

func (*PrivateKeyMutation) AlgCleared

func (m *PrivateKeyMutation) AlgCleared() bool

AlgCleared returns if the "alg" field was cleared in this mutation.

func (*PrivateKeyMutation) ClearAlg

func (m *PrivateKeyMutation) ClearAlg()

ClearAlg clears the value of the "alg" field.

func (*PrivateKeyMutation) ClearEdge

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

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

func (m *PrivateKeyMutation) ClearUser()

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

func (*PrivateKeyMutation) ClearedEdges

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

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

func (*PrivateKeyMutation) ClearedFields

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

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

func (PrivateKeyMutation) Client

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

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

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

func (*PrivateKeyMutation) EdgeCleared

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

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

func (*PrivateKeyMutation) Field

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

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

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

func (*PrivateKeyMutation) Fields

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

func (m *PrivateKeyMutation) 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 (*PrivateKeyMutation) IDs

func (m *PrivateKeyMutation) 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 (*PrivateKeyMutation) Jwk

func (m *PrivateKeyMutation) Jwk() (r []uint8, exists bool)

Jwk returns the value of the "jwk" field in the mutation.

func (*PrivateKeyMutation) Kty

func (m *PrivateKeyMutation) Kty() (r string, exists bool)

Kty returns the value of the "kty" field in the mutation.

func (*PrivateKeyMutation) OldAlg

func (m *PrivateKeyMutation) OldAlg(ctx context.Context) (v string, err error)

OldAlg returns the old "alg" field's value of the PrivateKey entity. If the PrivateKey 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 (*PrivateKeyMutation) OldCreatedAt

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

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

func (m *PrivateKeyMutation) 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 (*PrivateKeyMutation) OldJwk

func (m *PrivateKeyMutation) OldJwk(ctx context.Context) (v []uint8, err error)

OldJwk returns the old "jwk" field's value of the PrivateKey entity. If the PrivateKey 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 (*PrivateKeyMutation) OldKty

func (m *PrivateKeyMutation) OldKty(ctx context.Context) (v string, err error)

OldKty returns the old "kty" field's value of the PrivateKey entity. If the PrivateKey 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 (*PrivateKeyMutation) OldUpdatedAt

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

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

func (m *PrivateKeyMutation) Op() Op

Op returns the operation name.

func (*PrivateKeyMutation) RemovedEdges

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

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

func (*PrivateKeyMutation) RemovedIDs

func (m *PrivateKeyMutation) 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 (*PrivateKeyMutation) ResetAlg

func (m *PrivateKeyMutation) ResetAlg()

ResetAlg resets all changes to the "alg" field.

func (*PrivateKeyMutation) ResetCreatedAt

func (m *PrivateKeyMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*PrivateKeyMutation) ResetEdge

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

func (m *PrivateKeyMutation) 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 (*PrivateKeyMutation) ResetJwk

func (m *PrivateKeyMutation) ResetJwk()

ResetJwk resets all changes to the "jwk" field.

func (*PrivateKeyMutation) ResetKty

func (m *PrivateKeyMutation) ResetKty()

ResetKty resets all changes to the "kty" field.

func (*PrivateKeyMutation) ResetUpdatedAt

func (m *PrivateKeyMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*PrivateKeyMutation) ResetUser

func (m *PrivateKeyMutation) ResetUser()

ResetUser resets all changes to the "user" edge.

func (*PrivateKeyMutation) SetAlg

func (m *PrivateKeyMutation) SetAlg(s string)

SetAlg sets the "alg" field.

func (*PrivateKeyMutation) SetCreatedAt

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

SetCreatedAt sets the "created_at" field.

func (*PrivateKeyMutation) SetField

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

func (m *PrivateKeyMutation) SetID(id string)

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

func (*PrivateKeyMutation) SetJwk

func (m *PrivateKeyMutation) SetJwk(u []uint8)

SetJwk sets the "jwk" field.

func (*PrivateKeyMutation) SetKty

func (m *PrivateKeyMutation) SetKty(s string)

SetKty sets the "kty" field.

func (*PrivateKeyMutation) SetUpdatedAt

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

SetUpdatedAt sets the "updated_at" field.

func (*PrivateKeyMutation) SetUserID

func (m *PrivateKeyMutation) SetUserID(id string)

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

func (PrivateKeyMutation) Tx

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

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

func (*PrivateKeyMutation) Type

func (m *PrivateKeyMutation) Type() string

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

func (*PrivateKeyMutation) UpdatedAt

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

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

func (*PrivateKeyMutation) UserCleared

func (m *PrivateKeyMutation) UserCleared() bool

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

func (*PrivateKeyMutation) UserID

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

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

func (*PrivateKeyMutation) UserIDs

func (m *PrivateKeyMutation) 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 (*PrivateKeyMutation) Where

func (m *PrivateKeyMutation) Where(ps ...predicate.PrivateKey)

Where appends a list predicates to the PrivateKeyMutation builder.

type PrivateKeyQuery

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

PrivateKeyQuery is the builder for querying PrivateKey entities.

func (*PrivateKeyQuery) All

func (pkq *PrivateKeyQuery) All(ctx context.Context) ([]*PrivateKey, error)

All executes the query and returns a list of PrivateKeys.

func (*PrivateKeyQuery) AllX

func (pkq *PrivateKeyQuery) AllX(ctx context.Context) []*PrivateKey

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

func (*PrivateKeyQuery) Clone

func (pkq *PrivateKeyQuery) Clone() *PrivateKeyQuery

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

func (*PrivateKeyQuery) Count

func (pkq *PrivateKeyQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*PrivateKeyQuery) CountX

func (pkq *PrivateKeyQuery) CountX(ctx context.Context) int

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

func (*PrivateKeyQuery) Exist

func (pkq *PrivateKeyQuery) Exist(ctx context.Context) (bool, error)

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

func (*PrivateKeyQuery) ExistX

func (pkq *PrivateKeyQuery) ExistX(ctx context.Context) bool

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

func (*PrivateKeyQuery) First

func (pkq *PrivateKeyQuery) First(ctx context.Context) (*PrivateKey, error)

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

func (*PrivateKeyQuery) FirstID

func (pkq *PrivateKeyQuery) FirstID(ctx context.Context) (id string, err error)

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

func (*PrivateKeyQuery) FirstIDX

func (pkq *PrivateKeyQuery) FirstIDX(ctx context.Context) string

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

func (*PrivateKeyQuery) FirstX

func (pkq *PrivateKeyQuery) FirstX(ctx context.Context) *PrivateKey

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

func (*PrivateKeyQuery) GroupBy

func (pkq *PrivateKeyQuery) GroupBy(field string, fields ...string) *PrivateKeyGroupBy

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 {
	Kty string `json:"kty,omitempty"`
	Count int `json:"count,omitempty"`
}

client.PrivateKey.Query().
	GroupBy(privatekey.FieldKty).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*PrivateKeyQuery) IDs

func (pkq *PrivateKeyQuery) IDs(ctx context.Context) ([]string, error)

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

func (*PrivateKeyQuery) IDsX

func (pkq *PrivateKeyQuery) IDsX(ctx context.Context) []string

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

func (*PrivateKeyQuery) Limit

func (pkq *PrivateKeyQuery) Limit(limit int) *PrivateKeyQuery

Limit adds a limit step to the query.

func (*PrivateKeyQuery) Offset

func (pkq *PrivateKeyQuery) Offset(offset int) *PrivateKeyQuery

Offset adds an offset step to the query.

func (*PrivateKeyQuery) Only

func (pkq *PrivateKeyQuery) Only(ctx context.Context) (*PrivateKey, error)

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

func (*PrivateKeyQuery) OnlyID

func (pkq *PrivateKeyQuery) OnlyID(ctx context.Context) (id string, err error)

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

func (*PrivateKeyQuery) OnlyIDX

func (pkq *PrivateKeyQuery) OnlyIDX(ctx context.Context) string

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

func (*PrivateKeyQuery) OnlyX

func (pkq *PrivateKeyQuery) OnlyX(ctx context.Context) *PrivateKey

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

func (*PrivateKeyQuery) Order

func (pkq *PrivateKeyQuery) Order(o ...OrderFunc) *PrivateKeyQuery

Order adds an order step to the query.

func (*PrivateKeyQuery) QueryUser

func (pkq *PrivateKeyQuery) QueryUser() *UserQuery

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

func (*PrivateKeyQuery) Select

func (pkq *PrivateKeyQuery) Select(fields ...string) *PrivateKeySelect

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 {
	Kty string `json:"kty,omitempty"`
}

client.PrivateKey.Query().
	Select(privatekey.FieldKty).
	Scan(ctx, &v)

func (*PrivateKeyQuery) Unique

func (pkq *PrivateKeyQuery) Unique(unique bool) *PrivateKeyQuery

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

Where adds a new predicate for the PrivateKeyQuery builder.

func (*PrivateKeyQuery) WithUser

func (pkq *PrivateKeyQuery) WithUser(opts ...func(*UserQuery)) *PrivateKeyQuery

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 PrivateKeySelect

type PrivateKeySelect struct {
	*PrivateKeyQuery
	// contains filtered or unexported fields
}

PrivateKeySelect is the builder for selecting fields of PrivateKey entities.

func (*PrivateKeySelect) Bool

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

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

func (*PrivateKeySelect) BoolX

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

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

func (*PrivateKeySelect) Bools

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

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

func (*PrivateKeySelect) BoolsX

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

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

func (*PrivateKeySelect) Float64

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

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

func (*PrivateKeySelect) Float64X

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

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

func (*PrivateKeySelect) Float64s

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

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

func (*PrivateKeySelect) Float64sX

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

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

func (*PrivateKeySelect) Int

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

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

func (*PrivateKeySelect) IntX

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

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

func (*PrivateKeySelect) Ints

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

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

func (*PrivateKeySelect) IntsX

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

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

func (*PrivateKeySelect) Scan

func (pks *PrivateKeySelect) Scan(ctx context.Context, v interface{}) error

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

func (*PrivateKeySelect) ScanX

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

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

func (*PrivateKeySelect) String

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

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

func (*PrivateKeySelect) StringX

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

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

func (*PrivateKeySelect) Strings

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

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

func (*PrivateKeySelect) StringsX

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

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

type PrivateKeyUpdate

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

PrivateKeyUpdate is the builder for updating PrivateKey entities.

func (*PrivateKeyUpdate) ClearAlg

func (pku *PrivateKeyUpdate) ClearAlg() *PrivateKeyUpdate

ClearAlg clears the value of the "alg" field.

func (*PrivateKeyUpdate) ClearUser

func (pku *PrivateKeyUpdate) ClearUser() *PrivateKeyUpdate

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

func (*PrivateKeyUpdate) Exec

func (pku *PrivateKeyUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*PrivateKeyUpdate) ExecX

func (pku *PrivateKeyUpdate) ExecX(ctx context.Context)

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

func (*PrivateKeyUpdate) Mutation

func (pku *PrivateKeyUpdate) Mutation() *PrivateKeyMutation

Mutation returns the PrivateKeyMutation object of the builder.

func (*PrivateKeyUpdate) Save

func (pku *PrivateKeyUpdate) Save(ctx context.Context) (int, error)

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

func (*PrivateKeyUpdate) SaveX

func (pku *PrivateKeyUpdate) SaveX(ctx context.Context) int

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

func (*PrivateKeyUpdate) SetAlg

func (pku *PrivateKeyUpdate) SetAlg(s string) *PrivateKeyUpdate

SetAlg sets the "alg" field.

func (*PrivateKeyUpdate) SetJwk

func (pku *PrivateKeyUpdate) SetJwk(u []uint8) *PrivateKeyUpdate

SetJwk sets the "jwk" field.

func (*PrivateKeyUpdate) SetKty

func (pku *PrivateKeyUpdate) SetKty(s string) *PrivateKeyUpdate

SetKty sets the "kty" field.

func (*PrivateKeyUpdate) SetNillableAlg

func (pku *PrivateKeyUpdate) SetNillableAlg(s *string) *PrivateKeyUpdate

SetNillableAlg sets the "alg" field if the given value is not nil.

func (*PrivateKeyUpdate) SetNillableUpdatedAt

func (pku *PrivateKeyUpdate) SetNillableUpdatedAt(t *time.Time) *PrivateKeyUpdate

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

func (*PrivateKeyUpdate) SetNillableUserID

func (pku *PrivateKeyUpdate) SetNillableUserID(id *string) *PrivateKeyUpdate

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

func (*PrivateKeyUpdate) SetUpdatedAt

func (pku *PrivateKeyUpdate) SetUpdatedAt(t time.Time) *PrivateKeyUpdate

SetUpdatedAt sets the "updated_at" field.

func (*PrivateKeyUpdate) SetUser

func (pku *PrivateKeyUpdate) SetUser(u *User) *PrivateKeyUpdate

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

func (*PrivateKeyUpdate) SetUserID

func (pku *PrivateKeyUpdate) SetUserID(id string) *PrivateKeyUpdate

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

func (*PrivateKeyUpdate) Where

Where appends a list predicates to the PrivateKeyUpdate builder.

type PrivateKeyUpdateOne

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

PrivateKeyUpdateOne is the builder for updating a single PrivateKey entity.

func (*PrivateKeyUpdateOne) ClearAlg

func (pkuo *PrivateKeyUpdateOne) ClearAlg() *PrivateKeyUpdateOne

ClearAlg clears the value of the "alg" field.

func (*PrivateKeyUpdateOne) ClearUser

func (pkuo *PrivateKeyUpdateOne) ClearUser() *PrivateKeyUpdateOne

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

func (*PrivateKeyUpdateOne) Exec

func (pkuo *PrivateKeyUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*PrivateKeyUpdateOne) ExecX

func (pkuo *PrivateKeyUpdateOne) ExecX(ctx context.Context)

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

func (*PrivateKeyUpdateOne) Mutation

func (pkuo *PrivateKeyUpdateOne) Mutation() *PrivateKeyMutation

Mutation returns the PrivateKeyMutation object of the builder.

func (*PrivateKeyUpdateOne) Save

func (pkuo *PrivateKeyUpdateOne) Save(ctx context.Context) (*PrivateKey, error)

Save executes the query and returns the updated PrivateKey entity.

func (*PrivateKeyUpdateOne) SaveX

func (pkuo *PrivateKeyUpdateOne) SaveX(ctx context.Context) *PrivateKey

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

func (*PrivateKeyUpdateOne) Select

func (pkuo *PrivateKeyUpdateOne) Select(field string, fields ...string) *PrivateKeyUpdateOne

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

func (*PrivateKeyUpdateOne) SetAlg

SetAlg sets the "alg" field.

func (*PrivateKeyUpdateOne) SetJwk

func (pkuo *PrivateKeyUpdateOne) SetJwk(u []uint8) *PrivateKeyUpdateOne

SetJwk sets the "jwk" field.

func (*PrivateKeyUpdateOne) SetKty

SetKty sets the "kty" field.

func (*PrivateKeyUpdateOne) SetNillableAlg

func (pkuo *PrivateKeyUpdateOne) SetNillableAlg(s *string) *PrivateKeyUpdateOne

SetNillableAlg sets the "alg" field if the given value is not nil.

func (*PrivateKeyUpdateOne) SetNillableUpdatedAt

func (pkuo *PrivateKeyUpdateOne) SetNillableUpdatedAt(t *time.Time) *PrivateKeyUpdateOne

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

func (*PrivateKeyUpdateOne) SetNillableUserID

func (pkuo *PrivateKeyUpdateOne) SetNillableUserID(id *string) *PrivateKeyUpdateOne

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

func (*PrivateKeyUpdateOne) SetUpdatedAt

func (pkuo *PrivateKeyUpdateOne) SetUpdatedAt(t time.Time) *PrivateKeyUpdateOne

SetUpdatedAt sets the "updated_at" field.

func (*PrivateKeyUpdateOne) SetUser

func (pkuo *PrivateKeyUpdateOne) SetUser(u *User) *PrivateKeyUpdateOne

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

func (*PrivateKeyUpdateOne) SetUserID

func (pkuo *PrivateKeyUpdateOne) SetUserID(id string) *PrivateKeyUpdateOne

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

type PrivateKeys

type PrivateKeys []*PrivateKey

PrivateKeys is a parsable slice of PrivateKey.

type PublicKey

type PublicKey struct {

	// ID of the ent.
	ID string `json:"id,omitempty"`
	// Kty holds the value of the "kty" field.
	Kty string `json:"kty,omitempty"`
	// Alg holds the value of the "alg" field.
	Alg string `json:"alg,omitempty"`
	// Jwk holds the value of the "jwk" field.
	Jwk []uint8 `json:"jwk,omitempty"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// UpdatedAt holds the value of the "updated_at" field.
	UpdatedAt time.Time `json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

PublicKey is the model entity for the PublicKey schema.

func (*PublicKey) String

func (pk *PublicKey) String() string

String implements the fmt.Stringer.

func (*PublicKey) Unwrap

func (pk *PublicKey) Unwrap() *PublicKey

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

func (pk *PublicKey) Update() *PublicKeyUpdateOne

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

type PublicKeyClient

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

PublicKeyClient is a client for the PublicKey schema.

func NewPublicKeyClient

func NewPublicKeyClient(c config) *PublicKeyClient

NewPublicKeyClient returns a client for the PublicKey from the given config.

func (*PublicKeyClient) Create

func (c *PublicKeyClient) Create() *PublicKeyCreate

Create returns a builder for creating a PublicKey entity.

func (*PublicKeyClient) CreateBulk

func (c *PublicKeyClient) CreateBulk(builders ...*PublicKeyCreate) *PublicKeyCreateBulk

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

func (*PublicKeyClient) Delete

func (c *PublicKeyClient) Delete() *PublicKeyDelete

Delete returns a delete builder for PublicKey.

func (*PublicKeyClient) DeleteOne

func (c *PublicKeyClient) DeleteOne(pk *PublicKey) *PublicKeyDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*PublicKeyClient) DeleteOneID

func (c *PublicKeyClient) DeleteOneID(id string) *PublicKeyDeleteOne

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

func (*PublicKeyClient) Get

func (c *PublicKeyClient) Get(ctx context.Context, id string) (*PublicKey, error)

Get returns a PublicKey entity by its id.

func (*PublicKeyClient) GetX

func (c *PublicKeyClient) GetX(ctx context.Context, id string) *PublicKey

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

func (*PublicKeyClient) Hooks

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

Hooks returns the client hooks.

func (*PublicKeyClient) Query

func (c *PublicKeyClient) Query() *PublicKeyQuery

Query returns a query builder for PublicKey.

func (*PublicKeyClient) Update

func (c *PublicKeyClient) Update() *PublicKeyUpdate

Update returns an update builder for PublicKey.

func (*PublicKeyClient) UpdateOne

func (c *PublicKeyClient) UpdateOne(pk *PublicKey) *PublicKeyUpdateOne

UpdateOne returns an update builder for the given entity.

func (*PublicKeyClient) UpdateOneID

func (c *PublicKeyClient) UpdateOneID(id string) *PublicKeyUpdateOne

UpdateOneID returns an update builder for the given id.

func (*PublicKeyClient) Use

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

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

type PublicKeyCreate

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

PublicKeyCreate is the builder for creating a PublicKey entity.

func (*PublicKeyCreate) Exec

func (pkc *PublicKeyCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*PublicKeyCreate) ExecX

func (pkc *PublicKeyCreate) ExecX(ctx context.Context)

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

func (*PublicKeyCreate) Mutation

func (pkc *PublicKeyCreate) Mutation() *PublicKeyMutation

Mutation returns the PublicKeyMutation object of the builder.

func (*PublicKeyCreate) Save

func (pkc *PublicKeyCreate) Save(ctx context.Context) (*PublicKey, error)

Save creates the PublicKey in the database.

func (*PublicKeyCreate) SaveX

func (pkc *PublicKeyCreate) SaveX(ctx context.Context) *PublicKey

SaveX calls Save and panics if Save returns an error.

func (*PublicKeyCreate) SetAlg

func (pkc *PublicKeyCreate) SetAlg(s string) *PublicKeyCreate

SetAlg sets the "alg" field.

func (*PublicKeyCreate) SetCreatedAt

func (pkc *PublicKeyCreate) SetCreatedAt(t time.Time) *PublicKeyCreate

SetCreatedAt sets the "created_at" field.

func (*PublicKeyCreate) SetID

func (pkc *PublicKeyCreate) SetID(s string) *PublicKeyCreate

SetID sets the "id" field.

func (*PublicKeyCreate) SetJwk

func (pkc *PublicKeyCreate) SetJwk(u []uint8) *PublicKeyCreate

SetJwk sets the "jwk" field.

func (*PublicKeyCreate) SetKty

func (pkc *PublicKeyCreate) SetKty(s string) *PublicKeyCreate

SetKty sets the "kty" field.

func (*PublicKeyCreate) SetNillableAlg

func (pkc *PublicKeyCreate) SetNillableAlg(s *string) *PublicKeyCreate

SetNillableAlg sets the "alg" field if the given value is not nil.

func (*PublicKeyCreate) SetNillableCreatedAt

func (pkc *PublicKeyCreate) SetNillableCreatedAt(t *time.Time) *PublicKeyCreate

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

func (*PublicKeyCreate) SetNillableUpdatedAt

func (pkc *PublicKeyCreate) SetNillableUpdatedAt(t *time.Time) *PublicKeyCreate

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

func (*PublicKeyCreate) SetUpdatedAt

func (pkc *PublicKeyCreate) SetUpdatedAt(t time.Time) *PublicKeyCreate

SetUpdatedAt sets the "updated_at" field.

type PublicKeyCreateBulk

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

PublicKeyCreateBulk is the builder for creating many PublicKey entities in bulk.

func (*PublicKeyCreateBulk) Exec

func (pkcb *PublicKeyCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*PublicKeyCreateBulk) ExecX

func (pkcb *PublicKeyCreateBulk) ExecX(ctx context.Context)

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

func (*PublicKeyCreateBulk) Save

func (pkcb *PublicKeyCreateBulk) Save(ctx context.Context) ([]*PublicKey, error)

Save creates the PublicKey entities in the database.

func (*PublicKeyCreateBulk) SaveX

func (pkcb *PublicKeyCreateBulk) SaveX(ctx context.Context) []*PublicKey

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

type PublicKeyDelete

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

PublicKeyDelete is the builder for deleting a PublicKey entity.

func (*PublicKeyDelete) Exec

func (pkd *PublicKeyDelete) Exec(ctx context.Context) (int, error)

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

func (*PublicKeyDelete) ExecX

func (pkd *PublicKeyDelete) ExecX(ctx context.Context) int

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

func (*PublicKeyDelete) Where

Where appends a list predicates to the PublicKeyDelete builder.

type PublicKeyDeleteOne

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

PublicKeyDeleteOne is the builder for deleting a single PublicKey entity.

func (*PublicKeyDeleteOne) Exec

func (pkdo *PublicKeyDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*PublicKeyDeleteOne) ExecX

func (pkdo *PublicKeyDeleteOne) ExecX(ctx context.Context)

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

type PublicKeyGroupBy

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

PublicKeyGroupBy is the group-by builder for PublicKey entities.

func (*PublicKeyGroupBy) Aggregate

func (pkgb *PublicKeyGroupBy) Aggregate(fns ...AggregateFunc) *PublicKeyGroupBy

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

func (*PublicKeyGroupBy) Bool

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

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

func (*PublicKeyGroupBy) BoolX

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

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

func (*PublicKeyGroupBy) Bools

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

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

func (*PublicKeyGroupBy) BoolsX

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

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

func (*PublicKeyGroupBy) Float64

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

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

func (*PublicKeyGroupBy) Float64X

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

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

func (*PublicKeyGroupBy) Float64s

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

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

func (*PublicKeyGroupBy) Float64sX

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

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

func (*PublicKeyGroupBy) Int

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

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

func (*PublicKeyGroupBy) IntX

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

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

func (*PublicKeyGroupBy) Ints

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

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

func (*PublicKeyGroupBy) IntsX

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

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

func (*PublicKeyGroupBy) Scan

func (pkgb *PublicKeyGroupBy) Scan(ctx context.Context, v interface{}) error

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

func (*PublicKeyGroupBy) ScanX

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

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

func (*PublicKeyGroupBy) String

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

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

func (*PublicKeyGroupBy) StringX

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

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

func (*PublicKeyGroupBy) Strings

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

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

func (*PublicKeyGroupBy) StringsX

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

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

type PublicKeyMutation

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

PublicKeyMutation represents an operation that mutates the PublicKey nodes in the graph.

func (*PublicKeyMutation) AddField

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

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

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

func (*PublicKeyMutation) AddedField

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

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

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

func (*PublicKeyMutation) AddedIDs

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

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

func (*PublicKeyMutation) Alg

func (m *PublicKeyMutation) Alg() (r string, exists bool)

Alg returns the value of the "alg" field in the mutation.

func (*PublicKeyMutation) AlgCleared

func (m *PublicKeyMutation) AlgCleared() bool

AlgCleared returns if the "alg" field was cleared in this mutation.

func (*PublicKeyMutation) ClearAlg

func (m *PublicKeyMutation) ClearAlg()

ClearAlg clears the value of the "alg" field.

func (*PublicKeyMutation) ClearEdge

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

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

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

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

func (*PublicKeyMutation) ClearedFields

func (m *PublicKeyMutation) ClearedFields() []string

ClearedFields returns all nullable fields that were cleared during this mutation.

func (PublicKeyMutation) Client

func (m PublicKeyMutation) 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 (*PublicKeyMutation) CreatedAt

func (m *PublicKeyMutation) CreatedAt() (r time.Time, exists bool)

CreatedAt returns the value of the "created_at" field in the mutation.

func (*PublicKeyMutation) EdgeCleared

func (m *PublicKeyMutation) EdgeCleared(name string) bool

EdgeCleared returns a boolean which indicates if the edge with the given name was cleared in this mutation.

func (*PublicKeyMutation) Field

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) FieldCleared

func (m *PublicKeyMutation) FieldCleared(name string) bool

FieldCleared returns a boolean indicating if a field with the given name was cleared in this mutation.

func (*PublicKeyMutation) Fields

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) ID

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) IDs

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) Jwk

func (m *PublicKeyMutation) Jwk() (r []uint8, exists bool)

Jwk returns the value of the "jwk" field in the mutation.

func (*PublicKeyMutation) Kty

func (m *PublicKeyMutation) Kty() (r string, exists bool)

Kty returns the value of the "kty" field in the mutation.

func (*PublicKeyMutation) OldAlg

func (m *PublicKeyMutation) OldAlg(ctx context.Context) (v string, err error)

OldAlg returns the old "alg" field's value of the PublicKey entity. If the PublicKey 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 (*PublicKeyMutation) OldCreatedAt

func (m *PublicKeyMutation) OldCreatedAt(ctx context.Context) (v time.Time, err error)

OldCreatedAt returns the old "created_at" field's value of the PublicKey entity. If the PublicKey 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 (*PublicKeyMutation) OldField

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) OldJwk

func (m *PublicKeyMutation) OldJwk(ctx context.Context) (v []uint8, err error)

OldJwk returns the old "jwk" field's value of the PublicKey entity. If the PublicKey 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 (*PublicKeyMutation) OldKty

func (m *PublicKeyMutation) OldKty(ctx context.Context) (v string, err error)

OldKty returns the old "kty" field's value of the PublicKey entity. If the PublicKey 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 (*PublicKeyMutation) OldUpdatedAt

func (m *PublicKeyMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error)

OldUpdatedAt returns the old "updated_at" field's value of the PublicKey entity. If the PublicKey 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 (*PublicKeyMutation) Op

func (m *PublicKeyMutation) Op() Op

Op returns the operation name.

func (*PublicKeyMutation) RemovedEdges

func (m *PublicKeyMutation) RemovedEdges() []string

RemovedEdges returns all edge names that were removed in this mutation.

func (*PublicKeyMutation) RemovedIDs

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) ResetAlg

func (m *PublicKeyMutation) ResetAlg()

ResetAlg resets all changes to the "alg" field.

func (*PublicKeyMutation) ResetCreatedAt

func (m *PublicKeyMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*PublicKeyMutation) ResetEdge

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) ResetField

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) ResetJwk

func (m *PublicKeyMutation) ResetJwk()

ResetJwk resets all changes to the "jwk" field.

func (*PublicKeyMutation) ResetKty

func (m *PublicKeyMutation) ResetKty()

ResetKty resets all changes to the "kty" field.

func (*PublicKeyMutation) ResetUpdatedAt

func (m *PublicKeyMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*PublicKeyMutation) SetAlg

func (m *PublicKeyMutation) SetAlg(s string)

SetAlg sets the "alg" field.

func (*PublicKeyMutation) SetCreatedAt

func (m *PublicKeyMutation) SetCreatedAt(t time.Time)

SetCreatedAt sets the "created_at" field.

func (*PublicKeyMutation) SetField

func (m *PublicKeyMutation) 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 (*PublicKeyMutation) SetID

func (m *PublicKeyMutation) SetID(id string)

SetID sets the value of the id field. Note that this operation is only accepted on creation of PublicKey entities.

func (*PublicKeyMutation) SetJwk

func (m *PublicKeyMutation) SetJwk(u []uint8)

SetJwk sets the "jwk" field.

func (*PublicKeyMutation) SetKty

func (m *PublicKeyMutation) SetKty(s string)

SetKty sets the "kty" field.

func (*PublicKeyMutation) SetUpdatedAt

func (m *PublicKeyMutation) SetUpdatedAt(t time.Time)

SetUpdatedAt sets the "updated_at" field.

func (PublicKeyMutation) Tx

func (m PublicKeyMutation) Tx() (*Tx, error)

Tx returns an `ent.Tx` for mutations that were executed in transactions; it returns an error otherwise.

func (*PublicKeyMutation) Type

func (m *PublicKeyMutation) Type() string

Type returns the node type of this mutation (PublicKey).

func (*PublicKeyMutation) UpdatedAt

func (m *PublicKeyMutation) UpdatedAt() (r time.Time, exists bool)

UpdatedAt returns the value of the "updated_at" field in the mutation.

func (*PublicKeyMutation) Where

func (m *PublicKeyMutation) Where(ps ...predicate.PublicKey)

Where appends a list predicates to the PublicKeyMutation builder.

type PublicKeyQuery

type PublicKeyQuery struct {
	// contains filtered or unexported fields
}

PublicKeyQuery is the builder for querying PublicKey entities.

func (*PublicKeyQuery) All

func (pkq *PublicKeyQuery) All(ctx context.Context) ([]*PublicKey, error)

All executes the query and returns a list of PublicKeys.

func (*PublicKeyQuery) AllX

func (pkq *PublicKeyQuery) AllX(ctx context.Context) []*PublicKey

AllX is like All, but panics if an error occurs.

func (*PublicKeyQuery) Clone

func (pkq *PublicKeyQuery) Clone() *PublicKeyQuery

Clone returns a duplicate of the PublicKeyQuery builder, including all associated steps. It can be used to prepare common query builders and use them differently after the clone is made.

func (*PublicKeyQuery) Count

func (pkq *PublicKeyQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*PublicKeyQuery) CountX

func (pkq *PublicKeyQuery) CountX(ctx context.Context) int

CountX is like Count, but panics if an error occurs.

func (*PublicKeyQuery) Exist

func (pkq *PublicKeyQuery) Exist(ctx context.Context) (bool, error)

Exist returns true if the query has elements in the graph.

func (*PublicKeyQuery) ExistX

func (pkq *PublicKeyQuery) ExistX(ctx context.Context) bool

ExistX is like Exist, but panics if an error occurs.

func (*PublicKeyQuery) First

func (pkq *PublicKeyQuery) First(ctx context.Context) (*PublicKey, error)

First returns the first PublicKey entity from the query. Returns a *NotFoundError when no PublicKey was found.

func (*PublicKeyQuery) FirstID

func (pkq *PublicKeyQuery) FirstID(ctx context.Context) (id string, err error)

FirstID returns the first PublicKey ID from the query. Returns a *NotFoundError when no PublicKey ID was found.

func (*PublicKeyQuery) FirstIDX

func (pkq *PublicKeyQuery) FirstIDX(ctx context.Context) string

FirstIDX is like FirstID, but panics if an error occurs.

func (*PublicKeyQuery) FirstX

func (pkq *PublicKeyQuery) FirstX(ctx context.Context) *PublicKey

FirstX is like First, but panics if an error occurs.

func (*PublicKeyQuery) GroupBy

func (pkq *PublicKeyQuery) GroupBy(field string, fields ...string) *PublicKeyGroupBy

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 {
	Kty string `json:"kty,omitempty"`
	Count int `json:"count,omitempty"`
}

client.PublicKey.Query().
	GroupBy(publickey.FieldKty).
	Aggregate(ent.Count()).
	Scan(ctx, &v)

func (*PublicKeyQuery) IDs

func (pkq *PublicKeyQuery) IDs(ctx context.Context) ([]string, error)

IDs executes the query and returns a list of PublicKey IDs.

func (*PublicKeyQuery) IDsX

func (pkq *PublicKeyQuery) IDsX(ctx context.Context) []string

IDsX is like IDs, but panics if an error occurs.

func (*PublicKeyQuery) Limit

func (pkq *PublicKeyQuery) Limit(limit int) *PublicKeyQuery

Limit adds a limit step to the query.

func (*PublicKeyQuery) Offset

func (pkq *PublicKeyQuery) Offset(offset int) *PublicKeyQuery

Offset adds an offset step to the query.

func (*PublicKeyQuery) Only

func (pkq *PublicKeyQuery) Only(ctx context.Context) (*PublicKey, error)

Only returns a single PublicKey entity found by the query, ensuring it only returns one. Returns a *NotSingularError when more than one PublicKey entity is found. Returns a *NotFoundError when no PublicKey entities are found.

func (*PublicKeyQuery) OnlyID

func (pkq *PublicKeyQuery) OnlyID(ctx context.Context) (id string, err error)

OnlyID is like Only, but returns the only PublicKey ID in the query. Returns a *NotSingularError when more than one PublicKey ID is found. Returns a *NotFoundError when no entities are found.

func (*PublicKeyQuery) OnlyIDX

func (pkq *PublicKeyQuery) OnlyIDX(ctx context.Context) string

OnlyIDX is like OnlyID, but panics if an error occurs.

func (*PublicKeyQuery) OnlyX

func (pkq *PublicKeyQuery) OnlyX(ctx context.Context) *PublicKey

OnlyX is like Only, but panics if an error occurs.

func (*PublicKeyQuery) Order

func (pkq *PublicKeyQuery) Order(o ...OrderFunc) *PublicKeyQuery

Order adds an order step to the query.

func (*PublicKeyQuery) Select

func (pkq *PublicKeyQuery) Select(fields ...string) *PublicKeySelect

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 {
	Kty string `json:"kty,omitempty"`
}

client.PublicKey.Query().
	Select(publickey.FieldKty).
	Scan(ctx, &v)

func (*PublicKeyQuery) Unique

func (pkq *PublicKeyQuery) Unique(unique bool) *PublicKeyQuery

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 (*PublicKeyQuery) Where

func (pkq *PublicKeyQuery) Where(ps ...predicate.PublicKey) *PublicKeyQuery

Where adds a new predicate for the PublicKeyQuery builder.

type PublicKeySelect

type PublicKeySelect struct {
	*PublicKeyQuery
	// contains filtered or unexported fields
}

PublicKeySelect is the builder for selecting fields of PublicKey entities.

func (*PublicKeySelect) Bool

func (s *PublicKeySelect) Bool(ctx context.Context) (_ bool, err error)

Bool returns a single bool from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) BoolX

func (s *PublicKeySelect) BoolX(ctx context.Context) bool

BoolX is like Bool, but panics if an error occurs.

func (*PublicKeySelect) Bools

func (s *PublicKeySelect) Bools(ctx context.Context) ([]bool, error)

Bools returns list of bools from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) BoolsX

func (s *PublicKeySelect) BoolsX(ctx context.Context) []bool

BoolsX is like Bools, but panics if an error occurs.

func (*PublicKeySelect) Float64

func (s *PublicKeySelect) Float64(ctx context.Context) (_ float64, err error)

Float64 returns a single float64 from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) Float64X

func (s *PublicKeySelect) Float64X(ctx context.Context) float64

Float64X is like Float64, but panics if an error occurs.

func (*PublicKeySelect) Float64s

func (s *PublicKeySelect) Float64s(ctx context.Context) ([]float64, error)

Float64s returns list of float64s from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) Float64sX

func (s *PublicKeySelect) Float64sX(ctx context.Context) []float64

Float64sX is like Float64s, but panics if an error occurs.

func (*PublicKeySelect) Int

func (s *PublicKeySelect) Int(ctx context.Context) (_ int, err error)

Int returns a single int from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) IntX

func (s *PublicKeySelect) IntX(ctx context.Context) int

IntX is like Int, but panics if an error occurs.

func (*PublicKeySelect) Ints

func (s *PublicKeySelect) Ints(ctx context.Context) ([]int, error)

Ints returns list of ints from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) IntsX

func (s *PublicKeySelect) IntsX(ctx context.Context) []int

IntsX is like Ints, but panics if an error occurs.

func (*PublicKeySelect) Scan

func (pks *PublicKeySelect) Scan(ctx context.Context, v interface{}) error

Scan applies the selector query and scans the result into the given value.

func (*PublicKeySelect) ScanX

func (s *PublicKeySelect) ScanX(ctx context.Context, v interface{})

ScanX is like Scan, but panics if an error occurs.

func (*PublicKeySelect) String

func (s *PublicKeySelect) String(ctx context.Context) (_ string, err error)

String returns a single string from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) StringX

func (s *PublicKeySelect) StringX(ctx context.Context) string

StringX is like String, but panics if an error occurs.

func (*PublicKeySelect) Strings

func (s *PublicKeySelect) Strings(ctx context.Context) ([]string, error)

Strings returns list of strings from a selector. It is only allowed when selecting one field.

func (*PublicKeySelect) StringsX

func (s *PublicKeySelect) StringsX(ctx context.Context) []string

StringsX is like Strings, but panics if an error occurs.

type PublicKeyUpdate

type PublicKeyUpdate struct {
	// contains filtered or unexported fields
}

PublicKeyUpdate is the builder for updating PublicKey entities.

func (*PublicKeyUpdate) ClearAlg

func (pku *PublicKeyUpdate) ClearAlg() *PublicKeyUpdate

ClearAlg clears the value of the "alg" field.

func (*PublicKeyUpdate) Exec

func (pku *PublicKeyUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*PublicKeyUpdate) ExecX

func (pku *PublicKeyUpdate) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*PublicKeyUpdate) Mutation

func (pku *PublicKeyUpdate) Mutation() *PublicKeyMutation

Mutation returns the PublicKeyMutation object of the builder.

func (*PublicKeyUpdate) Save

func (pku *PublicKeyUpdate) Save(ctx context.Context) (int, error)

Save executes the query and returns the number of nodes affected by the update operation.

func (*PublicKeyUpdate) SaveX

func (pku *PublicKeyUpdate) SaveX(ctx context.Context) int

SaveX is like Save, but panics if an error occurs.

func (*PublicKeyUpdate) SetAlg

func (pku *PublicKeyUpdate) SetAlg(s string) *PublicKeyUpdate

SetAlg sets the "alg" field.

func (*PublicKeyUpdate) SetJwk

func (pku *PublicKeyUpdate) SetJwk(u []uint8) *PublicKeyUpdate

SetJwk sets the "jwk" field.

func (*PublicKeyUpdate) SetKty

func (pku *PublicKeyUpdate) SetKty(s string) *PublicKeyUpdate

SetKty sets the "kty" field.

func (*PublicKeyUpdate) SetNillableAlg

func (pku *PublicKeyUpdate) SetNillableAlg(s *string) *PublicKeyUpdate

SetNillableAlg sets the "alg" field if the given value is not nil.

func (*PublicKeyUpdate) SetNillableUpdatedAt

func (pku *PublicKeyUpdate) SetNillableUpdatedAt(t *time.Time) *PublicKeyUpdate

SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.

func (*PublicKeyUpdate) SetUpdatedAt

func (pku *PublicKeyUpdate) SetUpdatedAt(t time.Time) *PublicKeyUpdate

SetUpdatedAt sets the "updated_at" field.

func (*PublicKeyUpdate) Where

Where appends a list predicates to the PublicKeyUpdate builder.

type PublicKeyUpdateOne

type PublicKeyUpdateOne struct {
	// contains filtered or unexported fields
}

PublicKeyUpdateOne is the builder for updating a single PublicKey entity.

func (*PublicKeyUpdateOne) ClearAlg

func (pkuo *PublicKeyUpdateOne) ClearAlg() *PublicKeyUpdateOne

ClearAlg clears the value of the "alg" field.

func (*PublicKeyUpdateOne) Exec

func (pkuo *PublicKeyUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*PublicKeyUpdateOne) ExecX

func (pkuo *PublicKeyUpdateOne) ExecX(ctx context.Context)

ExecX is like Exec, but panics if an error occurs.

func (*PublicKeyUpdateOne) Mutation

func (pkuo *PublicKeyUpdateOne) Mutation() *PublicKeyMutation

Mutation returns the PublicKeyMutation object of the builder.

func (*PublicKeyUpdateOne) Save

func (pkuo *PublicKeyUpdateOne) Save(ctx context.Context) (*PublicKey, error)

Save executes the query and returns the updated PublicKey entity.

func (*PublicKeyUpdateOne) SaveX

func (pkuo *PublicKeyUpdateOne) SaveX(ctx context.Context) *PublicKey

SaveX is like Save, but panics if an error occurs.

func (*PublicKeyUpdateOne) Select

func (pkuo *PublicKeyUpdateOne) Select(field string, fields ...string) *PublicKeyUpdateOne

Select allows selecting one or more fields (columns) of the returned entity. The default is selecting all fields defined in the entity schema.

func (*PublicKeyUpdateOne) SetAlg

func (pkuo *PublicKeyUpdateOne) SetAlg(s string) *PublicKeyUpdateOne

SetAlg sets the "alg" field.

func (*PublicKeyUpdateOne) SetJwk

func (pkuo *PublicKeyUpdateOne) SetJwk(u []uint8) *PublicKeyUpdateOne

SetJwk sets the "jwk" field.

func (*PublicKeyUpdateOne) SetKty

func (pkuo *PublicKeyUpdateOne) SetKty(s string) *PublicKeyUpdateOne

SetKty sets the "kty" field.

func (*PublicKeyUpdateOne) SetNillableAlg

func (pkuo *PublicKeyUpdateOne) SetNillableAlg(s *string) *PublicKeyUpdateOne

SetNillableAlg sets the "alg" field if the given value is not nil.

func (*PublicKeyUpdateOne) SetNillableUpdatedAt

func (pkuo *PublicKeyUpdateOne) SetNillableUpdatedAt(t *time.Time) *PublicKeyUpdateOne

SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.

func (*PublicKeyUpdateOne) SetUpdatedAt

func (pkuo *PublicKeyUpdateOne) SetUpdatedAt(t time.Time) *PublicKeyUpdateOne

SetUpdatedAt sets the "updated_at" field.

type PublicKeys

type PublicKeys []*PublicKey

PublicKeys is a parsable slice of PublicKey.

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 {

	// Credential is the client for interacting with the Credential builders.
	Credential *CredentialClient
	// DID is the client for interacting with the DID builders.
	DID *DIDClient
	// NaturalPerson is the client for interacting with the NaturalPerson builders.
	NaturalPerson *NaturalPersonClient
	// PrivateKey is the client for interacting with the PrivateKey builders.
	PrivateKey *PrivateKeyClient
	// PublicKey is the client for interacting with the PublicKey builders.
	PublicKey *PublicKeyClient
	// 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 string `json:"id,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"`
	// Type holds the value of the "type" field.
	Type string `json:"type,omitempty"`
	// Password holds the value of the "password" field.
	Password []byte `json:"-"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// UpdatedAt holds the value of the "updated_at" field.
	UpdatedAt time.Time `json:"updated_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) QueryCredentials

func (u *User) QueryCredentials() *CredentialQuery

QueryCredentials queries the "credentials" edge of the User entity.

func (*User) QueryDids

func (u *User) QueryDids() *DIDQuery

QueryDids queries the "dids" edge of the User entity.

func (*User) QueryKeys

func (u *User) QueryKeys() *PrivateKeyQuery

QueryKeys queries the "keys" 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) *CredentialQuery

QueryCredentials queries the credentials edge of a User.

func (*UserClient) QueryDids

func (c *UserClient) QueryDids(u *User) *DIDQuery

QueryDids queries the dids edge of a User.

func (*UserClient) QueryKeys

func (c *UserClient) QueryKeys(u *User) *PrivateKeyQuery

QueryKeys queries the keys 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 Credential entity by IDs.

func (*UserCreate) AddCredentials

func (uc *UserCreate) AddCredentials(c ...*Credential) *UserCreate

AddCredentials adds the "credentials" edges to the Credential entity.

func (*UserCreate) AddDidIDs

func (uc *UserCreate) AddDidIDs(ids ...string) *UserCreate

AddDidIDs adds the "dids" edge to the DID entity by IDs.

func (*UserCreate) AddDids

func (uc *UserCreate) AddDids(d ...*DID) *UserCreate

AddDids adds the "dids" edges to the DID entity.

func (*UserCreate) AddKeyIDs

func (uc *UserCreate) AddKeyIDs(ids ...string) *UserCreate

AddKeyIDs adds the "keys" edge to the PrivateKey entity by IDs.

func (*UserCreate) AddKeys

func (uc *UserCreate) AddKeys(p ...*PrivateKey) *UserCreate

AddKeys adds the "keys" edges to the PrivateKey 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) SetCreatedAt

func (uc *UserCreate) SetCreatedAt(t time.Time) *UserCreate

SetCreatedAt sets the "created_at" 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) SetNillableCreatedAt

func (uc *UserCreate) SetNillableCreatedAt(t *time.Time) *UserCreate

SetNillableCreatedAt sets the "created_at" field if the given value is not nil.

func (*UserCreate) SetNillableDisplayname

func (uc *UserCreate) SetNillableDisplayname(s *string) *UserCreate

SetNillableDisplayname sets the "displayname" field if the given value is not nil.

func (*UserCreate) SetNillableUpdatedAt

func (uc *UserCreate) SetNillableUpdatedAt(t *time.Time) *UserCreate

SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.

func (*UserCreate) SetPassword

func (uc *UserCreate) SetPassword(b []byte) *UserCreate

SetPassword sets the "password" field.

func (*UserCreate) SetType

func (uc *UserCreate) SetType(s string) *UserCreate

SetType sets the "type" field.

func (*UserCreate) SetUpdatedAt

func (uc *UserCreate) SetUpdatedAt(t time.Time) *UserCreate

SetUpdatedAt sets the "updated_at" field.

type UserCreateBulk

type UserCreateBulk struct {
	// contains filtered or unexported fields
}

UserCreateBulk is the builder for creating many User entities in bulk.

func (*UserCreateBulk) Exec

func (ucb *UserCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*UserCreateBulk) 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 {
	// Keys holds the value of the keys edge.
	Keys []*PrivateKey `json:"keys,omitempty"`
	// Dids holds the value of the dids edge.
	Dids []*DID `json:"dids,omitempty"`
	// Credentials holds the value of the credentials edge.
	Credentials []*Credential `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() ([]*Credential, error)

CredentialsOrErr returns the Credentials value or an error if the edge was not loaded in eager-loading.

func (UserEdges) DidsOrErr

func (e UserEdges) DidsOrErr() ([]*DID, error)

DidsOrErr returns the Dids value or an error if the edge was not loaded in eager-loading.

func (UserEdges) KeysOrErr

func (e UserEdges) KeysOrErr() ([]*PrivateKey, error)

KeysOrErr returns the Keys 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 Credential entity by ids.

func (*UserMutation) AddDidIDs

func (m *UserMutation) AddDidIDs(ids ...string)

AddDidIDs adds the "dids" edge to the DID 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) AddKeyIDs

func (m *UserMutation) AddKeyIDs(ids ...string)

AddKeyIDs adds the "keys" edge to the PrivateKey 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) ClearCredentials

func (m *UserMutation) ClearCredentials()

ClearCredentials clears the "credentials" edge to the Credential entity.

func (*UserMutation) ClearDids

func (m *UserMutation) ClearDids()

ClearDids clears the "dids" edge to the DID entity.

func (*UserMutation) ClearDisplayname

func (m *UserMutation) ClearDisplayname()

ClearDisplayname clears the value of the "displayname" field.

func (*UserMutation) ClearEdge

func (m *UserMutation) ClearEdge(name string) error

ClearEdge clears the value of the edge with the given name. It returns an error if that edge is not defined in the schema.

func (*UserMutation) 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) ClearKeys

func (m *UserMutation) ClearKeys()

ClearKeys clears the "keys" edge to the PrivateKey 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) CredentialsCleared

func (m *UserMutation) CredentialsCleared() bool

CredentialsCleared reports if the "credentials" edge to the Credential entity was cleared.

func (*UserMutation) CredentialsIDs

func (m *UserMutation) CredentialsIDs() (ids []string)

CredentialsIDs returns the "credentials" edge IDs in the mutation.

func (*UserMutation) DidsCleared

func (m *UserMutation) DidsCleared() bool

DidsCleared reports if the "dids" edge to the DID entity was cleared.

func (*UserMutation) DidsIDs

func (m *UserMutation) DidsIDs() (ids []string)

DidsIDs returns the "dids" 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) DisplaynameCleared

func (m *UserMutation) DisplaynameCleared() bool

DisplaynameCleared returns if the "displayname" field was cleared in this mutation.

func (*UserMutation) EdgeCleared

func (m *UserMutation) EdgeCleared(name string) bool

EdgeCleared returns a boolean which indicates if the edge with the given name was cleared in this mutation.

func (*UserMutation) 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) GetType

func (m *UserMutation) GetType() (r string, exists bool)

GetType returns the value of the "type" field in the mutation.

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) KeysCleared

func (m *UserMutation) KeysCleared() bool

KeysCleared reports if the "keys" edge to the PrivateKey entity was cleared.

func (*UserMutation) KeysIDs

func (m *UserMutation) KeysIDs() (ids []string)

KeysIDs returns the "keys" edge IDs in 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) 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) OldPassword

func (m *UserMutation) OldPassword(ctx context.Context) (v []byte, 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) OldType

func (m *UserMutation) OldType(ctx context.Context) (v string, err error)

OldType returns the old "type" field's value of the User entity. If the User object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*UserMutation) OldUpdatedAt

func (m *UserMutation) OldUpdatedAt(ctx context.Context) (v time.Time, err error)

OldUpdatedAt returns the old "updated_at" field's value of the User entity. If the User object wasn't provided to the builder, the object is fetched from the database. An error is returned if the mutation operation is not UpdateOne, or the database query fails.

func (*UserMutation) Op

func (m *UserMutation) Op() Op

Op returns the operation name.

func (*UserMutation) Password

func (m *UserMutation) Password() (r []byte, exists bool)

Password returns the value of the "password" field in the mutation.

func (*UserMutation) RemoveCredentialIDs

func (m *UserMutation) RemoveCredentialIDs(ids ...string)

RemoveCredentialIDs removes the "credentials" edge to the Credential entity by IDs.

func (*UserMutation) RemoveDidIDs

func (m *UserMutation) RemoveDidIDs(ids ...string)

RemoveDidIDs removes the "dids" edge to the DID entity by IDs.

func (*UserMutation) RemoveKeyIDs

func (m *UserMutation) RemoveKeyIDs(ids ...string)

RemoveKeyIDs removes the "keys" edge to the PrivateKey entity by IDs.

func (*UserMutation) RemovedCredentialsIDs

func (m *UserMutation) RemovedCredentialsIDs() (ids []string)

RemovedCredentials returns the removed IDs of the "credentials" edge to the Credential entity.

func (*UserMutation) RemovedDidsIDs

func (m *UserMutation) RemovedDidsIDs() (ids []string)

RemovedDids returns the removed IDs of the "dids" edge to the DID 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) RemovedKeysIDs

func (m *UserMutation) RemovedKeysIDs() (ids []string)

RemovedKeys returns the removed IDs of the "keys" edge to the PrivateKey entity.

func (*UserMutation) ResetCreatedAt

func (m *UserMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*UserMutation) ResetCredentials

func (m *UserMutation) ResetCredentials()

ResetCredentials resets all changes to the "credentials" edge.

func (*UserMutation) ResetDids

func (m *UserMutation) ResetDids()

ResetDids resets all changes to the "dids" 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) ResetKeys

func (m *UserMutation) ResetKeys()

ResetKeys resets all changes to the "keys" edge.

func (*UserMutation) ResetName

func (m *UserMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*UserMutation) ResetPassword

func (m *UserMutation) ResetPassword()

ResetPassword resets all changes to the "password" field.

func (*UserMutation) ResetType

func (m *UserMutation) ResetType()

ResetType resets all changes to the "type" field.

func (*UserMutation) ResetUpdatedAt

func (m *UserMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*UserMutation) SetCreatedAt

func (m *UserMutation) SetCreatedAt(t time.Time)

SetCreatedAt sets the "created_at" field.

func (*UserMutation) 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) SetPassword

func (m *UserMutation) SetPassword(b []byte)

SetPassword sets the "password" field.

func (*UserMutation) SetType

func (m *UserMutation) SetType(s string)

SetType sets the "type" field.

func (*UserMutation) SetUpdatedAt

func (m *UserMutation) SetUpdatedAt(t time.Time)

SetUpdatedAt sets the "updated_at" field.

func (UserMutation) Tx

func (m UserMutation) Tx() (*Tx, error)

Tx returns an `ent.Tx` for mutations that were executed in transactions; it returns an error otherwise.

func (*UserMutation) Type

func (m *UserMutation) Type() string

Type returns the node type of this mutation (User).

func (*UserMutation) UpdatedAt

func (m *UserMutation) UpdatedAt() (r time.Time, exists bool)

UpdatedAt returns the value of the "updated_at" field in the mutation.

func (*UserMutation) 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 {
	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) ([]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() *CredentialQuery

QueryCredentials chains the current query on the "credentials" edge.

func (*UserQuery) QueryDids

func (uq *UserQuery) QueryDids() *DIDQuery

QueryDids chains the current query on the "dids" edge.

func (*UserQuery) QueryKeys

func (uq *UserQuery) QueryKeys() *PrivateKeyQuery

QueryKeys chains the current query on the "keys" 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) WithCredentials

func (uq *UserQuery) WithCredentials(opts ...func(*CredentialQuery)) *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.

func (*UserQuery) WithDids

func (uq *UserQuery) WithDids(opts ...func(*DIDQuery)) *UserQuery

WithDids tells the query-builder to eager-load the nodes that are connected to the "dids" edge. The optional arguments are used to configure the query builder of the edge.

func (*UserQuery) WithKeys

func (uq *UserQuery) WithKeys(opts ...func(*PrivateKeyQuery)) *UserQuery

WithKeys tells the query-builder to eager-load the nodes that are connected to the "keys" 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 Credential entity by IDs.

func (*UserUpdate) AddCredentials

func (uu *UserUpdate) AddCredentials(c ...*Credential) *UserUpdate

AddCredentials adds the "credentials" edges to the Credential entity.

func (*UserUpdate) AddDidIDs

func (uu *UserUpdate) AddDidIDs(ids ...string) *UserUpdate

AddDidIDs adds the "dids" edge to the DID entity by IDs.

func (*UserUpdate) AddDids

func (uu *UserUpdate) AddDids(d ...*DID) *UserUpdate

AddDids adds the "dids" edges to the DID entity.

func (*UserUpdate) AddKeyIDs

func (uu *UserUpdate) AddKeyIDs(ids ...string) *UserUpdate

AddKeyIDs adds the "keys" edge to the PrivateKey entity by IDs.

func (*UserUpdate) AddKeys

func (uu *UserUpdate) AddKeys(p ...*PrivateKey) *UserUpdate

AddKeys adds the "keys" edges to the PrivateKey entity.

func (*UserUpdate) ClearCredentials

func (uu *UserUpdate) ClearCredentials() *UserUpdate

ClearCredentials clears all "credentials" edges to the Credential entity.

func (*UserUpdate) ClearDids

func (uu *UserUpdate) ClearDids() *UserUpdate

ClearDids clears all "dids" edges to the DID entity.

func (*UserUpdate) ClearDisplayname

func (uu *UserUpdate) ClearDisplayname() *UserUpdate

ClearDisplayname clears the value of the "displayname" field.

func (*UserUpdate) ClearKeys

func (uu *UserUpdate) ClearKeys() *UserUpdate

ClearKeys clears all "keys" edges to the PrivateKey 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 Credential entities by IDs.

func (*UserUpdate) RemoveCredentials

func (uu *UserUpdate) RemoveCredentials(c ...*Credential) *UserUpdate

RemoveCredentials removes "credentials" edges to Credential entities.

func (*UserUpdate) RemoveDidIDs

func (uu *UserUpdate) RemoveDidIDs(ids ...string) *UserUpdate

RemoveDidIDs removes the "dids" edge to DID entities by IDs.

func (*UserUpdate) RemoveDids

func (uu *UserUpdate) RemoveDids(d ...*DID) *UserUpdate

RemoveDids removes "dids" edges to DID entities.

func (*UserUpdate) RemoveKeyIDs

func (uu *UserUpdate) RemoveKeyIDs(ids ...string) *UserUpdate

RemoveKeyIDs removes the "keys" edge to PrivateKey entities by IDs.

func (*UserUpdate) RemoveKeys

func (uu *UserUpdate) RemoveKeys(p ...*PrivateKey) *UserUpdate

RemoveKeys removes "keys" edges to PrivateKey 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) SetNillableDisplayname

func (uu *UserUpdate) SetNillableDisplayname(s *string) *UserUpdate

SetNillableDisplayname sets the "displayname" field if the given value is not nil.

func (*UserUpdate) SetNillableUpdatedAt

func (uu *UserUpdate) SetNillableUpdatedAt(t *time.Time) *UserUpdate

SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.

func (*UserUpdate) SetPassword

func (uu *UserUpdate) SetPassword(b []byte) *UserUpdate

SetPassword sets the "password" field.

func (*UserUpdate) SetType

func (uu *UserUpdate) SetType(s string) *UserUpdate

SetType sets the "type" field.

func (*UserUpdate) SetUpdatedAt

func (uu *UserUpdate) SetUpdatedAt(t time.Time) *UserUpdate

SetUpdatedAt sets the "updated_at" field.

func (*UserUpdate) Where

func (uu *UserUpdate) Where(ps ...predicate.User) *UserUpdate

Where appends a list predicates to the UserUpdate builder.

type UserUpdateOne

type UserUpdateOne struct {
	// contains filtered or unexported fields
}

UserUpdateOne is the builder for updating a single User entity.

func (*UserUpdateOne) AddCredentialIDs

func (uuo *UserUpdateOne) AddCredentialIDs(ids ...string) *UserUpdateOne

AddCredentialIDs adds the "credentials" edge to the Credential entity by IDs.

func (*UserUpdateOne) AddCredentials

func (uuo *UserUpdateOne) AddCredentials(c ...*Credential) *UserUpdateOne

AddCredentials adds the "credentials" edges to the Credential entity.

func (*UserUpdateOne) AddDidIDs

func (uuo *UserUpdateOne) AddDidIDs(ids ...string) *UserUpdateOne

AddDidIDs adds the "dids" edge to the DID entity by IDs.

func (*UserUpdateOne) AddDids

func (uuo *UserUpdateOne) AddDids(d ...*DID) *UserUpdateOne

AddDids adds the "dids" edges to the DID entity.

func (*UserUpdateOne) AddKeyIDs

func (uuo *UserUpdateOne) AddKeyIDs(ids ...string) *UserUpdateOne

AddKeyIDs adds the "keys" edge to the PrivateKey entity by IDs.

func (*UserUpdateOne) AddKeys

func (uuo *UserUpdateOne) AddKeys(p ...*PrivateKey) *UserUpdateOne

AddKeys adds the "keys" edges to the PrivateKey entity.

func (*UserUpdateOne) ClearCredentials

func (uuo *UserUpdateOne) ClearCredentials() *UserUpdateOne

ClearCredentials clears all "credentials" edges to the Credential entity.

func (*UserUpdateOne) ClearDids

func (uuo *UserUpdateOne) ClearDids() *UserUpdateOne

ClearDids clears all "dids" edges to the DID entity.

func (*UserUpdateOne) ClearDisplayname

func (uuo *UserUpdateOne) ClearDisplayname() *UserUpdateOne

ClearDisplayname clears the value of the "displayname" field.

func (*UserUpdateOne) ClearKeys

func (uuo *UserUpdateOne) ClearKeys() *UserUpdateOne

ClearKeys clears all "keys" edges to the PrivateKey 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 Credential entities by IDs.

func (*UserUpdateOne) RemoveCredentials

func (uuo *UserUpdateOne) RemoveCredentials(c ...*Credential) *UserUpdateOne

RemoveCredentials removes "credentials" edges to Credential entities.

func (*UserUpdateOne) RemoveDidIDs

func (uuo *UserUpdateOne) RemoveDidIDs(ids ...string) *UserUpdateOne

RemoveDidIDs removes the "dids" edge to DID entities by IDs.

func (*UserUpdateOne) RemoveDids

func (uuo *UserUpdateOne) RemoveDids(d ...*DID) *UserUpdateOne

RemoveDids removes "dids" edges to DID entities.

func (*UserUpdateOne) RemoveKeyIDs

func (uuo *UserUpdateOne) RemoveKeyIDs(ids ...string) *UserUpdateOne

RemoveKeyIDs removes the "keys" edge to PrivateKey entities by IDs.

func (*UserUpdateOne) RemoveKeys

func (uuo *UserUpdateOne) RemoveKeys(p ...*PrivateKey) *UserUpdateOne

RemoveKeys removes "keys" edges to PrivateKey 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) SetNillableDisplayname

func (uuo *UserUpdateOne) SetNillableDisplayname(s *string) *UserUpdateOne

SetNillableDisplayname sets the "displayname" field if the given value is not nil.

func (*UserUpdateOne) SetNillableUpdatedAt

func (uuo *UserUpdateOne) SetNillableUpdatedAt(t *time.Time) *UserUpdateOne

SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.

func (*UserUpdateOne) SetPassword

func (uuo *UserUpdateOne) SetPassword(b []byte) *UserUpdateOne

SetPassword sets the "password" field.

func (*UserUpdateOne) SetType

func (uuo *UserUpdateOne) SetType(s string) *UserUpdateOne

SetType sets the "type" field.

func (*UserUpdateOne) SetUpdatedAt

func (uuo *UserUpdateOne) SetUpdatedAt(t time.Time) *UserUpdateOne

SetUpdatedAt sets the "updated_at" 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.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL