pipelinemode

package
v1.42.0 Latest Latest
Warning

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

Go to latest
Published: Aug 13, 2026 License: AGPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the pipelinemode type in the database.
	Label = "pipeline_mode"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldSlug holds the string denoting the slug field in the database.
	FieldSlug = "slug"
	// 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"
	// FieldEnabled holds the string denoting the enabled field in the database.
	FieldEnabled = "enabled"
	// FieldStatusCommandTemplate holds the string denoting the status_command_template field in the database.
	FieldStatusCommandTemplate = "status_command_template"
	// FieldDoneCommandTemplate holds the string denoting the done_command_template field in the database.
	FieldDoneCommandTemplate = "done_command_template"
	// FieldFailCommandTemplate holds the string denoting the fail_command_template field in the database.
	FieldFailCommandTemplate = "fail_command_template"
	// FieldReviewCommandTemplate holds the string denoting the review_command_template field in the database.
	FieldReviewCommandTemplate = "review_command_template"
	// FieldShipCommandTemplate holds the string denoting the ship_command_template field in the database.
	FieldShipCommandTemplate = "ship_command_template"
	// FieldHelpCommandTemplate holds the string denoting the help_command_template field in the database.
	FieldHelpCommandTemplate = "help_command_template"
	// FieldTriagePromptTemplate holds the string denoting the triage_prompt_template field in the database.
	FieldTriagePromptTemplate = "triage_prompt_template"
	// FieldReviewPromptTemplate holds the string denoting the review_prompt_template field in the database.
	FieldReviewPromptTemplate = "review_prompt_template"
	// FieldInitialPromptTemplate holds the string denoting the initial_prompt_template field in the database.
	FieldInitialPromptTemplate = "initial_prompt_template"
	// 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 pipelinemode in the database.
	Table = "pipeline_modes"
)

Variables

