ent

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Nov 27, 2022 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

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

	// Node types.
	TypeAccount    = "Account"
	TypeCredential = "Credential"
	TypePrivateKey = "PrivateKey"
	TypePublicKey  = "PublicKey"
)

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 Account

type Account struct {

	// ID of the ent.
	ID int `json:"id,omitempty"`
	// Name holds the value of the "name" field.
	Name string `json:"name,omitempty"`
	// CreatedAt holds the value of the "created_at" field.
	CreatedAt time.Time `json:"created_at,omitempty"`
	// 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 AccountQuery when eager-loading is set.
	Edges AccountEdges `json:"edges"`
	// contains filtered or unexported fields
}

Account is the model entity for the Account schema.

func (*Account) QueryCredentials

func (a *Account) QueryCredentials() *CredentialQuery

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

func (*Account) QueryKeys

func (a *Account) QueryKeys() *PrivateKeyQuery

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

func (*Account) String

func (a *Account) String() string

String implements the fmt.Stringer.

func (*Account) Unwrap

func (a *Account) Unwrap() *Account

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

func (a *Account) Update() *AccountUpdateOne

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

type AccountClient

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

AccountClient is a client for the Account schema.

func NewAccountClient

func NewAccountClient(c config) *AccountClient

NewAccountClient returns a client for the Account from the given config.

func (*AccountClient) Create

func (c *AccountClient) Create() *AccountCreate

Create returns a builder for creating a Account entity.

func (*AccountClient) CreateBulk

func (c *AccountClient) CreateBulk(builders ...*AccountCreate) *AccountCreateBulk

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

func (*AccountClient) Delete

func (c *AccountClient) Delete() *AccountDelete

Delete returns a delete builder for Account.

func (*AccountClient) DeleteOne

func (c *AccountClient) DeleteOne(a *Account) *AccountDeleteOne

DeleteOne returns a builder for deleting the given entity.

func (*AccountClient) DeleteOneID

func (c *AccountClient) DeleteOneID(id int) *AccountDeleteOne

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

func (*AccountClient) Get

func (c *AccountClient) Get(ctx context.Context, id int) (*Account, error)

Get returns a Account entity by its id.

func (*AccountClient) GetX

func (c *AccountClient) GetX(ctx context.Context, id int) *Account

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

func (*AccountClient) Hooks

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

Hooks returns the client hooks.

func (*AccountClient) Query

func (c *AccountClient) Query() *AccountQuery

Query returns a query builder for Account.

func (*AccountClient) QueryCredentials

func (c *AccountClient) QueryCredentials(a *Account) *CredentialQuery

QueryCredentials queries the credentials edge of a Account.

func (*AccountClient) QueryKeys

func (c *AccountClient) QueryKeys(a *Account) *PrivateKeyQuery

QueryKeys queries the keys edge of a Account.

func (*AccountClient) Update

func (c *AccountClient) Update() *AccountUpdate

Update returns an update builder for Account.

func (*AccountClient) UpdateOne

func (c *AccountClient) UpdateOne(a *Account) *AccountUpdateOne

UpdateOne returns an update builder for the given entity.

func (*AccountClient) UpdateOneID

func (c *AccountClient) UpdateOneID(id int) *AccountUpdateOne

UpdateOneID returns an update builder for the given id.

func (*AccountClient) Use

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

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

type AccountCreate

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

AccountCreate is the builder for creating a Account entity.

func (*AccountCreate) AddCredentialIDs

func (ac *AccountCreate) AddCredentialIDs(ids ...string) *AccountCreate

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

func (*AccountCreate) AddCredentials

func (ac *AccountCreate) AddCredentials(c ...*Credential) *AccountCreate

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

func (*AccountCreate) AddKeyIDs

func (ac *AccountCreate) AddKeyIDs(ids ...string) *AccountCreate

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

func (*AccountCreate) AddKeys

func (ac *AccountCreate) AddKeys(p ...*PrivateKey) *AccountCreate

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

func (*AccountCreate) Exec

func (ac *AccountCreate) Exec(ctx context.Context) error

Exec executes the query.

func (*AccountCreate) ExecX

func (ac *AccountCreate) ExecX(ctx context.Context)

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

func (*AccountCreate) Mutation

func (ac *AccountCreate) Mutation() *AccountMutation

