catalog

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Mar 14, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the catalog type in the database.
	Label = "catalog"
	// 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"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldLabels holds the string denoting the labels field in the database.
	FieldLabels = "labels"
	// FieldAnnotations holds the string denoting the annotations field in the database.
	FieldAnnotations = "annotations"
	// FieldCreateTime holds the string denoting the create_time field in the database.
	FieldCreateTime = "create_time"
	// FieldUpdateTime holds the string denoting the update_time field in the database.
	FieldUpdateTime = "update_time"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldType holds the string denoting the type field in the database.
	FieldType = "type"
	// FieldSource holds the string denoting the source field in the database.
	FieldSource = "source"
	// FieldSync holds the string denoting the sync field in the database.
	FieldSync = "sync"
	// FieldProjectID holds the string denoting the project_id field in the database.
	FieldProjectID = "project_id"
	// FieldFilterPattern holds the string denoting the filter_pattern field in the database.
	FieldFilterPattern = "filter_pattern"
	// EdgeTemplates holds the string denoting the templates edge name in mutations.
	EdgeTemplates = "templates"
	// EdgeProject holds the string denoting the project edge name in mutations.
	EdgeProject = "project"
	// Table holds the table name of the catalog in the database.
	Table = "catalogs"
	// TemplatesTable is the table that holds the templates relation/edge.
	TemplatesTable = "templates"
	// TemplatesInverseTable is the table name for the Template entity.
	// It exists in this package in order to avoid circular dependency with the "template" package.
	TemplatesInverseTable = "templates"
	// TemplatesColumn is the table column denoting the templates relation/edge.
	TemplatesColumn = "catalog_id"
	// ProjectTable is the table that holds the project relation/edge.
	ProjectTable = "catalogs"
	// ProjectInverseTable is the table name for the Project entity.
	// It exists in this package in order to avoid circular dependency with the "project" package.
	ProjectInverseTable = "projects"
	// ProjectColumn is the table column denoting the project relation/edge.
	ProjectColumn = "project_id"
)

Variables