View Source
var (
	// SlugValidator is a validator for the "slug" field. It is called by the builders before save.
	SlugValidator func(string) error
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultEnabled holds the default value on creation for the "enabled" field.
	DefaultEnabled bool
	// 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
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for pipelinemode fields.

Functions

func And

func And(predicates ...predicate.PipelineMode) predicate.PipelineMode

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.PipelineMode

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.PipelineMode

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.PipelineMode

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.PipelineMode

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.PipelineMode

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.PipelineMode

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.PipelineMode

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

func CreatedAtNotIn

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

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

func Description

func Description(v string) predicate.PipelineMode

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

func DescriptionContains

func DescriptionContains(v string) predicate.PipelineMode

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

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.PipelineMode

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

func DescriptionEQ

func DescriptionEQ(v string) predicate.PipelineMode

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

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.PipelineMode

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

func DescriptionGT

func DescriptionGT(v string) predicate.PipelineMode

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

func DescriptionGTE

func DescriptionGTE(v string) predicate.PipelineMode

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

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.PipelineMode

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

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.PipelineMode

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

func DescriptionIn

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

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

func DescriptionIsNil

func DescriptionIsNil() predicate.PipelineMode

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

func DescriptionLT

func DescriptionLT(v string) predicate.PipelineMode

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

func DescriptionLTE

func DescriptionLTE(v string) predicate.PipelineMode

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

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.PipelineMode

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

func DescriptionNotIn

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

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

func DescriptionNotNil

func DescriptionNotNil() predicate.PipelineMode

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

func DoneCommandTemplate

func DoneCommandTemplate(v string) predicate.PipelineMode

DoneCommandTemplate applies equality check predicate on the "done_command_template" field. It's identical to DoneCommandTemplateEQ.

func DoneCommandTemplateContains

func DoneCommandTemplateContains(v string) predicate.PipelineMode

DoneCommandTemplateContains applies the Contains predicate on the "done_command_template" field.

func DoneCommandTemplateContainsFold

func DoneCommandTemplateContainsFold(v string) predicate.PipelineMode

DoneCommandTemplateContainsFold applies the ContainsFold predicate on the "done_command_template" field.

func DoneCommandTemplateEQ

func DoneCommandTemplateEQ(v string) predicate.PipelineMode

DoneCommandTemplateEQ applies the EQ predicate on the "done_command_template" field.

func DoneCommandTemplateEqualFold

func DoneCommandTemplateEqualFold(v string) predicate.PipelineMode

DoneCommandTemplateEqualFold applies the EqualFold predicate on the "done_command_template" field.

func DoneCommandTemplateGT

func DoneCommandTemplateGT(v string) predicate.PipelineMode

DoneCommandTemplateGT applies the GT predicate on the "done_command_template" field.

func DoneCommandTemplateGTE

func DoneCommandTemplateGTE(v string) predicate.PipelineMode

DoneCommandTemplateGTE applies the GTE predicate on the "done_command_template" field.

func DoneCommandTemplateHasPrefix

func DoneCommandTemplateHasPrefix(v string) predicate.PipelineMode

DoneCommandTemplateHasPrefix applies the HasPrefix predicate on the "done_command_template" field.

func DoneCommandTemplateHasSuffix

func DoneCommandTemplateHasSuffix(v string) predicate.PipelineMode

DoneCommandTemplateHasSuffix applies the HasSuffix predicate on the "done_command_template" field.

func DoneCommandTemplateIn

func DoneCommandTemplateIn(vs ...string) predicate.PipelineMode

DoneCommandTemplateIn applies the In predicate on the "done_command_template" field.

func DoneCommandTemplateLT

func DoneCommandTemplateLT(v string) predicate.PipelineMode

DoneCommandTemplateLT applies the LT predicate on the "done_command_template" field.

func DoneCommandTemplateLTE

func DoneCommandTemplateLTE(v string) predicate.PipelineMode

DoneCommandTemplateLTE applies the LTE predicate on the "done_command_template" field.

func DoneCommandTemplateNEQ

func DoneCommandTemplateNEQ(v string) predicate.PipelineMode

DoneCommandTemplateNEQ applies the NEQ predicate on the "done_command_template" field.

func DoneCommandTemplateNotIn

func DoneCommandTemplateNotIn(vs ...string) predicate.PipelineMode

DoneCommandTemplateNotIn applies the NotIn predicate on the "done_command_template" field.

func Enabled

func Enabled(v bool) predicate.PipelineMode

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

func EnabledEQ

func EnabledEQ(v bool) predicate.PipelineMode

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

func EnabledNEQ

func EnabledNEQ(v bool) predicate.PipelineMode

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

func FailCommandTemplate

func FailCommandTemplate(v string) predicate.PipelineMode

FailCommandTemplate applies equality check predicate on the "fail_command_template" field. It's identical to FailCommandTemplateEQ.

func FailCommandTemplateContains

func FailCommandTemplateContains(v string) predicate.PipelineMode

FailCommandTemplateContains applies the Contains predicate on the "fail_command_template" field.

func FailCommandTemplateContainsFold

func FailCommandTemplateContainsFold(v string) predicate.PipelineMode

FailCommandTemplateContainsFold applies the ContainsFold predicate on the "fail_command_template" field.

func FailCommandTemplateEQ

func FailCommandTemplateEQ(v string) predicate.PipelineMode

FailCommandTemplateEQ applies the EQ predicate on the "fail_command_template" field.

func FailCommandTemplateEqualFold

func FailCommandTemplateEqualFold(v string) predicate.PipelineMode

FailCommandTemplateEqualFold applies the EqualFold predicate on the "fail_command_template" field.

func FailCommandTemplateGT

func FailCommandTemplateGT(v string) predicate.PipelineMode

FailCommandTemplateGT applies the GT predicate on the "fail_command_template" field.

func FailCommandTemplateGTE

func FailCommandTemplateGTE(v string) predicate.PipelineMode

FailCommandTemplateGTE applies the GTE predicate on the "fail_command_template" field.

func FailCommandTemplateHasPrefix

func FailCommandTemplateHasPrefix(v string) predicate.PipelineMode

FailCommandTemplateHasPrefix applies the HasPrefix predicate on the "fail_command_template" field.

func FailCommandTemplateHasSuffix

func FailCommandTemplateHasSuffix(v string) predicate.PipelineMode

FailCommandTemplateHasSuffix applies the HasSuffix predicate on the "fail_command_template" field.

func FailCommandTemplateIn

func FailCommandTemplateIn(vs ...string) predicate.PipelineMode

FailCommandTemplateIn applies the In predicate on the "fail_command_template" field.

func FailCommandTemplateLT

func FailCommandTemplateLT(v string) predicate.PipelineMode

FailCommandTemplateLT applies the LT predicate on the "fail_command_template" field.

func FailCommandTemplateLTE

func FailCommandTemplateLTE(v string) predicate.PipelineMode

FailCommandTemplateLTE applies the LTE predicate on the "fail_command_template" field.

func FailCommandTemplateNEQ

func FailCommandTemplateNEQ(v string) predicate.PipelineMode

FailCommandTemplateNEQ applies the NEQ predicate on the "fail_command_template" field.

func FailCommandTemplateNotIn

func FailCommandTemplateNotIn(vs ...string) predicate.PipelineMode

FailCommandTemplateNotIn applies the NotIn predicate on the "fail_command_template" field.

func HelpCommandTemplate

func HelpCommandTemplate(v string) predicate.PipelineMode

HelpCommandTemplate applies equality check predicate on the "help_command_template" field. It's identical to HelpCommandTemplateEQ.

func HelpCommandTemplateContains

func HelpCommandTemplateContains(v string) predicate.PipelineMode

HelpCommandTemplateContains applies the Contains predicate on the "help_command_template" field.

func HelpCommandTemplateContainsFold

func HelpCommandTemplateContainsFold(v string) predicate.PipelineMode

HelpCommandTemplateContainsFold applies the ContainsFold predicate on the "help_command_template" field.

func HelpCommandTemplateEQ

func HelpCommandTemplateEQ(v string) predicate.PipelineMode

HelpCommandTemplateEQ applies the EQ predicate on the "help_command_template" field.

func HelpCommandTemplateEqualFold

func HelpCommandTemplateEqualFold(v string) predicate.PipelineMode

HelpCommandTemplateEqualFold applies the EqualFold predicate on the "help_command_template" field.

func HelpCommandTemplateGT

func HelpCommandTemplateGT(v string) predicate.PipelineMode

HelpCommandTemplateGT applies the GT predicate on the "help_command_template" field.

func HelpCommandTemplateGTE

func HelpCommandTemplateGTE(v string) predicate.PipelineMode

HelpCommandTemplateGTE applies the GTE predicate on the "help_command_template" field.

func HelpCommandTemplateHasPrefix

func HelpCommandTemplateHasPrefix(v string) predicate.PipelineMode

HelpCommandTemplateHasPrefix applies the HasPrefix predicate on the "help_command_template" field.

func HelpCommandTemplateHasSuffix

func HelpCommandTemplateHasSuffix(v string) predicate.PipelineMode

HelpCommandTemplateHasSuffix applies the HasSuffix predicate on the "help_command_template" field.

func HelpCommandTemplateIn

func HelpCommandTemplateIn(vs ...string) predicate.PipelineMode

HelpCommandTemplateIn applies the In predicate on the "help_command_template" field.

func HelpCommandTemplateLT

func HelpCommandTemplateLT(v string) predicate.PipelineMode

HelpCommandTemplateLT applies the LT predicate on the "help_command_template" field.

func HelpCommandTemplateLTE

func HelpCommandTemplateLTE(v string) predicate.PipelineMode

HelpCommandTemplateLTE applies the LTE predicate on the "help_command_template" field.

func HelpCommandTemplateNEQ

func HelpCommandTemplateNEQ(v string) predicate.PipelineMode

HelpCommandTemplateNEQ applies the NEQ predicate on the "help_command_template" field.

func HelpCommandTemplateNotIn

func HelpCommandTemplateNotIn(vs ...string) predicate.PipelineMode

HelpCommandTemplateNotIn applies the NotIn predicate on the "help_command_template" 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

func IDGTE(id uuid.UUID) predicate.PipelineMode

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.PipelineMode

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.PipelineMode

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.PipelineMode

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.PipelineMode

IDNotIn applies the NotIn predicate on the ID field.

func InitialPromptTemplate

func InitialPromptTemplate(v string) predicate.PipelineMode

InitialPromptTemplate applies equality check predicate on the "initial_prompt_template" field. It's identical to InitialPromptTemplateEQ.

func InitialPromptTemplateContains

func InitialPromptTemplateContains(v string) predicate.PipelineMode

InitialPromptTemplateContains applies the Contains predicate on the "initial_prompt_template" field.

func InitialPromptTemplateContainsFold

func InitialPromptTemplateContainsFold(v string) predicate.PipelineMode

InitialPromptTemplateContainsFold applies the ContainsFold predicate on the "initial_prompt_template" field.

func InitialPromptTemplateEQ

func InitialPromptTemplateEQ(v string) predicate.PipelineMode

InitialPromptTemplateEQ applies the EQ predicate on the "initial_prompt_template" field.

func InitialPromptTemplateEqualFold

func InitialPromptTemplateEqualFold(v string) predicate.PipelineMode

InitialPromptTemplateEqualFold applies the EqualFold predicate on the "initial_prompt_template" field.

func InitialPromptTemplateGT

func InitialPromptTemplateGT(v string) predicate.PipelineMode

InitialPromptTemplateGT applies the GT predicate on the "initial_prompt_template" field.

func InitialPromptTemplateGTE

func InitialPromptTemplateGTE(v string) predicate.PipelineMode

InitialPromptTemplateGTE applies the GTE predicate on the "initial_prompt_template" field.

func InitialPromptTemplateHasPrefix

func InitialPromptTemplateHasPrefix(v string) predicate.PipelineMode

InitialPromptTemplateHasPrefix applies the HasPrefix predicate on the "initial_prompt_template" field.

func InitialPromptTemplateHasSuffix

func InitialPromptTemplateHasSuffix(v string) predicate.PipelineMode

InitialPromptTemplateHasSuffix applies the HasSuffix predicate on the "initial_prompt_template" field.

func InitialPromptTemplateIn

func InitialPromptTemplateIn(vs ...string) predicate.PipelineMode

InitialPromptTemplateIn applies the In predicate on the "initial_prompt_template" field.

func InitialPromptTemplateLT

func InitialPromptTemplateLT(v string) predicate.PipelineMode

InitialPromptTemplateLT applies the LT predicate on the "initial_prompt_template" field.

func InitialPromptTemplateLTE

func InitialPromptTemplateLTE(v string) predicate.PipelineMode

InitialPromptTemplateLTE applies the LTE predicate on the "initial_prompt_template" field.

func InitialPromptTemplateNEQ

func InitialPromptTemplateNEQ(v string) predicate.PipelineMode

InitialPromptTemplateNEQ applies the NEQ predicate on the "initial_prompt_template" field.

func InitialPromptTemplateNotIn

func InitialPromptTemplateNotIn(vs ...string) predicate.PipelineMode

InitialPromptTemplateNotIn applies the NotIn predicate on the "initial_prompt_template" field.

func Name

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

func NameContains

func NameContains(v string) predicate.PipelineMode

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

func NameContainsFold

func NameContainsFold(v string) predicate.PipelineMode

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

func NameEQ

func NameEQ(v string) predicate.PipelineMode

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

func NameEqualFold

func NameEqualFold(v string) predicate.PipelineMode

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

func NameGT

func NameGT(v string) predicate.PipelineMode

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

func NameGTE

func NameGTE(v string) predicate.PipelineMode

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.PipelineMode

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.PipelineMode

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.PipelineMode

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

func NameLTE

func NameLTE(v string) predicate.PipelineMode

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

func NameNEQ

func NameNEQ(v string) predicate.PipelineMode

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

func NameNotIn

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

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.PipelineMode) predicate.PipelineMode