Mutation returns the AccountMutation object of the builder.

func (*AccountCreate) Save

func (ac *AccountCreate) Save(ctx context.Context) (*Account, error)

Save creates the Account in the database.

func (*AccountCreate) SaveX

func (ac *AccountCreate) SaveX(ctx context.Context) *Account

SaveX calls Save and panics if Save returns an error.

func (*AccountCreate) SetCreatedAt

func (ac *AccountCreate) SetCreatedAt(t time.Time) *AccountCreate

SetCreatedAt sets the "created_at" field.

func (*AccountCreate) SetName

func (ac *AccountCreate) SetName(s string) *AccountCreate

SetName sets the "name" field.

func (*AccountCreate) SetNillableCreatedAt

func (ac *AccountCreate) SetNillableCreatedAt(t *time.Time) *AccountCreate

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

func (*AccountCreate) SetNillableUpdatedAt

func (ac *AccountCreate) SetNillableUpdatedAt(t *time.Time) *AccountCreate

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

func (*AccountCreate) SetUpdatedAt

func (ac *AccountCreate) SetUpdatedAt(t time.Time) *AccountCreate

SetUpdatedAt sets the "updated_at" field.

type AccountCreateBulk

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

AccountCreateBulk is the builder for creating many Account entities in bulk.

func (*AccountCreateBulk) Exec

func (acb *AccountCreateBulk) Exec(ctx context.Context) error

Exec executes the query.

func (*AccountCreateBulk) ExecX

func (acb *AccountCreateBulk) ExecX(ctx context.Context)

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

func (*AccountCreateBulk) Save

func (acb *AccountCreateBulk) Save(ctx context.Context) ([]*Account, error)

Save creates the Account entities in the database.

func (*AccountCreateBulk) SaveX

func (acb *AccountCreateBulk) SaveX(ctx context.Context) []*Account

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

type AccountDelete

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

AccountDelete is the builder for deleting a Account entity.

func (*AccountDelete) Exec

func (ad *AccountDelete) Exec(ctx context.Context) (int, error)

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

func (*AccountDelete) ExecX

func (ad *AccountDelete) ExecX(ctx context.Context) int

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

func (*AccountDelete) Where

func (ad *AccountDelete) Where(ps ...predicate.Account) *AccountDelete

Where appends a list predicates to the AccountDelete builder.

type AccountDeleteOne

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

AccountDeleteOne is the builder for deleting a single Account entity.

func (*AccountDeleteOne) Exec

func (ado *AccountDeleteOne) Exec(ctx context.Context) error

Exec executes the deletion query.

func (*AccountDeleteOne) ExecX

func (ado *AccountDeleteOne) ExecX(ctx context.Context)

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

type AccountEdges

type AccountEdges 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
}

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

func (AccountEdges) CredentialsOrErr

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

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

func (AccountEdges) KeysOrErr

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

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

type AccountGroupBy

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

AccountGroupBy is the group-by builder for Account entities.

func (*AccountGroupBy) Aggregate

func (agb *AccountGroupBy) Aggregate(fns ...AggregateFunc) *AccountGroupBy

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

func (*AccountGroupBy) Bool

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

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

func (*AccountGroupBy) BoolX

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

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

func (*AccountGroupBy) Bools

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

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

func (*AccountGroupBy) BoolsX

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

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

func (*AccountGroupBy) Float64

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

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

func (*AccountGroupBy) Float64X

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

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

func (*AccountGroupBy) Float64s

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

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

func (*AccountGroupBy) Float64sX

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

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

func (*AccountGroupBy) Int

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

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

func (*AccountGroupBy) IntX

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

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

func (*AccountGroupBy) Ints

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

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

func (*AccountGroupBy) IntsX

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

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

func (*AccountGroupBy) Scan

func (agb *AccountGroupBy) Scan(ctx context.Context, v interface{}) error

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

func (*AccountGroupBy) ScanX

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

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

func (*AccountGroupBy) String

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

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

func (*AccountGroupBy) StringX

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

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

func (*AccountGroupBy) Strings

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

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

func (*AccountGroupBy) StringsX

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

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

type AccountMutation

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

AccountMutation represents an operation that mutates the Account nodes in the graph.

func (*AccountMutation) AddCredentialIDs

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

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

