proxynode

package
v1.0.7 Latest Latest
Warning

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

Go to latest
Published: Jun 23, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the proxynode type in the database.
	Label = "proxy_node"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// FieldPort holds the string denoting the port field in the database.
	FieldPort = "port"
	// FieldAddress holds the string denoting the address field in the database.
	FieldAddress = "address"
	// FieldServerID holds the string denoting the server_id field in the database.
	FieldServerID = "server_id"
	// FieldProtocol holds the string denoting the protocol field in the database.
	FieldProtocol = "protocol"
	// FieldEnabled holds the string denoting the enabled field in the database.
	FieldEnabled = "enabled"
	// FieldNodeType holds the string denoting the node_type field in the database.
	FieldNodeType = "node_type"
	// FieldIsHidden holds the string denoting the is_hidden field in the database.
	FieldIsHidden = "is_hidden"
	// FieldSort holds the string denoting the sort field in the database.
	FieldSort = "sort"
	// FieldNodeGroupIds holds the string denoting the node_group_ids field in the database.
	FieldNodeGroupIds = "node_group_ids"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// Table holds the table name of the proxynode in the database.
	Table = "nodes"
)

Variables

View Source
var (
	// DefaultName holds the default value on creation for the "name" field.
	DefaultName string
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultTags holds the default value on creation for the "tags" field.
	DefaultTags string
	// TagsValidator is a validator for the "tags" field. It is called by the builders before save.
	TagsValidator func(string) error
	// DefaultPort holds the default value on creation for the "port" field.
	DefaultPort uint16
	// DefaultAddress holds the default value on creation for the "address" field.
	DefaultAddress string
	// AddressValidator is a validator for the "address" field. It is called by the builders before save.
	AddressValidator func(string) error
	// DefaultServerID holds the default value on creation for the "server_id" field.
	DefaultServerID int64
	// DefaultProtocol holds the default value on creation for the "protocol" field.
	DefaultProtocol string
	// ProtocolValidator is a validator for the "protocol" field. It is called by the builders before save.
	ProtocolValidator func(string) error
	// DefaultEnabled holds the default value on creation for the "enabled" field.
	DefaultEnabled bool
	// DefaultNodeType holds the default value on creation for the "node_type" field.
	DefaultNodeType string
	// NodeTypeValidator is a validator for the "node_type" field. It is called by the builders before save.
	NodeTypeValidator func(string) error
	// DefaultIsHidden holds the default value on creation for the "is_hidden" field.
	DefaultIsHidden bool
	// DefaultSort holds the default value on creation for the "sort" field.
	DefaultSort int32
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
)

Columns holds all SQL columns for proxynode fields.

Functions

func Address

func Address(v string) predicate.ProxyNode

Address applies equality check predicate on the "address" field. It's identical to AddressEQ.

func AddressContains

func AddressContains(v string) predicate.ProxyNode

AddressContains applies the Contains predicate on the "address" field.

func AddressContainsFold

func AddressContainsFold(v string) predicate.ProxyNode

AddressContainsFold applies the ContainsFold predicate on the "address" field.

func AddressEQ

func AddressEQ(v string) predicate.ProxyNode

AddressEQ applies the EQ predicate on the "address" field.

func AddressEqualFold

func AddressEqualFold(v string) predicate.ProxyNode

AddressEqualFold applies the EqualFold predicate on the "address" field.

func AddressGT

func AddressGT(v string) predicate.ProxyNode

AddressGT applies the GT predicate on the "address" field.

func AddressGTE

func AddressGTE(v string) predicate.ProxyNode

AddressGTE applies the GTE predicate on the "address" field.

func AddressHasPrefix

func AddressHasPrefix(v string) predicate.ProxyNode

AddressHasPrefix applies the HasPrefix predicate on the "address" field.

func AddressHasSuffix

func AddressHasSuffix(v string) predicate.ProxyNode

AddressHasSuffix applies the HasSuffix predicate on the "address" field.

func AddressIn

func AddressIn(vs ...string) predicate.ProxyNode

AddressIn applies the In predicate on the "address" field.

func AddressLT

func AddressLT(v string) predicate.ProxyNode

AddressLT applies the LT predicate on the "address" field.

func AddressLTE

func AddressLTE(v string) predicate.ProxyNode

AddressLTE applies the LTE predicate on the "address" field.

func AddressNEQ

func AddressNEQ(v string) predicate.ProxyNode

AddressNEQ applies the NEQ predicate on the "address" field.

func AddressNotIn

func AddressNotIn(vs ...string) predicate.ProxyNode

AddressNotIn applies the NotIn predicate on the "address" field.

func And

func And(predicates ...predicate.ProxyNode) predicate.ProxyNode

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.ProxyNode

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ProxyNode

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ProxyNode

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ProxyNode

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.ProxyNode

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ProxyNode

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ProxyNode

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ProxyNode

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.ProxyNode

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func Enabled