Or groups predicates with the OR operator between them.

func ReviewCommandTemplate

func ReviewCommandTemplate(v string) predicate.PipelineMode

ReviewCommandTemplate applies equality check predicate on the "review_command_template" field. It's identical to ReviewCommandTemplateEQ.

func ReviewCommandTemplateContains

func ReviewCommandTemplateContains(v string) predicate.PipelineMode

ReviewCommandTemplateContains applies the Contains predicate on the "review_command_template" field.

func ReviewCommandTemplateContainsFold

func ReviewCommandTemplateContainsFold(v string) predicate.PipelineMode

ReviewCommandTemplateContainsFold applies the ContainsFold predicate on the "review_command_template" field.

func ReviewCommandTemplateEQ

func ReviewCommandTemplateEQ(v string) predicate.PipelineMode

ReviewCommandTemplateEQ applies the EQ predicate on the "review_command_template" field.

func ReviewCommandTemplateEqualFold

func ReviewCommandTemplateEqualFold(v string) predicate.PipelineMode

ReviewCommandTemplateEqualFold applies the EqualFold predicate on the "review_command_template" field.

func ReviewCommandTemplateGT

func ReviewCommandTemplateGT(v string) predicate.PipelineMode

ReviewCommandTemplateGT applies the GT predicate on the "review_command_template" field.