func (*AccountMutation) AddField

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

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

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

func (*AccountMutation) AddedEdges

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

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

func (*AccountMutation) AddedField

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

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

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

func (*AccountMutation) AddedIDs

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

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

func (*AccountMutation) ClearCredentials

func (m *AccountMutation) ClearCredentials()

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

func (*AccountMutation) ClearEdge

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

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

func (m *AccountMutation) ClearKeys()

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

func (*AccountMutation) ClearedEdges

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

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

func (*AccountMutation) ClearedFields

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

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

func (AccountMutation) Client

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

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

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

func (*AccountMutation) CredentialsCleared

func (m *AccountMutation) CredentialsCleared() bool

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

func (*AccountMutation) CredentialsIDs

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

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

func (*AccountMutation) EdgeCleared

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

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

func (*AccountMutation) Field

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

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

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

func (*AccountMutation) Fields

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

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

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

func (*AccountMutation) IDs

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

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

func (*AccountMutation) KeysCleared

func (m *AccountMutation) KeysCleared() bool

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

func (*AccountMutation) KeysIDs

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

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

func (*AccountMutation) Name

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

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

func (*AccountMutation) OldCreatedAt

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

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

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

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

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

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

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

func (m *AccountMutation) Op() Op

Op returns the operation name.

func (*AccountMutation) RemoveCredentialIDs

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

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

func (*AccountMutation) RemoveKeyIDs

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

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

func (*AccountMutation) RemovedCredentialsIDs

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

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

func (*AccountMutation) RemovedEdges

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

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

func (*AccountMutation) RemovedIDs

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

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

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

func (*AccountMutation) ResetCreatedAt

func (m *AccountMutation) ResetCreatedAt()

ResetCreatedAt resets all changes to the "created_at" field.

func (*AccountMutation) ResetCredentials

func (m *AccountMutation) ResetCredentials()

ResetCredentials resets all changes to the "credentials" edge.

func (*AccountMutation) ResetEdge

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

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

func (m *AccountMutation) ResetKeys()

ResetKeys resets all changes to the "keys" edge.

func (*AccountMutation) ResetName

func (m *AccountMutation) ResetName()

ResetName resets all changes to the "name" field.

func (*AccountMutation) ResetUpdatedAt

func (m *AccountMutation) ResetUpdatedAt()

ResetUpdatedAt resets all changes to the "updated_at" field.

func (*AccountMutation) SetCreatedAt

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

SetCreatedAt sets the "created_at" field.

func (*AccountMutation) SetField

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

func (m *AccountMutation) SetName(s string)

SetName sets the "name" field.

func (*AccountMutation) SetUpdatedAt

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

SetUpdatedAt sets the "updated_at" field.

func (AccountMutation) Tx

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

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

func (*AccountMutation) Type

func (m *AccountMutation) Type() string

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

func (*AccountMutation) UpdatedAt

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

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

func (*AccountMutation) Where

func (m *AccountMutation) Where(ps ...predicate.Account)

Where appends a list predicates to the AccountMutation builder.

type AccountQuery

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

AccountQuery is the builder for querying Account entities.

func (*AccountQuery) All

func (aq *AccountQuery) All(ctx context.Context) ([]*Account, error)

All executes the query and returns a list of Accounts.

func (*AccountQuery) AllX

func (aq *AccountQuery) AllX(ctx context.Context) []*Account

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

func (*AccountQuery) Clone

func (aq *AccountQuery) Clone() *AccountQuery

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

func (*AccountQuery) Count

func (aq *AccountQuery) Count(ctx context.Context) (int, error)

Count returns the count of the given query.

func (*AccountQuery) CountX

func (aq *AccountQuery) CountX(ctx context.Context) int

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

func (*AccountQuery) Exist

func (aq *AccountQuery) Exist(ctx context.Context) (bool, error)

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

func (*AccountQuery) ExistX

func (aq *AccountQuery) ExistX(ctx context.Context) bool

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

func (*AccountQuery) First

func (aq *AccountQuery) First(ctx context.Context) (*Account, error)

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

func (*AccountQuery) FirstID

func (aq *AccountQuery) FirstID(ctx context.Context) (id int, err error)

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

func (*AccountQuery) FirstIDX