func Enabled(v bool) predicate.ProxyNode

Enabled applies equality check predicate on the "enabled" field. It's identical to EnabledEQ.

func EnabledEQ

func EnabledEQ(v bool) predicate.ProxyNode

EnabledEQ applies the EQ predicate on the "enabled" field.

func EnabledNEQ

func EnabledNEQ(v bool) predicate.ProxyNode

EnabledNEQ applies the NEQ predicate on the "enabled" field.

func ID

func ID(id int64) predicate.ProxyNode

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int64) predicate.ProxyNode

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int64) predicate.ProxyNode

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int64) predicate.ProxyNode

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int64) predicate.ProxyNode

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int64) predicate.ProxyNode

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int64) predicate.ProxyNode

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int64) predicate.ProxyNode

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int64) predicate.ProxyNode

IDNotIn applies the NotIn predicate on the ID field.

func IsHidden

func IsHidden(v bool) predicate.ProxyNode

IsHidden applies equality check predicate on the "is_hidden" field. It's identical to IsHiddenEQ.

func IsHiddenEQ

func IsHiddenEQ(v bool) predicate.ProxyNode

IsHiddenEQ applies the EQ predicate on the "is_hidden" field.

func IsHiddenNEQ

func IsHiddenNEQ(v bool) predicate.ProxyNode

IsHiddenNEQ applies the NEQ predicate on the "is_hidden" field.

func Name

func Name(v string) predicate.ProxyNode

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.ProxyNode

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.ProxyNode

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.ProxyNode

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.ProxyNode

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.ProxyNode

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.ProxyNode

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.ProxyNode

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.ProxyNode

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.ProxyNode

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.ProxyNode

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.ProxyNode

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.ProxyNode

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.ProxyNode

NameNotIn applies the NotIn predicate on the "name" field.

func NodeGroupIdsIsNil

func NodeGroupIdsIsNil() predicate.ProxyNode

NodeGroupIdsIsNil applies the IsNil predicate on the "node_group_ids" field.

func NodeGroupIdsNotNil

func NodeGroupIdsNotNil() predicate.ProxyNode

NodeGroupIdsNotNil applies the NotNil predicate on the "node_group_ids" field.

func NodeType

func NodeType(v string) predicate.ProxyNode

NodeType applies equality check predicate on the "node_type" field. It's identical to NodeTypeEQ.

func NodeTypeContains

func NodeTypeContains(v string) predicate.ProxyNode

NodeTypeContains applies the Contains predicate on the "node_type" field.

func NodeTypeContainsFold

func NodeTypeContainsFold(v string) predicate.ProxyNode

NodeTypeContainsFold applies the ContainsFold predicate on the "node_type" field.

func NodeTypeEQ

func NodeTypeEQ(v string) predicate.ProxyNode

NodeTypeEQ applies the EQ predicate on the "node_type" field.

func NodeTypeEqualFold

func NodeTypeEqualFold(v string) predicate.ProxyNode

NodeTypeEqualFold applies the EqualFold predicate on the "node_type" field.

func NodeTypeGT

func NodeTypeGT(v string) predicate.ProxyNode

NodeTypeGT applies the GT predicate on the "node_type" field.

func NodeTypeGTE

func NodeTypeGTE(v string) predicate.ProxyNode

NodeTypeGTE applies the GTE predicate on the "node_type" field.

func NodeTypeHasPrefix

func NodeTypeHasPrefix(v string) predicate.ProxyNode

NodeTypeHasPrefix applies the HasPrefix predicate on the "node_type" field.

func NodeTypeHasSuffix

func NodeTypeHasSuffix(v string) predicate.ProxyNode

NodeTypeHasSuffix applies the HasSuffix predicate on the "node_type" field.

func NodeTypeIn

func NodeTypeIn(vs ...string) predicate.ProxyNode

NodeTypeIn applies the In predicate on the "node_type" field.

func NodeTypeLT

func NodeTypeLT(v string) predicate.ProxyNode

NodeTypeLT applies the LT predicate on the "node_type" field.

func NodeTypeLTE

func NodeTypeLTE(v string) predicate.ProxyNode

NodeTypeLTE applies the LTE predicate on the "node_type" field.

func NodeTypeNEQ

func NodeTypeNEQ(v string) predicate.ProxyNode

NodeTypeNEQ applies the NEQ predicate on the "node_type" field.

func NodeTypeNotIn

func NodeTypeNotIn(vs ...string) predicate.ProxyNode

NodeTypeNotIn applies the NotIn predicate on the "node_type" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.ProxyNode) predicate.ProxyNode

Or groups predicates with the OR operator between them.

func Port

func Port(v uint16) predicate.ProxyNode

