proxyroutingprofile

package
v1.0.11 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the proxyroutingprofile type in the database.
	Label = "proxy_routing_profile"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCode holds the string denoting the code field in the database.
	FieldCode = "code"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldScopeType holds the string denoting the scope_type field in the database.
	FieldScopeType = "scope_type"
	// FieldScopeID holds the string denoting the scope_id field in the database.
	FieldScopeID = "scope_id"
	// FieldPriority holds the string denoting the priority field in the database.
	FieldPriority = "priority"
	// FieldMode holds the string denoting the mode field in the database.
	FieldMode = "mode"
	// FieldEnabled holds the string denoting the enabled field in the database.
	FieldEnabled = "enabled"
	// FieldProfileJSON holds the string denoting the profile_json field in the database.
	FieldProfileJSON = "profile_json"
	// 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 proxyroutingprofile in the database.
	Table = "routing_profile"
)

Variables

View Source
var (
	// CodeValidator is a validator for the "code" field. It is called by the builders before save.
	CodeValidator func(string) error
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultScopeType holds the default value on creation for the "scope_type" field.
	DefaultScopeType string
	// ScopeTypeValidator is a validator for the "scope_type" field. It is called by the builders before save.
	ScopeTypeValidator func(string) error
	// DefaultScopeID holds the default value on creation for the "scope_id" field.
	DefaultScopeID string
	// ScopeIDValidator is a validator for the "scope_id" field. It is called by the builders before save.
	ScopeIDValidator func(string) error
	// DefaultPriority holds the default value on creation for the "priority" field.
	DefaultPriority int
	// DefaultMode holds the default value on creation for the "mode" field.
	DefaultMode string
	// ModeValidator is a validator for the "mode" field. It is called by the builders before save.
	ModeValidator func(string) error
	// DefaultEnabled holds the default value on creation for the "enabled" field.
	DefaultEnabled bool
	// DefaultProfileJSON holds the default value on creation for the "profile_json" field.
	DefaultProfileJSON string
	// 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 proxyroutingprofile fields.

Functions

func And

And groups predicates with the AND operator between them.

func Code

Code applies equality check predicate on the "code" field. It's identical to CodeEQ.

func CodeContains

func CodeContains(v string) predicate.ProxyRoutingProfile

CodeContains applies the Contains predicate on the "code" field.

func CodeContainsFold

func CodeContainsFold(v string) predicate.ProxyRoutingProfile

CodeContainsFold applies the ContainsFold predicate on the "code" field.

func CodeEQ

CodeEQ applies the EQ predicate on the "code" field.

func CodeEqualFold

func CodeEqualFold(v string) predicate.ProxyRoutingProfile

CodeEqualFold applies the EqualFold predicate on the "code" field.

func CodeGT

CodeGT applies the GT predicate on the "code" field.

func CodeGTE

CodeGTE applies the GTE predicate on the "code" field.

func CodeHasPrefix

func CodeHasPrefix(v string) predicate.ProxyRoutingProfile

CodeHasPrefix applies the HasPrefix predicate on the "code" field.

func CodeHasSuffix

func CodeHasSuffix(v string) predicate.ProxyRoutingProfile

CodeHasSuffix applies the HasSuffix predicate on the "code" field.

func CodeIn

func CodeIn(vs ...string) predicate.ProxyRoutingProfile

CodeIn applies the In predicate on the "code" field.

func CodeLT

CodeLT applies the LT predicate on the "code" field.

func CodeLTE

CodeLTE applies the LTE predicate on the "code" field.

func CodeNEQ

CodeNEQ applies the NEQ predicate on the "code" field.

func CodeNotIn

func CodeNotIn(vs ...string) predicate.ProxyRoutingProfile

CodeNotIn applies the NotIn predicate on the "code" field.

func CreatedAt

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ProxyRoutingProfile

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ProxyRoutingProfile

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ProxyRoutingProfile

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ProxyRoutingProfile

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ProxyRoutingProfile

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ProxyRoutingProfile

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

func CreatedAtNotIn

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

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

func Description

func Description(v string) predicate.ProxyRoutingProfile

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.ProxyRoutingProfile

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.ProxyRoutingProfile

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.ProxyRoutingProfile

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.ProxyRoutingProfile

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.ProxyRoutingProfile

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.ProxyRoutingProfile

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.ProxyRoutingProfile

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.ProxyRoutingProfile

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.ProxyRoutingProfile

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.ProxyRoutingProfile

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.ProxyRoutingProfile

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.ProxyRoutingProfile

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.ProxyRoutingProfile

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.ProxyRoutingProfile

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.ProxyRoutingProfile

DescriptionNotNil applies the NotNil predicate on the "description" field.

func Enabled

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

func EnabledEQ

func EnabledEQ(v bool) predicate.ProxyRoutingProfile

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

func EnabledNEQ

func EnabledNEQ(v bool) predicate.ProxyRoutingProfile

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

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Mode

Mode applies equality check predicate on the "mode" field. It's identical to ModeEQ.

func ModeContains

func ModeContains(v string) predicate.ProxyRoutingProfile

ModeContains applies the Contains predicate on the "mode" field.

func ModeContainsFold

func ModeContainsFold(v string) predicate.ProxyRoutingProfile

ModeContainsFold applies the ContainsFold predicate on the "mode" field.

func ModeEQ

ModeEQ applies the EQ predicate on the "mode" field.

func ModeEqualFold

func ModeEqualFold(v string) predicate.ProxyRoutingProfile

ModeEqualFold applies the EqualFold predicate on the "mode" field.

func ModeGT

ModeGT applies the GT predicate on the "mode" field.

func ModeGTE

ModeGTE applies the GTE predicate on the "mode" field.

func ModeHasPrefix

func ModeHasPrefix(v string) predicate.ProxyRoutingProfile

ModeHasPrefix applies the HasPrefix predicate on the "mode" field.

func ModeHasSuffix

func ModeHasSuffix(v string) predicate.ProxyRoutingProfile

ModeHasSuffix applies the HasSuffix predicate on the "mode" field.

func ModeIn

func ModeIn(vs ...string) predicate.ProxyRoutingProfile

ModeIn applies the In predicate on the "mode" field.

func ModeLT

ModeLT applies the LT predicate on the "mode" field.

func ModeLTE

ModeLTE applies the LTE predicate on the "mode" field.

func ModeNEQ

ModeNEQ applies the NEQ predicate on the "mode" field.

func ModeNotIn

func ModeNotIn(vs ...string) predicate.ProxyRoutingProfile

ModeNotIn applies the NotIn predicate on the "mode" field.

func Name

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

func NameContains

func NameContains(v string) predicate.ProxyRoutingProfile

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

func NameContainsFold

func NameContainsFold(v string) predicate.ProxyRoutingProfile

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

func NameEQ

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

func NameEqualFold

func NameEqualFold(v string) predicate.ProxyRoutingProfile

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

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.ProxyRoutingProfile

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.ProxyRoutingProfile

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

func NameIn

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

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

func NameLT

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

func NameLTE

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

func NameNEQ

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func Priority

func Priority(v int) predicate.ProxyRoutingProfile

Priority applies equality check predicate on the "priority" field. It's identical to PriorityEQ.

func PriorityEQ

func PriorityEQ(v int) predicate.ProxyRoutingProfile

PriorityEQ applies the EQ predicate on the "priority" field.

func PriorityGT

func PriorityGT(v int) predicate.ProxyRoutingProfile

PriorityGT applies the GT predicate on the "priority" field.

func PriorityGTE

func PriorityGTE(v int) predicate.ProxyRoutingProfile

PriorityGTE applies the GTE predicate on the "priority" field.

func PriorityIn

func PriorityIn(vs ...int) predicate.ProxyRoutingProfile

PriorityIn applies the In predicate on the "priority" field.

func PriorityLT

func PriorityLT(v int) predicate.ProxyRoutingProfile

PriorityLT applies the LT predicate on the "priority" field.

func PriorityLTE

func PriorityLTE(v int) predicate.ProxyRoutingProfile

PriorityLTE applies the LTE predicate on the "priority" field.

func PriorityNEQ

func PriorityNEQ(v int) predicate.ProxyRoutingProfile

PriorityNEQ applies the NEQ predicate on the "priority" field.

func PriorityNotIn

func PriorityNotIn(vs ...int) predicate.ProxyRoutingProfile

PriorityNotIn applies the NotIn predicate on the "priority" field.

func ProfileJSON

func ProfileJSON(v string) predicate.ProxyRoutingProfile

ProfileJSON applies equality check predicate on the "profile_json" field. It's identical to ProfileJSONEQ.

func ProfileJSONContains

func ProfileJSONContains(v string) predicate.ProxyRoutingProfile

ProfileJSONContains applies the Contains predicate on the "profile_json" field.

func ProfileJSONContainsFold

func ProfileJSONContainsFold(v string) predicate.ProxyRoutingProfile

ProfileJSONContainsFold applies the ContainsFold predicate on the "profile_json" field.

func ProfileJSONEQ

func ProfileJSONEQ(v string) predicate.ProxyRoutingProfile

ProfileJSONEQ applies the EQ predicate on the "profile_json" field.

func ProfileJSONEqualFold

func ProfileJSONEqualFold(v string) predicate.ProxyRoutingProfile

ProfileJSONEqualFold applies the EqualFold predicate on the "profile_json" field.

func ProfileJSONGT

func ProfileJSONGT(v string) predicate.ProxyRoutingProfile

ProfileJSONGT applies the GT predicate on the "profile_json" field.

func ProfileJSONGTE

func ProfileJSONGTE(v string) predicate.ProxyRoutingProfile

ProfileJSONGTE applies the GTE predicate on the "profile_json" field.

func ProfileJSONHasPrefix

func ProfileJSONHasPrefix(v string) predicate.ProxyRoutingProfile

ProfileJSONHasPrefix applies the HasPrefix predicate on the "profile_json" field.

func ProfileJSONHasSuffix

func ProfileJSONHasSuffix(v string) predicate.ProxyRoutingProfile

ProfileJSONHasSuffix applies the HasSuffix predicate on the "profile_json" field.

func ProfileJSONIn

func ProfileJSONIn(vs ...string) predicate.ProxyRoutingProfile

ProfileJSONIn applies the In predicate on the "profile_json" field.

func ProfileJSONLT

func ProfileJSONLT(v string) predicate.ProxyRoutingProfile

ProfileJSONLT applies the LT predicate on the "profile_json" field.

func ProfileJSONLTE

func ProfileJSONLTE(v string) predicate.ProxyRoutingProfile

ProfileJSONLTE applies the LTE predicate on the "profile_json" field.

func ProfileJSONNEQ

func ProfileJSONNEQ(v string) predicate.ProxyRoutingProfile

ProfileJSONNEQ applies the NEQ predicate on the "profile_json" field.

func ProfileJSONNotIn

func ProfileJSONNotIn(vs ...string) predicate.ProxyRoutingProfile

ProfileJSONNotIn applies the NotIn predicate on the "profile_json" field.

func ScopeID

ScopeID applies equality check predicate on the "scope_id" field. It's identical to ScopeIDEQ.

func ScopeIDContains

func ScopeIDContains(v string) predicate.ProxyRoutingProfile

ScopeIDContains applies the Contains predicate on the "scope_id" field.

func ScopeIDContainsFold

func ScopeIDContainsFold(v string) predicate.ProxyRoutingProfile

ScopeIDContainsFold applies the ContainsFold predicate on the "scope_id" field.

func ScopeIDEQ

ScopeIDEQ applies the EQ predicate on the "scope_id" field.

func ScopeIDEqualFold

func ScopeIDEqualFold(v string) predicate.ProxyRoutingProfile

ScopeIDEqualFold applies the EqualFold predicate on the "scope_id" field.

func ScopeIDGT

ScopeIDGT applies the GT predicate on the "scope_id" field.

func ScopeIDGTE

func ScopeIDGTE(v string) predicate.ProxyRoutingProfile

ScopeIDGTE applies the GTE predicate on the "scope_id" field.

func ScopeIDHasPrefix

func ScopeIDHasPrefix(v string) predicate.ProxyRoutingProfile

ScopeIDHasPrefix applies the HasPrefix predicate on the "scope_id" field.

func ScopeIDHasSuffix

func ScopeIDHasSuffix(v string) predicate.ProxyRoutingProfile

ScopeIDHasSuffix applies the HasSuffix predicate on the "scope_id" field.

func ScopeIDIn

func ScopeIDIn(vs ...string) predicate.ProxyRoutingProfile

ScopeIDIn applies the In predicate on the "scope_id" field.

func ScopeIDLT

ScopeIDLT applies the LT predicate on the "scope_id" field.

func ScopeIDLTE

func ScopeIDLTE(v string) predicate.ProxyRoutingProfile

ScopeIDLTE applies the LTE predicate on the "scope_id" field.

func ScopeIDNEQ

func ScopeIDNEQ(v string) predicate.ProxyRoutingProfile

ScopeIDNEQ applies the NEQ predicate on the "scope_id" field.

func ScopeIDNotIn

func ScopeIDNotIn(vs ...string) predicate.ProxyRoutingProfile

ScopeIDNotIn applies the NotIn predicate on the "scope_id" field.

func ScopeType

ScopeType applies equality check predicate on the "scope_type" field. It's identical to ScopeTypeEQ.

func ScopeTypeContains

func ScopeTypeContains(v string) predicate.ProxyRoutingProfile

ScopeTypeContains applies the Contains predicate on the "scope_type" field.

func ScopeTypeContainsFold

func ScopeTypeContainsFold(v string) predicate.ProxyRoutingProfile

ScopeTypeContainsFold applies the ContainsFold predicate on the "scope_type" field.

func ScopeTypeEQ

func ScopeTypeEQ(v string) predicate.ProxyRoutingProfile

ScopeTypeEQ applies the EQ predicate on the "scope_type" field.

func ScopeTypeEqualFold

func ScopeTypeEqualFold(v string) predicate.ProxyRoutingProfile

ScopeTypeEqualFold applies the EqualFold predicate on the "scope_type" field.

func ScopeTypeGT

func ScopeTypeGT(v string) predicate.ProxyRoutingProfile

ScopeTypeGT applies the GT predicate on the "scope_type" field.

func ScopeTypeGTE

func ScopeTypeGTE(v string) predicate.ProxyRoutingProfile

ScopeTypeGTE applies the GTE predicate on the "scope_type" field.

func ScopeTypeHasPrefix

func ScopeTypeHasPrefix(v string) predicate.ProxyRoutingProfile

ScopeTypeHasPrefix applies the HasPrefix predicate on the "scope_type" field.

func ScopeTypeHasSuffix

func ScopeTypeHasSuffix(v string) predicate.ProxyRoutingProfile

ScopeTypeHasSuffix applies the HasSuffix predicate on the "scope_type" field.

func ScopeTypeIn

func ScopeTypeIn(vs ...string) predicate.ProxyRoutingProfile

ScopeTypeIn applies the In predicate on the "scope_type" field.

func ScopeTypeLT

func ScopeTypeLT(v string) predicate.ProxyRoutingProfile

ScopeTypeLT applies the LT predicate on the "scope_type" field.

func ScopeTypeLTE

func ScopeTypeLTE(v string) predicate.ProxyRoutingProfile

ScopeTypeLTE applies the LTE predicate on the "scope_type" field.

func ScopeTypeNEQ

func ScopeTypeNEQ(v string) predicate.ProxyRoutingProfile

ScopeTypeNEQ applies the NEQ predicate on the "scope_type" field.

func ScopeTypeNotIn

func ScopeTypeNotIn(vs ...string) predicate.ProxyRoutingProfile

ScopeTypeNotIn applies the NotIn predicate on the "scope_type" field.

func UpdatedAt

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.ProxyRoutingProfile

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.ProxyRoutingProfile

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.ProxyRoutingProfile

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.ProxyRoutingProfile

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.ProxyRoutingProfile

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.ProxyRoutingProfile

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

func UpdatedAtNotIn

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

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 ProxyRoutingProfile queries.

func ByCode

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

ByCode orders the results by the code field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDescription

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

ByDescription orders the results by the description 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 ByMode

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

ByMode orders the results by the mode field.

func ByName

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

ByName orders the results by the name field.

func ByPriority

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

ByPriority orders the results by the priority field.

func ByProfileJSON

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

ByProfileJSON orders the results by the profile_json field.

func ByScopeID

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

ByScopeID orders the results by the scope_id field.

func ByScopeType

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

ByScopeType orders the results by the scope_type 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