func (aq *AccountQuery) FirstIDX(ctx context.Context) int

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

func (*AccountQuery) FirstX

func (aq *AccountQuery) FirstX(ctx context.Context) *Account

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

func (*AccountQuery) GroupBy

func (aq *AccountQuery) GroupBy(field string, fields ...string) *AccountGroupBy

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

func (*AccountQuery) IDs

func (aq *AccountQuery) IDs(ctx context.Context) ([]int, error)

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

func (*AccountQuery) IDsX

func (aq *AccountQuery) IDsX(ctx context.Context) []int

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

func (*AccountQuery) Limit

func (aq *AccountQuery) Limit(limit int) *AccountQuery

Limit adds a limit step to the query.

func (*AccountQuery) Offset

func (aq *AccountQuery) Offset(offset int) *AccountQuery

Offset adds an offset step to the query.

func (*AccountQuery) Only

func (aq *AccountQuery) Only(ctx context.Context) (*Account, error)

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

func (*AccountQuery) OnlyID

func (aq *AccountQuery) OnlyID(ctx context.Context) (id int, err error)

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

func (*AccountQuery) OnlyIDX

func (aq *AccountQuery) OnlyIDX(ctx context.Context) int

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

func (*AccountQuery) OnlyX

func (aq *AccountQuery) OnlyX(ctx context.Context) *Account

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

func (*AccountQuery) Order

func (aq *AccountQuery) Order(o ...OrderFunc) *AccountQuery

Order adds an order step to the query.

func (*AccountQuery) QueryCredentials

func (aq *AccountQuery) QueryCredentials() *CredentialQuery

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

func (*AccountQuery) QueryKeys

func (aq *AccountQuery) QueryKeys() *PrivateKeyQuery

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

func (*AccountQuery) Select

func (aq *AccountQuery) Select(fields ...string) *AccountSelect

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

func (*AccountQuery) Unique

func (aq *AccountQuery) Unique(unique bool) *AccountQuery

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

func (aq *AccountQuery) Where(ps ...predicate.Account) *AccountQuery

Where adds a new predicate for the AccountQuery builder.

func (*AccountQuery) WithCredentials

func (aq *AccountQuery) WithCredentials(opts ...func(*CredentialQuery)) *AccountQuery

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 (*AccountQuery) WithKeys

func (aq *AccountQuery) WithKeys(opts ...func(*PrivateKeyQuery)) *AccountQuery

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 AccountSelect

type AccountSelect struct {
	*AccountQuery
	// contains filtered or unexported fields
}

AccountSelect is the builder for selecting fields of Account entities.

func (*AccountSelect) Bool

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

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

func (*AccountSelect) BoolX

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

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

func (*AccountSelect) Bools

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

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

func (*AccountSelect) BoolsX

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

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

func (*AccountSelect) Float64

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

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

func (*AccountSelect) Float64X

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

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

func (*AccountSelect) Float64s

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

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

func (*AccountSelect) Float64sX

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

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

func (*AccountSelect) Int

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

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

func (*AccountSelect) IntX

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

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

func (*AccountSelect) Ints

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

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

func (*AccountSelect) IntsX

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

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

func (*AccountSelect) Scan

func (as *AccountSelect) Scan(ctx context.Context, v interface{}) error

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

func (*AccountSelect) ScanX

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

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

func (*AccountSelect) String

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

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

func (*AccountSelect) StringX

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

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

func (*AccountSelect) Strings

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

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

func (*AccountSelect) StringsX

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

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

type AccountUpdate

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

AccountUpdate is the builder for updating Account entities.

func (*AccountUpdate) AddCredentialIDs

func (au *AccountUpdate) AddCredentialIDs(ids ...string) *AccountUpdate

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

func (*AccountUpdate) AddCredentials

func (au *AccountUpdate) AddCredentials(c ...*Credential) *AccountUpdate

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

func (*AccountUpdate) AddKeyIDs

func (au *AccountUpdate) AddKeyIDs(ids ...string) *AccountUpdate

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

func (*AccountUpdate) AddKeys

func (au *AccountUpdate) AddKeys(p ...*PrivateKey) *AccountUpdate

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

func (*AccountUpdate) ClearCredentials

func (au *AccountUpdate) ClearCredentials() *AccountUpdate

ClearCredentials clears all "credentials" edges to the Credential entity.