Port applies equality check predicate on the "port" field. It's identical to PortEQ.

func PortEQ

func PortEQ(v uint16) predicate.ProxyNode

PortEQ applies the EQ predicate on the "port" field.

func PortGT

func PortGT(v uint16) predicate.ProxyNode

PortGT applies the GT predicate on the "port" field.

func PortGTE

func PortGTE(v uint16) predicate.ProxyNode

PortGTE applies the GTE predicate on the "port" field.

func PortIn

func PortIn(vs ...uint16) predicate.ProxyNode

PortIn applies the In predicate on the "port" field.

func PortLT

func PortLT(v uint16) predicate.ProxyNode

PortLT applies the LT predicate on the "port" field.

func PortLTE

func PortLTE(v uint16) predicate.ProxyNode

PortLTE applies the LTE predicate on the "port" field.

func PortNEQ

func PortNEQ(v uint16) predicate.ProxyNode

PortNEQ applies the NEQ predicate on the "port" field.

func PortNotIn

func PortNotIn(vs ...uint16) predicate.ProxyNode

PortNotIn applies the NotIn predicate on the "port" field.

func Protocol

func Protocol(v string) predicate.ProxyNode

Protocol applies equality check predicate on the "protocol" field. It's identical to ProtocolEQ.

func ProtocolContains

func ProtocolContains(v string) predicate.ProxyNode

ProtocolContains applies the Contains predicate on the "protocol" field.

func ProtocolContainsFold

func ProtocolContainsFold(v string) predicate.ProxyNode

ProtocolContainsFold applies the ContainsFold predicate on the "protocol" field.

func ProtocolEQ

func ProtocolEQ(v string) predicate.ProxyNode

ProtocolEQ applies the EQ predicate on the "protocol" field.

func ProtocolEqualFold

func ProtocolEqualFold(v string) predicate.ProxyNode

ProtocolEqualFold applies the EqualFold predicate on the "protocol" field.

func ProtocolGT

func ProtocolGT(v string) predicate.ProxyNode

ProtocolGT applies the GT predicate on the "protocol" field.

func ProtocolGTE

func ProtocolGTE(v string) predicate.ProxyNode

ProtocolGTE applies the GTE predicate on the "protocol" field.

func ProtocolHasPrefix

func ProtocolHasPrefix(v string) predicate.ProxyNode

ProtocolHasPrefix applies the HasPrefix predicate on the "protocol" field.

func ProtocolHasSuffix

func ProtocolHasSuffix(v string) predicate.ProxyNode

ProtocolHasSuffix applies the HasSuffix predicate on the "protocol" field.

func ProtocolIn

func ProtocolIn(vs ...string) predicate.ProxyNode

ProtocolIn applies the In predicate on the "protocol" field.

func ProtocolLT

func ProtocolLT(v string) predicate.ProxyNode

ProtocolLT applies the LT predicate on the "protocol" field.

func ProtocolLTE

func ProtocolLTE(v string) predicate.ProxyNode

ProtocolLTE applies the LTE predicate on the "protocol" field.

func ProtocolNEQ

func ProtocolNEQ(v string) predicate.ProxyNode

ProtocolNEQ applies the NEQ predicate on the "protocol" field.

func ProtocolNotIn

func ProtocolNotIn(vs ...string) predicate.ProxyNode

ProtocolNotIn applies the NotIn predicate on the "protocol" field.

func ServerID

func ServerID(v int64) predicate.ProxyNode

ServerID applies equality check predicate on the "server_id" field. It's identical to ServerIDEQ.

func ServerIDEQ

func ServerIDEQ(v int64) predicate.ProxyNode

ServerIDEQ applies the EQ predicate on the "server_id" field.

func ServerIDGT

func ServerIDGT(v int64) predicate.ProxyNode

ServerIDGT applies the GT predicate on the "server_id" field.

func ServerIDGTE

func ServerIDGTE(v int64) predicate.ProxyNode

ServerIDGTE applies the GTE predicate on the "server_id" field.

func ServerIDIn

func ServerIDIn(vs ...int64) predicate.ProxyNode

ServerIDIn applies the In predicate on the "server_id" field.

func ServerIDLT

func ServerIDLT(v int64) predicate.ProxyNode

ServerIDLT applies the LT predicate on the "server_id" field.

func ServerIDLTE

func ServerIDLTE(v int64) predicate.ProxyNode

ServerIDLTE applies the LTE predicate on the "server_id" field.

func ServerIDNEQ

func ServerIDNEQ(v int64) predicate.ProxyNode

ServerIDNEQ applies the NEQ predicate on the "server_id" field.

func ServerIDNotIn

func ServerIDNotIn(vs ...int64) predicate.ProxyNode

ServerIDNotIn applies the NotIn predicate on the "server_id" field.

func Sort

func Sort(v int32) predicate.ProxyNode