func ReviewCommandTemplateGTE

func ReviewCommandTemplateGTE(v string) predicate.PipelineMode

ReviewCommandTemplateGTE applies the GTE predicate on the "review_command_template" field.

func ReviewCommandTemplateHasPrefix

func ReviewCommandTemplateHasPrefix(v string) predicate.PipelineMode

ReviewCommandTemplateHasPrefix applies the HasPrefix predicate on the "review_command_template" field.

func ReviewCommandTemplateHasSuffix

func ReviewCommandTemplateHasSuffix(v string) predicate.PipelineMode

ReviewCommandTemplateHasSuffix applies the HasSuffix predicate on the "review_command_template" field.

func ReviewCommandTemplateIn

func ReviewCommandTemplateIn(vs ...string) predicate.PipelineMode

ReviewCommandTemplateIn applies the In predicate on the "review_command_template" field.

func ReviewCommandTemplateLT

func ReviewCommandTemplateLT(v string) predicate.PipelineMode

ReviewCommandTemplateLT applies the LT predicate on the "review_command_template" field.

func ReviewCommandTemplateLTE

func ReviewCommandTemplateLTE(v string) predicate.PipelineMode

ReviewCommandTemplateLTE applies the LTE predicate on the "review_command_template" field.

func ReviewCommandTemplateNEQ