func (*AccountUpdate) ClearKeys

func (au *AccountUpdate) ClearKeys() *AccountUpdate

ClearKeys clears all "keys" edges to the PrivateKey entity.

func (*AccountUpdate) Exec

func (au *AccountUpdate) Exec(ctx context.Context) error

Exec executes the query.

func (*AccountUpdate) ExecX

func (au *AccountUpdate) ExecX(ctx context.Context)

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

func (*AccountUpdate) Mutation

func (au *AccountUpdate) Mutation() *AccountMutation

Mutation returns the AccountMutation object of the builder.

func (*AccountUpdate) RemoveCredentialIDs

func (au *AccountUpdate) RemoveCredentialIDs(ids ...string) *AccountUpdate

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

func (*AccountUpdate) RemoveCredentials

func (au *AccountUpdate) RemoveCredentials(c ...*Credential) *AccountUpdate

RemoveCredentials removes "credentials" edges to Credential entities.

func (*AccountUpdate) RemoveKeyIDs

func (au *AccountUpdate) RemoveKeyIDs(ids ...string) *AccountUpdate

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

func (*AccountUpdate) RemoveKeys

func (au *AccountUpdate) RemoveKeys(p ...*PrivateKey) *AccountUpdate

RemoveKeys removes "keys" edges to PrivateKey entities.

func (*AccountUpdate) Save

func (au *AccountUpdate) Save(ctx context.Context) (int, error)

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

func (*AccountUpdate) SaveX

func (au *AccountUpdate) SaveX(ctx context.Context) int

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

func (*AccountUpdate) SetName

func (au *AccountUpdate) SetName(s string) *AccountUpdate

SetName sets the "name" field.

func (*AccountUpdate) SetNillableUpdatedAt

func (au *AccountUpdate) SetNillableUpdatedAt(t *time.Time) *AccountUpdate

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

func (*AccountUpdate) SetUpdatedAt

func (au *AccountUpdate) SetUpdatedAt(t time.Time) *AccountUpdate

SetUpdatedAt sets the "updated_at" field.

func (*AccountUpdate) Where

func (au *AccountUpdate) Where(ps ...predicate.Account) *AccountUpdate

Where appends a list predicates to the AccountUpdate builder.

type AccountUpdateOne

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

AccountUpdateOne is the builder for updating a single Account entity.

func (*AccountUpdateOne) AddCredentialIDs

func (auo *AccountUpdateOne) AddCredentialIDs(ids ...string) *AccountUpdateOne

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

func (*AccountUpdateOne) AddCredentials

func (auo *AccountUpdateOne) AddCredentials(c ...*Credential) *AccountUpdateOne

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

func (*AccountUpdateOne) AddKeyIDs

func (auo *AccountUpdateOne) AddKeyIDs(ids ...string) *AccountUpdateOne

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

func (*AccountUpdateOne) AddKeys

func (auo *AccountUpdateOne) AddKeys(p ...*PrivateKey) *AccountUpdateOne

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

func (*AccountUpdateOne) ClearCredentials

func (auo *AccountUpdateOne) ClearCredentials() *AccountUpdateOne

ClearCredentials clears all "credentials" edges to the Credential entity.

func (*AccountUpdateOne) ClearKeys

func (auo *AccountUpdateOne) ClearKeys() *AccountUpdateOne

ClearKeys clears all "keys" edges to the PrivateKey entity.

func (*AccountUpdateOne) Exec

func (auo *AccountUpdateOne) Exec(ctx context.Context) error

Exec executes the query on the entity.

func (*AccountUpdateOne) ExecX

func (auo *AccountUpdateOne) ExecX(ctx context.Context)

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

func (*AccountUpdateOne) Mutation

func (auo *AccountUpdateOne) Mutation() *AccountMutation

Mutation returns the AccountMutation object of the builder.

func (*AccountUpdateOne) RemoveCredentialIDs

func (auo *AccountUpdateOne) RemoveCredentialIDs(ids ...string) *AccountUpdateOne

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

func (*AccountUpdateOne) RemoveCredentials

func (auo *AccountUpdateOne) RemoveCredentials(c ...*Credential) *AccountUpdateOne

RemoveCredentials removes "credentials" edges to Credential entities.