View Source
var (
	Hooks        [1]ent.Hook
	Interceptors [1]ent.Interceptor
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultLabels holds the default value on creation for the "labels" field.
	DefaultLabels map[string]string
	// DefaultAnnotations holds the default value on creation for the "annotations" field.
	DefaultAnnotations map[string]string
	// DefaultCreateTime holds the default value on creation for the "create_time" field.
	DefaultCreateTime func() time.Time
	// DefaultUpdateTime holds the default value on creation for the "update_time" field.
	DefaultUpdateTime func() time.Time
	// UpdateDefaultUpdateTime holds the default value on update for the "update_time" field.
	UpdateDefaultUpdateTime func() time.Time
	// TypeValidator is a validator for the "type" field. It is called by the builders before save.
	TypeValidator func(string) error
	// SourceValidator is a validator for the "source" field. It is called by the builders before save.
	SourceValidator func(string) error
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/seal-io/walrus/pkg/dao/model/runtime"

Columns holds all SQL columns for catalog fields.

Functions

func And

func And(predicates ...predicate.Catalog) predicate.Catalog

And groups predicates with the AND operator between them.

func AnnotationsIsNil

func AnnotationsIsNil() predicate.Catalog

AnnotationsIsNil applies the IsNil predicate on the "annotations" field.

func AnnotationsNotNil

func AnnotationsNotNil() predicate.Catalog

AnnotationsNotNil applies the NotNil predicate on the "annotations" field.

func CreateTime

func CreateTime(v time.Time) predicate.Catalog

CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ.

func CreateTimeEQ

func CreateTimeEQ(v time.Time) predicate.Catalog

CreateTimeEQ applies the EQ predicate on the "create_time" field.

func CreateTimeGT

func CreateTimeGT(v time.Time) predicate.Catalog

CreateTimeGT applies the GT predicate on the "create_time" field.

func CreateTimeGTE

func CreateTimeGTE(v time.Time) predicate.Catalog

CreateTimeGTE applies the GTE predicate on the "create_time" field.

func CreateTimeIn

func CreateTimeIn(vs ...time.Time) predicate.Catalog

CreateTimeIn applies the In predicate on the "create_time" field.

func CreateTimeLT

func CreateTimeLT(v time.Time) predicate.Catalog

CreateTimeLT applies the LT predicate on the "create_time" field.

func CreateTimeLTE

func CreateTimeLTE(v time.Time) predicate.Catalog

CreateTimeLTE applies the LTE predicate on the "create_time" field.

func CreateTimeNEQ

func CreateTimeNEQ(v time.Time) predicate.Catalog

CreateTimeNEQ applies the NEQ predicate on the "create_time" field.

func CreateTimeNotIn

func CreateTimeNotIn(vs ...time.Time) predicate.Catalog

CreateTimeNotIn applies the NotIn predicate on the "create_time" field.

func Description

func Description(v string) predicate.Catalog

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

func DescriptionContains

func DescriptionContains(v string) predicate.Catalog

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.Catalog

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.Catalog

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.Catalog

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

func DescriptionGT

func DescriptionGT(v string) predicate.Catalog

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.Catalog

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.Catalog

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.Catalog

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

func DescriptionIn

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

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

func DescriptionIsNil

func DescriptionIsNil() predicate.Catalog

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

func DescriptionLT

func DescriptionLT(v string) predicate.Catalog

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.Catalog

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.Catalog

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

func DescriptionNotIn

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

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

func DescriptionNotNil

func DescriptionNotNil() predicate.Catalog

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

func FilterPattern added in v0.6.0

func FilterPattern(v string) predicate.Catalog

FilterPattern applies equality check predicate on the "filter_pattern" field. It's identical to FilterPatternEQ.

func FilterPatternContains added in v0.6.0

func FilterPatternContains(v string) predicate.Catalog

FilterPatternContains applies the Contains predicate on the "filter_pattern" field.

func FilterPatternContainsFold added in v0.6.0

func FilterPatternContainsFold(v string) predicate.Catalog

FilterPatternContainsFold applies the ContainsFold predicate on the "filter_pattern" field.

func FilterPatternEQ added in v0.6.0

func FilterPatternEQ(v string) predicate.Catalog

FilterPatternEQ applies the EQ predicate on the "filter_pattern" field.

func FilterPatternEqualFold added in v0.6.0

func FilterPatternEqualFold(v string) predicate.Catalog

FilterPatternEqualFold applies the EqualFold predicate on the "filter_pattern" field.

func FilterPatternGT added in v0.6.0

func FilterPatternGT(v string) predicate.Catalog

FilterPatternGT applies the GT predicate on the "filter_pattern" field.

func FilterPatternGTE added in v0.6.0

func FilterPatternGTE(v string) predicate.Catalog

FilterPatternGTE applies the GTE predicate on the "filter_pattern" field.

func FilterPatternHasPrefix added in v0.6.0

func FilterPatternHasPrefix(v string) predicate.Catalog

FilterPatternHasPrefix applies the HasPrefix predicate on the "filter_pattern" field.

func FilterPatternHasSuffix added in v0.6.0

func FilterPatternHasSuffix(v string) predicate.Catalog

FilterPatternHasSuffix applies the HasSuffix predicate on the "filter_pattern" field.

func FilterPatternIn added in v0.6.0

func FilterPatternIn(vs ...string) predicate.Catalog

FilterPatternIn applies the In predicate on the "filter_pattern" field.

func FilterPatternIsNil added in v0.6.0

func FilterPatternIsNil() predicate.Catalog

FilterPatternIsNil applies the IsNil predicate on the "filter_pattern" field.

func FilterPatternLT added in v0.6.0

func FilterPatternLT(v string) predicate.Catalog

FilterPatternLT applies the LT predicate on the "filter_pattern" field.

func FilterPatternLTE added in v0.6.0

func FilterPatternLTE(v string) predicate.Catalog

FilterPatternLTE applies the LTE predicate on the "filter_pattern" field.

func FilterPatternNEQ added in v0.6.0

func FilterPatternNEQ(v string) predicate.Catalog

FilterPatternNEQ applies the NEQ predicate on the "filter_pattern" field.

func FilterPatternNotIn added in v0.6.0

func FilterPatternNotIn(vs ...string) predicate.Catalog

FilterPatternNotIn applies the NotIn predicate on the "filter_pattern" field.

func FilterPatternNotNil added in v0.6.0

func FilterPatternNotNil() predicate.Catalog

FilterPatternNotNil applies the NotNil predicate on the "filter_pattern" field.

func HasProject added in v0.4.0

func HasProject() predicate.Catalog

HasProject applies the HasEdge predicate on the "project" edge.

func HasProjectWith added in v0.4.0

func HasProjectWith(preds ...predicate.Project) predicate.Catalog

HasProjectWith applies the HasEdge predicate on the "project" edge with a given conditions (other predicates).

func HasTemplates

func HasTemplates() predicate.Catalog

HasTemplates applies the HasEdge predicate on the "templates" edge.

func HasTemplatesWith

func HasTemplatesWith(preds ...predicate.Template) predicate.Catalog

HasTemplatesWith applies the HasEdge predicate on the "templates" edge with a given conditions (other predicates).

func ID

func ID(id object.ID) predicate.Catalog

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id object.ID) predicate.Catalog

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id object.ID) predicate.Catalog

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id object.ID) predicate.Catalog

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...object.ID) predicate.Catalog

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id object.ID) predicate.Catalog

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id object.ID) predicate.Catalog

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id object.ID) predicate.Catalog

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...object.ID) predicate.Catalog