func ReviewCommandTemplateNEQ(v string) predicate.PipelineMode

ReviewCommandTemplateNEQ applies the NEQ predicate on the "review_command_template" field.

func ReviewCommandTemplateNotIn

func ReviewCommandTemplateNotIn(vs ...string) predicate.PipelineMode

ReviewCommandTemplateNotIn applies the NotIn predicate on the "review_command_template" field.

func ReviewPromptTemplate

func ReviewPromptTemplate(v string) predicate.PipelineMode

ReviewPromptTemplate applies equality check predicate on the "review_prompt_template" field. It's identical to ReviewPromptTemplateEQ.

func ReviewPromptTemplateContains

func ReviewPromptTemplateContains(v string) predicate.PipelineMode

ReviewPromptTemplateContains applies the Contains predicate on the "review_prompt_template" field.

func ReviewPromptTemplateContainsFold

func ReviewPromptTemplateContainsFold(v string) predicate.PipelineMode

ReviewPromptTemplateContainsFold applies the ContainsFold predicate on the "review_prompt_template" field.

func ReviewPromptTemplateEQ

func ReviewPromptTemplateEQ(v string) predicate.PipelineMode

ReviewPromptTemplateEQ applies the EQ predicate on the "review_prompt_template" field.

func ReviewPromptTemplateEqualFold

func ReviewPromptTemplateEqualFold(v string) predicate.PipelineMode

ReviewPromptTemplateEqualFold applies the EqualFold predicate on the "review_prompt_template" field.

func ReviewPromptTemplateGT

func ReviewPromptTemplateGT(v string) predicate.PipelineMode

ReviewPromptTemplateGT applies the GT predicate on the "review_prompt_template" field.

func ReviewPromptTemplateGTE

func ReviewPromptTemplateGTE(v string) predicate.PipelineMode

ReviewPromptTemplateGTE applies the GTE predicate on the "review_prompt_template" field.

func ReviewPromptTemplateHasPrefix

func ReviewPromptTemplateHasPrefix(v string) predicate.PipelineMode

ReviewPromptTemplateHasPrefix applies the HasPrefix predicate on the "review_prompt_template" field.

func ReviewPromptTemplateHasSuffix

func ReviewPromptTemplateHasSuffix(v string) predicate.PipelineMode

ReviewPromptTemplateHasSuffix applies the HasSuffix predicate on the "review_prompt_template" field.

func ReviewPromptTemplateIn

func ReviewPromptTemplateIn(vs ...string) predicate.PipelineMode

ReviewPromptTemplateIn applies the In predicate on the "review_prompt_template" field.

func ReviewPromptTemplateLT

func ReviewPromptTemplateLT(v string) predicate.PipelineMode