func (*AccountUpdateOne) RemoveKeyIDs

func (auo *AccountUpdateOne) RemoveKeyIDs(ids ...string) *AccountUpdateOne

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

func (*AccountUpdateOne) RemoveKeys

func (auo *AccountUpdateOne) RemoveKeys(p ...*PrivateKey) *AccountUpdateOne

RemoveKeys removes "keys" edges to PrivateKey entities.

func (*AccountUpdateOne) Save

func (auo *AccountUpdateOne) Save(ctx context.Context) (*Account, error)

Save executes the query and returns the updated Account entity.

func (*AccountUpdateOne) SaveX

func (auo *AccountUpdateOne) SaveX(ctx context.Context) *Account

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

func (*AccountUpdateOne) Select

func (auo *AccountUpdateOne) Select(field string, fields ...string) *AccountUpdateOne

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

func (*AccountUpdateOne) SetName

func (auo *AccountUpdateOne) SetName(s string) *AccountUpdateOne

SetName sets the "name" field.

func (*AccountUpdateOne) SetNillableUpdatedAt

func (auo *AccountUpdateOne) SetNillableUpdatedAt(t *time.Time) *AccountUpdateOne

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

func (*AccountUpdateOne) SetUpdatedAt

func (auo *AccountUpdateOne) SetUpdatedAt(t time.Time) *AccountUpdateOne

SetUpdatedAt sets the "updated_at" field.

type Accounts

type Accounts []*Account

Accounts is a parsable slice of Account.

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
	// Account is the client for interacting with the Account builders.
	Account *AccountClient
	// Credential is the client for interacting with the Credential builders.
	Credential *CredentialClient
	// PrivateKey is the client for interacting with the PrivateKey builders.
	PrivateKey *PrivateKeyClient
	// PublicKey is the client for interacting with the PublicKey builders.
	PublicKey *PublicKeyClient
	// 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().
	Account.
	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() *AccountQuery

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) *AccountQuery

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(a *Account) *CredentialCreate

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

func (*CredentialCreate) SetAccountID

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

SetAccountID sets the "account" edge to the Account 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 *int) *CredentialCreate