IDNotIn applies the NotIn predicate on the ID field.

func LabelsIsNil

func LabelsIsNil() predicate.Catalog

LabelsIsNil applies the IsNil predicate on the "labels" field.

func LabelsNotNil

func LabelsNotNil() predicate.Catalog

LabelsNotNil applies the NotNil predicate on the "labels" field.

func Name

func Name(v string) predicate.Catalog

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

func NameContains

func NameContains(v string) predicate.Catalog

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

func NameContainsFold

func NameContainsFold(v string) predicate.Catalog

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

func NameEQ

func NameEQ(v string) predicate.Catalog

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

func NameEqualFold

func NameEqualFold(v string) predicate.Catalog

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

func NameGT

func NameGT(v string) predicate.Catalog

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

func NameGTE

func NameGTE(v string) predicate.Catalog

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Catalog

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Catalog

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Catalog

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

func NameLTE

func NameLTE(v string) predicate.Catalog

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

func NameNEQ

func NameNEQ(v string) predicate.Catalog

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Catalog) predicate.Catalog

Or groups predicates with the OR operator between them.

func ProjectID added in v0.4.0

func ProjectID(v object.ID) predicate.Catalog

ProjectID applies equality check predicate on the "project_id" field. It's identical to ProjectIDEQ.

func ProjectIDContains added in v0.4.0

func ProjectIDContains(v object.ID) predicate.Catalog

ProjectIDContains applies the Contains predicate on the "project_id" field.

func ProjectIDContainsFold added in v0.4.0

func ProjectIDContainsFold(v object.ID) predicate.Catalog

ProjectIDContainsFold applies the ContainsFold predicate on the "project_id" field.

func ProjectIDEQ added in v0.4.0

func ProjectIDEQ(v object.ID) predicate.Catalog

ProjectIDEQ applies the EQ predicate on the "project_id" field.

func ProjectIDEqualFold added in v0.4.0

func ProjectIDEqualFold(v object.ID) predicate.Catalog

ProjectIDEqualFold applies the EqualFold predicate on the "project_id" field.

func ProjectIDGT added in v0.4.0

func ProjectIDGT(v object.ID) predicate.Catalog

ProjectIDGT applies the GT predicate on the "project_id" field.

func ProjectIDGTE added in v0.4.0

func ProjectIDGTE(v object.ID) predicate.Catalog

ProjectIDGTE applies the GTE predicate on the "project_id" field.

func ProjectIDHasPrefix added in v0.4.0

func ProjectIDHasPrefix(v object.ID) predicate.Catalog

ProjectIDHasPrefix applies the HasPrefix predicate on the "project_id" field.

func ProjectIDHasSuffix added in v0.4.0

func ProjectIDHasSuffix(v object.ID) predicate.Catalog