ReviewPromptTemplateLT applies the LT predicate on the "review_prompt_template" field.

func ReviewPromptTemplateLTE

func ReviewPromptTemplateLTE(v string) predicate.PipelineMode

ReviewPromptTemplateLTE applies the LTE predicate on the "review_prompt_template" field.

func ReviewPromptTemplateNEQ

func ReviewPromptTemplateNEQ(v string) predicate.PipelineMode

ReviewPromptTemplateNEQ applies the NEQ predicate on the "review_prompt_template" field.

func ReviewPromptTemplateNotIn

func ReviewPromptTemplateNotIn(vs ...string) predicate.PipelineMode

ReviewPromptTemplateNotIn applies the NotIn predicate on the "review_prompt_template" field.

func ShipCommandTemplate

func ShipCommandTemplate(v string) predicate.PipelineMode

ShipCommandTemplate applies equality check predicate on the "ship_command_template" field. It's identical to ShipCommandTemplateEQ.

func ShipCommandTemplateContains

func ShipCommandTemplateContains(v string) predicate.PipelineMode

ShipCommandTemplateContains applies the Contains predicate on the "ship_command_template" field.

func ShipCommandTemplateContainsFold

func ShipCommandTemplateContainsFold(v string) predicate.PipelineMode

ShipCommandTemplateContainsFold applies the ContainsFold predicate on the "ship_command_template" field.

func ShipCommandTemplateEQ

func ShipCommandTemplateEQ(v string) predicate.PipelineMode

ShipCommandTemplateEQ applies the EQ predicate on the "ship_command_template" field.

func ShipCommandTemplateEqualFold

func ShipCommandTemplateEqualFold(v string) predicate.PipelineMode

ShipCommandTemplateEqualFold applies the EqualFold predicate on the "ship_command_template" field.

func ShipCommandTemplateGT

func ShipCommandTemplateGT(v string) predicate.PipelineMode

ShipCommandTemplateGT applies the GT predicate on the "ship_command_template" field.

func ShipCommandTemplateGTE

func ShipCommandTemplateGTE(v string) predicate.PipelineMode

ShipCommandTemplateGTE applies the GTE predicate on the "ship_command_template" field.

func ShipCommandTemplateHasPrefix

func ShipCommandTemplateHasPrefix(v string) predicate.PipelineMode

ShipCommandTemplateHasPrefix applies the HasPrefix predicate on the "ship_command_template" field.

func ShipCommandTemplateHasSuffix

func ShipCommandTemplateHasSuffix(v string) predicate.PipelineMode

ShipCommandTemplateHasSuffix applies the HasSuffix predicate on the "ship_command_template" field.

func ShipCommandTemplateIn

func ShipCommandTemplateIn(vs ...string) predicate.PipelineMode

ShipCommandTemplateIn applies the In predicate on the "ship_command_template" field.

func ShipCommandTemplateLT

func ShipCommandTemplateLT(v string) predicate.PipelineMode

ShipCommandTemplateLT applies the LT predicate on the "ship_command_template" field.

func ShipCommandTemplateLTE

func ShipCommandTemplateLTE(v string) predicate.PipelineMode

ShipCommandTemplateLTE applies the LTE predicate on the "ship_command_template" field.

func ShipCommandTemplateNEQ

func ShipCommandTemplateNEQ(v string) predicate.PipelineMode

ShipCommandTemplateNEQ applies the NEQ predicate on the "ship_command_template" field.

func ShipCommandTemplateNotIn

func ShipCommandTemplateNotIn(vs ...string) predicate.PipelineMode

ShipCommandTemplateNotIn applies the NotIn predicate on the "ship_command_template" field.

func Slug

Slug applies equality check predicate on the "slug" field. It's identical to SlugEQ.

func SlugContains

func SlugContains(v string) predicate.PipelineMode

SlugContains applies the Contains predicate on the "slug" field.

func SlugContainsFold

func SlugContainsFold(v string) predicate.PipelineMode

SlugContainsFold applies the ContainsFold predicate on the "slug" field.

func SlugEQ

func SlugEQ(v string) predicate.PipelineMode

SlugEQ applies the EQ predicate on the "slug" field.

func SlugEqualFold

func SlugEqualFold(v string) predicate.PipelineMode