SetNillableAccountID sets the "account" edge to the Account 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 *Account `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() (*Account, 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 Account entity was cleared.

func (*CredentialMutation) AccountID

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

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

func (*CredentialMutation) AccountIDs

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

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 Account 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 int)

SetAccountID sets the "account" edge to the Account 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() *AccountQuery

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(*AccountQuery)) *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 Account 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(a *Account) *CredentialUpdate

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

func (*CredentialUpdate) SetAccountID

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

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

func (*CredentialUpdate) SetNillableAccountID

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

SetNillableAccountID sets the "account" edge to the Account 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 Account 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(a *Account) *CredentialUpdateOne

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

func (*CredentialUpdateOne) SetAccountID

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

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

func (*CredentialUpdateOne) SetNillableAccountID

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

SetNillableAccountID sets the "account" edge to the Account 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 Hook

type Hook = ent.Hook

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

type MutateFunc

type MutateFunc = ent.MutateFunc

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

type Mutation

type Mutation = ent.Mutation

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

type Mutator

type Mutator = ent.Mutator

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

type NotFoundError

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

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

func (*NotFoundError) Error

func (e *NotFoundError) Error() string

Error implements the error interface.

type NotLoadedError

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

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

func (*NotLoadedError) Error

func (e *NotLoadedError) Error() string

Error implements the error interface.

type NotSingularError

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

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

func (*NotSingularError) Error

func (e *NotSingularError) Error() string

Error implements the error interface.

type Op

type Op = ent.Op

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

type Option

type Option func(*config)

Option function to configure the client.

func Debug

func Debug() Option

Debug enables debug logging on the ent.Driver.

func Driver

func Driver(driver dialect.Driver) Option

Driver configures the client driver.

func Log

func Log(fn func(...interface{})) Option

Log sets the logging function for debug mode.

type OrderFunc

type OrderFunc func(*sql.Selector)

OrderFunc applies an ordering on the sql selector.

func Asc

func Asc(fields ...string) OrderFunc

Asc applies the given fields in ASC order.

func Desc

func Desc(fields ...string) OrderFunc

Desc applies the given fields in DESC order.

type Policy

type Policy = ent.Policy

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

type 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) QueryAccount

func (pk *PrivateKey) QueryAccount() *AccountQuery

QueryAccount queries the "account" 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) QueryAccount

func (c *PrivateKeyClient) QueryAccount(pk *PrivateKey) *AccountQuery

QueryAccount queries the account 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) SetAccount

func (pkc *PrivateKeyCreate) SetAccount(a *Account) *PrivateKeyCreate

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

func (*PrivateKeyCreate) SetAccountID

func (pkc *PrivateKeyCreate) SetAccountID(id int) *PrivateKeyCreate

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

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

func (pkc *PrivateKeyCreate) SetNillableAccountID(id *int) *PrivateKeyCreate

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

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

func (pkc *PrivateKeyCreate) SetUpdatedAt(t time.Time) *PrivateKeyCreate

SetUpdatedAt sets the "updated_at" field.

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 {
	// Account holds the value of the account edge.
	Account *Account `json:"account,omitempty"`
	// contains filtered or unexported fields
}

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

func (PrivateKeyEdges) AccountOrErr

func (e PrivateKeyEdges) AccountOrErr() (*Account, 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 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) AccountCleared

func (m *PrivateKeyMutation) AccountCleared() bool

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

func (*PrivateKeyMutation) AccountID

func (m *PrivateKeyMutation) AccountID() (id int, exists bool)

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

func (*PrivateKeyMutation) AccountIDs

func (m *PrivateKeyMutation) AccountIDs() (ids []int)

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 (*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) ClearAccount

func (m *PrivateKeyMutation) ClearAccount()

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

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

func (m *PrivateKeyMutation) ResetAccount()

ResetAccount resets all changes to the "account" edge.

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

func (m *PrivateKeyMutation) SetAccountID(id int)

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

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

func (pkq *PrivateKeyQuery) QueryAccount() *AccountQuery

QueryAccount chains the current query on the "account" 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) WithAccount

func (pkq *PrivateKeyQuery) WithAccount(opts ...func(*AccountQuery)) *PrivateKeyQuery

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

func (pku *PrivateKeyUpdate) ClearAccount() *PrivateKeyUpdate

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

func (*PrivateKeyUpdate) ClearAlg

func (pku *PrivateKeyUpdate) ClearAlg() *PrivateKeyUpdate

ClearAlg clears the value of the "alg" field.

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

func (pku *PrivateKeyUpdate) SetAccount(a *Account) *PrivateKeyUpdate

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

func (*PrivateKeyUpdate) SetAccountID

func (pku *PrivateKeyUpdate) SetAccountID(id int) *PrivateKeyUpdate

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

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

func (pku *PrivateKeyUpdate) SetNillableAccountID(id *int) *PrivateKeyUpdate

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

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

func (pku *PrivateKeyUpdate) SetUpdatedAt(t time.Time) *PrivateKeyUpdate

SetUpdatedAt sets the "updated_at" field.

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

func (pkuo *PrivateKeyUpdateOne) ClearAccount() *PrivateKeyUpdateOne

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

func (*PrivateKeyUpdateOne) ClearAlg

func (pkuo *PrivateKeyUpdateOne) ClearAlg() *PrivateKeyUpdateOne

ClearAlg clears the value of the "alg" field.

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

func (pkuo *PrivateKeyUpdateOne) SetAccount(a *Account) *PrivateKeyUpdateOne

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

func (*PrivateKeyUpdateOne) SetAccountID

func (pkuo *PrivateKeyUpdateOne) SetAccountID(id int) *PrivateKeyUpdateOne

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

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

func (pkuo *PrivateKeyUpdateOne) SetNillableAccountID(id *int) *PrivateKeyUpdateOne

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

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

func (pkuo *PrivateKeyUpdateOne) SetUpdatedAt(t time.Time) *PrivateKeyUpdateOne

SetUpdatedAt sets the "updated_at" field.

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 {

	// Account is the client for interacting with the Account builders.
	Account *AccountClient
	// Credential is the client for interacting with the Credential builders.
	Credential *CredentialClient
	// PrivateKey is the client for interacting with the PrivateKey builders.
	PrivateKey *PrivateKeyClient
	// PublicKey is the client for interacting with the PublicKey builders.
	PublicKey *PublicKeyClient
	// 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 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