ProjectIDHasSuffix applies the HasSuffix predicate on the "project_id" field.

func ProjectIDIn added in v0.4.0

func ProjectIDIn(vs ...object.ID) predicate.Catalog

ProjectIDIn applies the In predicate on the "project_id" field.

func ProjectIDIsNil added in v0.4.0

func ProjectIDIsNil() predicate.Catalog

ProjectIDIsNil applies the IsNil predicate on the "project_id" field.

func ProjectIDLT added in v0.4.0

func ProjectIDLT(v object.ID) predicate.Catalog

ProjectIDLT applies the LT predicate on the "project_id" field.

func ProjectIDLTE added in v0.4.0

func ProjectIDLTE(v object.ID) predicate.Catalog

ProjectIDLTE applies the LTE predicate on the "project_id" field.

func ProjectIDNEQ added in v0.4.0

func ProjectIDNEQ(v object.ID) predicate.Catalog

ProjectIDNEQ applies the NEQ predicate on the "project_id" field.

func ProjectIDNotIn added in v0.4.0

func ProjectIDNotIn(vs ...object.ID) predicate.Catalog

ProjectIDNotIn applies the NotIn predicate on the "project_id" field.

func ProjectIDNotNil added in v0.4.0

func ProjectIDNotNil() predicate.Catalog

ProjectIDNotNil applies the NotNil predicate on the "project_id" field.

func Source

func Source(v string) predicate.Catalog

Source applies equality check predicate on the "source" field. It's identical to SourceEQ.

func SourceContains

func SourceContains(v string) predicate.Catalog

SourceContains applies the Contains predicate on the "source" field.

func SourceContainsFold

func SourceContainsFold(v string) predicate.Catalog

SourceContainsFold applies the ContainsFold predicate on the "source" field.

func SourceEQ

func SourceEQ(v string) predicate.Catalog

SourceEQ applies the EQ predicate on the "source" field.

func SourceEqualFold

func SourceEqualFold(v string) predicate.Catalog

SourceEqualFold applies the EqualFold predicate on the "source" field.

func SourceGT

func SourceGT(v string) predicate.Catalog

SourceGT applies the GT predicate on the "source" field.

func SourceGTE

func SourceGTE(v string) predicate.Catalog

SourceGTE applies the GTE predicate on the "source" field.

func SourceHasPrefix

func SourceHasPrefix(v string) predicate.Catalog

SourceHasPrefix applies the HasPrefix predicate on the "source" field.

func SourceHasSuffix

func SourceHasSuffix(v string) predicate.Catalog

SourceHasSuffix applies the HasSuffix predicate on the "source" field.

func SourceIn

func SourceIn(vs ...string) predicate.Catalog

SourceIn applies the In predicate on the "source" field.

func SourceLT

func SourceLT(v string) predicate.Catalog

SourceLT applies the LT predicate on the "source" field.

func SourceLTE

func SourceLTE(v string) predicate.Catalog

SourceLTE applies the LTE predicate on the "source" field.

func SourceNEQ

func SourceNEQ(v string) predicate.Catalog

SourceNEQ applies the NEQ predicate on the "source" field.

func SourceNotIn

func SourceNotIn(vs ...string) predicate.Catalog

SourceNotIn applies the NotIn predicate on the "source" field.

func StatusIsNil

func StatusIsNil() predicate.Catalog

StatusIsNil applies the IsNil predicate on the "status" field.

func StatusNotNil

func StatusNotNil() predicate.Catalog

StatusNotNil applies the NotNil predicate on the "status" field.

func SyncIsNil

func SyncIsNil() predicate.Catalog

SyncIsNil applies the IsNil predicate on the "sync" field.

func SyncNotNil

func SyncNotNil() predicate.Catalog

SyncNotNil applies the NotNil predicate on the "sync" field.

func Type

func Type(v string) predicate.Catalog

Type applies equality check predicate on the "type" field. It's identical to TypeEQ.

func TypeContains

func TypeContains(v string) predicate.Catalog

TypeContains applies the Contains predicate on the "type" field.

func TypeContainsFold

func TypeContainsFold(v string) predicate.Catalog

TypeContainsFold applies the ContainsFold predicate on the "type" field.