SlugEqualFold applies the EqualFold predicate on the "slug" field.

func SlugGT

func SlugGT(v string) predicate.PipelineMode

SlugGT applies the GT predicate on the "slug" field.

func SlugGTE

func SlugGTE(v string) predicate.PipelineMode

SlugGTE applies the GTE predicate on the "slug" field.

func SlugHasPrefix

func SlugHasPrefix(v string) predicate.PipelineMode

SlugHasPrefix applies the HasPrefix predicate on the "slug" field.

func SlugHasSuffix

func SlugHasSuffix(v string) predicate.PipelineMode

SlugHasSuffix applies the HasSuffix predicate on the "slug" field.

func SlugIn

func SlugIn(vs ...string) predicate.PipelineMode

SlugIn applies the In predicate on the "slug" field.

func SlugLT

func SlugLT(v string) predicate.PipelineMode

SlugLT applies the LT predicate on the "slug" field.

func SlugLTE

func SlugLTE(v string) predicate.PipelineMode

SlugLTE applies the LTE predicate on the "slug" field.

func SlugNEQ

func SlugNEQ(v string) predicate.PipelineMode

SlugNEQ applies the NEQ predicate on the "slug" field.

func SlugNotIn

func SlugNotIn(vs ...string) predicate.PipelineMode

SlugNotIn applies the NotIn predicate on the "slug" field.

func StatusCommandTemplate

func StatusCommandTemplate(v string) predicate.PipelineMode

StatusCommandTemplate applies equality check predicate on the "status_command_template" field. It's identical to StatusCommandTemplateEQ.

func StatusCommandTemplateContains

func StatusCommandTemplateContains(v string) predicate.PipelineMode

StatusCommandTemplateContains applies the Contains predicate on the "status_command_template" field.

func StatusCommandTemplateContainsFold

func StatusCommandTemplateContainsFold(v string) predicate.PipelineMode

StatusCommandTemplateContainsFold applies the ContainsFold predicate on the "status_command_template" field.

func StatusCommandTemplateEQ

func StatusCommandTemplateEQ(v string) predicate.PipelineMode

StatusCommandTemplateEQ applies the EQ predicate on the "status_command_template" field.

func StatusCommandTemplateEqualFold

func StatusCommandTemplateEqualFold(v string) predicate.PipelineMode

StatusCommandTemplateEqualFold applies the EqualFold predicate on the "status_command_template" field.

func StatusCommandTemplateGT

func StatusCommandTemplateGT(v string) predicate.PipelineMode

StatusCommandTemplateGT applies the GT predicate on the "status_command_template" field.

func StatusCommandTemplateGTE

func StatusCommandTemplateGTE(v string) predicate.PipelineMode

StatusCommandTemplateGTE applies the GTE predicate on the "status_command_template" field.

func StatusCommandTemplateHasPrefix

func StatusCommandTemplateHasPrefix(v string) predicate.PipelineMode

StatusCommandTemplateHasPrefix applies the HasPrefix predicate on the "status_command_template" field.

func StatusCommandTemplateHasSuffix

func StatusCommandTemplateHasSuffix(v string) predicate.PipelineMode

StatusCommandTemplateHasSuffix applies the HasSuffix predicate on the "status_command_template" field.

func StatusCommandTemplateIn

func StatusCommandTemplateIn(vs ...string) predicate.PipelineMode

StatusCommandTemplateIn applies the In predicate on the "status_command_template" field.

func StatusCommandTemplateLT

func StatusCommandTemplateLT(v string) predicate.PipelineMode

StatusCommandTemplateLT applies the LT predicate on the "status_command_template" field.

func StatusCommandTemplateLTE

func StatusCommandTemplateLTE(v string) predicate.PipelineMode

StatusCommandTemplateLTE applies the LTE predicate on the "status_command_template" field.

func StatusCommandTemplateNEQ

func StatusCommandTemplateNEQ(v string) predicate.PipelineMode

StatusCommandTemplateNEQ applies the NEQ predicate on the "status_command_template" field.

func StatusCommandTemplateNotIn

func StatusCommandTemplateNotIn(vs ...string) predicate.PipelineMode

StatusCommandTemplateNotIn applies the NotIn predicate on the "status_command_template" field.

func TriagePromptTemplate

func TriagePromptTemplate(v string) predicate.PipelineMode