Sort applies equality check predicate on the "sort" field. It's identical to SortEQ.

func SortEQ

func SortEQ(v int32) predicate.ProxyNode

SortEQ applies the EQ predicate on the "sort" field.

func SortGT

func SortGT(v int32) predicate.ProxyNode

SortGT applies the GT predicate on the "sort" field.

func SortGTE

func SortGTE(v int32) predicate.ProxyNode

SortGTE applies the GTE predicate on the "sort" field.

func SortIn

func SortIn(vs ...int32) predicate.ProxyNode

SortIn applies the In predicate on the "sort" field.

func SortLT

func SortLT(v int32) predicate.ProxyNode

SortLT applies the LT predicate on the "sort" field.

func SortLTE

func SortLTE(v int32) predicate.ProxyNode

SortLTE applies the LTE predicate on the "sort" field.

func SortNEQ

func SortNEQ(v int32) predicate.ProxyNode

SortNEQ applies the NEQ predicate on the "sort" field.

func SortNotIn

func SortNotIn(vs ...int32) predicate.ProxyNode

SortNotIn applies the NotIn predicate on the "sort" field.

func Tags

func Tags(v string) predicate.ProxyNode

Tags applies equality check predicate on the "tags" field. It's identical to TagsEQ.

func TagsContains

func TagsContains(v string) predicate.ProxyNode

TagsContains applies the Contains predicate on the "tags" field.

func TagsContainsFold

func TagsContainsFold(v string) predicate.ProxyNode

TagsContainsFold applies the ContainsFold predicate on the "tags" field.

func TagsEQ

func TagsEQ(v string) predicate.ProxyNode

TagsEQ applies the EQ predicate on the "tags" field.

func TagsEqualFold

func TagsEqualFold(v string) predicate.ProxyNode

TagsEqualFold applies the EqualFold predicate on the "tags" field.

func TagsGT

func TagsGT(v string) predicate.ProxyNode

TagsGT applies the GT predicate on the "tags" field.

func TagsGTE

func TagsGTE(v string) predicate.ProxyNode

TagsGTE applies the GTE predicate on the "tags" field.

func TagsHasPrefix

func TagsHasPrefix(v string) predicate.ProxyNode

TagsHasPrefix applies the HasPrefix predicate on the "tags" field.

func TagsHasSuffix

func TagsHasSuffix(v string) predicate.ProxyNode

TagsHasSuffix applies the HasSuffix predicate on the "tags" field.

func TagsIn

func TagsIn(vs ...string) predicate.ProxyNode

TagsIn applies the In predicate on the "tags" field.

func TagsLT

func TagsLT(v string) predicate.ProxyNode

TagsLT applies the LT predicate on the "tags" field.

func TagsLTE

func TagsLTE(v string) predicate.ProxyNode

TagsLTE applies the LTE predicate on the "tags" field.

func TagsNEQ

func TagsNEQ(v string) predicate.ProxyNode

TagsNEQ applies the NEQ predicate on the "tags" field.

func TagsNotIn

func TagsNotIn(vs ...string) predicate.ProxyNode

TagsNotIn applies the NotIn predicate on the "tags" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.ProxyNode

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.ProxyNode

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.ProxyNode

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.ProxyNode

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.ProxyNode

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.ProxyNode

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.ProxyNode

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.ProxyNode

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.ProxyNode

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the ProxyNode queries.

func ByAddress

func ByAddress(opts ...sql.OrderTermOption) OrderOption

ByAddress orders the results by the address field.

func ByCreatedAt

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByEnabled

func ByEnabled(opts ...sql.OrderTermOption) OrderOption

ByEnabled orders the results by the enabled field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByIsHidden

func ByIsHidden(opts ...sql.OrderTermOption) OrderOption

ByIsHidden orders the results by the is_hidden field.

func ByName

func ByName(opts ...sql.OrderTermOption) OrderOption

ByName orders the results by the name field.

func ByNodeType

func ByNodeType(opts ...sql.OrderTermOption) OrderOption

ByNodeType orders the results by the node_type field.

func ByPort

func ByPort(opts ...sql.OrderTermOption) OrderOption

ByPort orders the results by the port field.

func ByProtocol

func ByProtocol(opts ...sql.OrderTermOption) OrderOption

ByProtocol orders the results by the protocol field.

func ByServerID

func ByServerID(opts ...sql.OrderTermOption) OrderOption

ByServerID orders the results by the server_id field.

func BySort

func BySort(opts ...sql.OrderTermOption) OrderOption

BySort orders the results by the sort field.

func ByTags

func ByTags(opts ...sql.OrderTermOption) OrderOption

ByTags orders the results by the tags field.

func ByUpdatedAt

func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption

ByUpdatedAt orders the results by the updated_at field.

Jump to

Keyboard shortcuts

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