func TypeEQ

func TypeEQ(v string) predicate.Catalog

TypeEQ applies the EQ predicate on the "type" field.

func TypeEqualFold

func TypeEqualFold(v string) predicate.Catalog

TypeEqualFold applies the EqualFold predicate on the "type" field.

func TypeGT

func TypeGT(v string) predicate.Catalog

TypeGT applies the GT predicate on the "type" field.

func TypeGTE

func TypeGTE(v string) predicate.Catalog

TypeGTE applies the GTE predicate on the "type" field.

func TypeHasPrefix

func TypeHasPrefix(v string) predicate.Catalog

TypeHasPrefix applies the HasPrefix predicate on the "type" field.

func TypeHasSuffix

func TypeHasSuffix(v string) predicate.Catalog

TypeHasSuffix applies the HasSuffix predicate on the "type" field.

func TypeIn

func TypeIn(vs ...string) predicate.Catalog

TypeIn applies the In predicate on the "type" field.

func TypeLT

func TypeLT(v string) predicate.Catalog

TypeLT applies the LT predicate on the "type" field.

func TypeLTE

func TypeLTE(v string) predicate.Catalog

TypeLTE applies the LTE predicate on the "type" field.

func TypeNEQ

func TypeNEQ(v string) predicate.Catalog

TypeNEQ applies the NEQ predicate on the "type" field.

func TypeNotIn

func TypeNotIn(vs ...string) predicate.Catalog

TypeNotIn applies the NotIn predicate on the "type" field.

func UpdateTime

func UpdateTime(v time.Time) predicate.Catalog

UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ.

func UpdateTimeEQ

func UpdateTimeEQ(v time.Time) predicate.Catalog

UpdateTimeEQ applies the EQ predicate on the "update_time" field.

func UpdateTimeGT

func UpdateTimeGT(v time.Time) predicate.Catalog

UpdateTimeGT applies the GT predicate on the "update_time" field.

func UpdateTimeGTE

func UpdateTimeGTE(v time.Time) predicate.Catalog

UpdateTimeGTE applies the GTE predicate on the "update_time" field.

func UpdateTimeIn

func UpdateTimeIn(vs ...time.Time) predicate.Catalog

UpdateTimeIn applies the In predicate on the "update_time" field.

func UpdateTimeLT

func UpdateTimeLT(v time.Time) predicate.Catalog

UpdateTimeLT applies the LT predicate on the "update_time" field.

func UpdateTimeLTE

func UpdateTimeLTE(v time.Time) predicate.Catalog

UpdateTimeLTE applies the LTE predicate on the "update_time" field.

func UpdateTimeNEQ

func UpdateTimeNEQ(v time.Time) predicate.Catalog

UpdateTimeNEQ applies the NEQ predicate on the "update_time" field.

func UpdateTimeNotIn

func UpdateTimeNotIn(vs ...time.Time) predicate.Catalog

UpdateTimeNotIn applies the NotIn predicate on the "update_time" field.

func ValidColumn

func ValidColumn(column string) bool

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

func WithoutFields

func WithoutFields(ignores ...string) []string

WithoutFields returns the fields ignored the given list.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Catalog queries.

func ByCreateTime

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

ByCreateTime orders the results by the create_time field.

func ByDescription

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

ByDescription orders the results by the description field.

func ByFilterPattern added in v0.6.0

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

ByFilterPattern orders the results by the filter_pattern field.

func ByID

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

ByID orders the results by the id field.

func ByName

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

ByName orders the results by the name field.

func ByProjectField added in v0.4.0

func ByProjectField(field string, opts ...sql.OrderTermOption) OrderOption

ByProjectField orders the results by project field.

func ByProjectID added in v0.4.0

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

ByProjectID orders the results by the project_id field.

func BySource

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

BySource orders the results by the source field.

func ByTemplates

func ByTemplates(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTemplates orders the results by templates terms.

func ByTemplatesCount

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

ByTemplatesCount orders the results by templates count.

func ByType

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

ByType orders the results by the type field.

func ByUpdateTime

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

ByUpdateTime orders the results by the update_time field.

Jump to

Keyboard shortcuts

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