TriagePromptTemplate applies equality check predicate on the "triage_prompt_template" field. It's identical to TriagePromptTemplateEQ.

func TriagePromptTemplateContains

func TriagePromptTemplateContains(v string) predicate.PipelineMode

TriagePromptTemplateContains applies the Contains predicate on the "triage_prompt_template" field.

func TriagePromptTemplateContainsFold

func TriagePromptTemplateContainsFold(v string) predicate.PipelineMode

TriagePromptTemplateContainsFold applies the ContainsFold predicate on the "triage_prompt_template" field.

func TriagePromptTemplateEQ

func TriagePromptTemplateEQ(v string) predicate.PipelineMode

TriagePromptTemplateEQ applies the EQ predicate on the "triage_prompt_template" field.

func TriagePromptTemplateEqualFold

func TriagePromptTemplateEqualFold(v string) predicate.PipelineMode

TriagePromptTemplateEqualFold applies the EqualFold predicate on the "triage_prompt_template" field.

func TriagePromptTemplateGT

func TriagePromptTemplateGT(v string) predicate.PipelineMode

TriagePromptTemplateGT applies the GT predicate on the "triage_prompt_template" field.

func TriagePromptTemplateGTE

func TriagePromptTemplateGTE(v string) predicate.PipelineMode

TriagePromptTemplateGTE applies the GTE predicate on the "triage_prompt_template" field.

func TriagePromptTemplateHasPrefix

func TriagePromptTemplateHasPrefix(v string) predicate.PipelineMode

TriagePromptTemplateHasPrefix applies the HasPrefix predicate on the "triage_prompt_template" field.

func TriagePromptTemplateHasSuffix

func TriagePromptTemplateHasSuffix(v string) predicate.PipelineMode

TriagePromptTemplateHasSuffix applies the HasSuffix predicate on the "triage_prompt_template" field.

func TriagePromptTemplateIn

func TriagePromptTemplateIn(vs ...string) predicate.PipelineMode

TriagePromptTemplateIn applies the In predicate on the "triage_prompt_template" field.

func TriagePromptTemplateLT

func TriagePromptTemplateLT(v string) predicate.PipelineMode

TriagePromptTemplateLT applies the LT predicate on the "triage_prompt_template" field.

func TriagePromptTemplateLTE

func TriagePromptTemplateLTE(v string) predicate.PipelineMode

TriagePromptTemplateLTE applies the LTE predicate on the "triage_prompt_template" field.

func TriagePromptTemplateNEQ

func TriagePromptTemplateNEQ(v string) predicate.PipelineMode

TriagePromptTemplateNEQ applies the NEQ predicate on the "triage_prompt_template" field.

func TriagePromptTemplateNotIn

func TriagePromptTemplateNotIn(vs ...string) predicate.PipelineMode

TriagePromptTemplateNotIn applies the NotIn predicate on the "triage_prompt_template" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.PipelineMode

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.PipelineMode

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.PipelineMode

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.PipelineMode

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.PipelineMode

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.PipelineMode

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.PipelineMode

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

func UpdatedAtNotIn

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

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

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 ByDoneCommandTemplate

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

ByDoneCommandTemplate orders the results by the done_command_template field.

func ByEnabled

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

ByEnabled orders the results by the enabled field.

func ByFailCommandTemplate

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

ByFailCommandTemplate orders the results by the fail_command_template field.

func ByHelpCommandTemplate

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

ByHelpCommandTemplate orders the results by the help_command_template field.

func ByID

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

ByID orders the results by the id field.

func ByInitialPromptTemplate

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

ByInitialPromptTemplate orders the results by the initial_prompt_template field.

func ByName

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

ByName orders the results by the name field.

func ByReviewCommandTemplate

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

ByReviewCommandTemplate orders the results by the review_command_template field.

func ByReviewPromptTemplate

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

ByReviewPromptTemplate orders the results by the review_prompt_template field.

func ByShipCommandTemplate

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

ByShipCommandTemplate orders the results by the ship_command_template field.

func BySlug

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

BySlug orders the results by the slug field.

func ByStatusCommandTemplate

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

ByStatusCommandTemplate orders the results by the status_command_template field.

func ByTriagePromptTemplate

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

ByTriagePromptTemplate orders the results by the triage_prompt_template 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