workflowversion

package
v0.8.0 Latest Latest
Warning

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

Go to latest
Published: May 13, 2026 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the workflowversion type in the database.
	Label = "workflow_version"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldWorkflowID holds the string denoting the workflow_id field in the database.
	FieldWorkflowID = "workflow_id"
	// FieldVersion holds the string denoting the version field in the database.
	FieldVersion = "version"
	// FieldContentMarkdown holds the string denoting the content_markdown field in the database.
	FieldContentMarkdown = "content_markdown"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldType holds the string denoting the type field in the database.
	FieldType = "type"
	// FieldRoleSlug holds the string denoting the role_slug field in the database.
	FieldRoleSlug = "role_slug"
	// FieldRoleName holds the string denoting the role_name field in the database.
	FieldRoleName = "role_name"
	// FieldRoleDescription holds the string denoting the role_description field in the database.
	FieldRoleDescription = "role_description"
	// FieldPickupStatusIds holds the string denoting the pickup_status_ids field in the database.
	FieldPickupStatusIds = "pickup_status_ids"
	// FieldFinishStatusIds holds the string denoting the finish_status_ids field in the database.
	FieldFinishStatusIds = "finish_status_ids"
	// FieldHarnessPath holds the string denoting the harness_path field in the database.
	FieldHarnessPath = "harness_path"
	// FieldHooks holds the string denoting the hooks field in the database.
	FieldHooks = "hooks"
	// FieldPlatformAccessAllowed holds the string denoting the platform_access_allowed field in the database.
	FieldPlatformAccessAllowed = "platform_access_allowed"
	// FieldMaxConcurrent holds the string denoting the max_concurrent field in the database.
	FieldMaxConcurrent = "max_concurrent"
	// FieldMaxRetryAttempts holds the string denoting the max_retry_attempts field in the database.
	FieldMaxRetryAttempts = "max_retry_attempts"
	// FieldTimeoutMinutes holds the string denoting the timeout_minutes field in the database.
	FieldTimeoutMinutes = "timeout_minutes"
	// FieldStallTimeoutMinutes holds the string denoting the stall_timeout_minutes field in the database.
	FieldStallTimeoutMinutes = "stall_timeout_minutes"
	// FieldIsActive holds the string denoting the is_active field in the database.
	FieldIsActive = "is_active"
	// FieldContentHash holds the string denoting the content_hash field in the database.
	FieldContentHash = "content_hash"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeWorkflow holds the string denoting the workflow edge name in mutations.
	EdgeWorkflow = "workflow"
	// EdgeAgentRuns holds the string denoting the agent_runs edge name in mutations.
	EdgeAgentRuns = "agent_runs"
	// Table holds the table name of the workflowversion in the database.
	Table = "workflow_versions"
	// WorkflowTable is the table that holds the workflow relation/edge.
	WorkflowTable = "workflow_versions"
	// WorkflowInverseTable is the table name for the Workflow entity.
	// It exists in this package in order to avoid circular dependency with the "workflow" package.
	WorkflowInverseTable = "workflows"
	// WorkflowColumn is the table column denoting the workflow relation/edge.
	WorkflowColumn = "workflow_id"
	// AgentRunsTable is the table that holds the agent_runs relation/edge.
	AgentRunsTable = "agent_runs"
	// AgentRunsInverseTable is the table name for the AgentRun entity.
	// It exists in this package in order to avoid circular dependency with the "agentrun" package.
	AgentRunsInverseTable = "agent_runs"
	// AgentRunsColumn is the table column denoting the agent_runs relation/edge.
	AgentRunsColumn = "workflow_version_id"
)

Variables

View Source
var (
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// TypeValidator is a validator for the "type" field. It is called by the builders before save.
	TypeValidator func(string) error
	// HarnessPathValidator is a validator for the "harness_path" field. It is called by the builders before save.
	HarnessPathValidator func(string) error
	// DefaultHooks holds the default value on creation for the "hooks" field.
	DefaultHooks func() map[string]interface{}
	// DefaultMaxConcurrent holds the default value on creation for the "max_concurrent" field.
	DefaultMaxConcurrent int
	// DefaultMaxRetryAttempts holds the default value on creation for the "max_retry_attempts" field.
	DefaultMaxRetryAttempts int
	// DefaultTimeoutMinutes holds the default value on creation for the "timeout_minutes" field.
	DefaultTimeoutMinutes int
	// DefaultStallTimeoutMinutes holds the default value on creation for the "stall_timeout_minutes" field.
	DefaultStallTimeoutMinutes int
	// DefaultIsActive holds the default value on creation for the "is_active" field.
	DefaultIsActive bool
	// ContentHashValidator is a validator for the "content_hash" field. It is called by the builders before save.
	ContentHashValidator func(string) error
	// DefaultCreatedBy holds the default value on creation for the "created_by" field.
	DefaultCreatedBy string
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for workflowversion fields.

Functions

func And

And groups predicates with the AND operator between them.

func ContentHash

func ContentHash(v string) predicate.WorkflowVersion

ContentHash applies equality check predicate on the "content_hash" field. It's identical to ContentHashEQ.

func ContentHashContains

func ContentHashContains(v string) predicate.WorkflowVersion

ContentHashContains applies the Contains predicate on the "content_hash" field.

func ContentHashContainsFold

func ContentHashContainsFold(v string) predicate.WorkflowVersion

ContentHashContainsFold applies the ContainsFold predicate on the "content_hash" field.

func ContentHashEQ

func ContentHashEQ(v string) predicate.WorkflowVersion

ContentHashEQ applies the EQ predicate on the "content_hash" field.

func ContentHashEqualFold

func ContentHashEqualFold(v string) predicate.WorkflowVersion

ContentHashEqualFold applies the EqualFold predicate on the "content_hash" field.

func ContentHashGT

func ContentHashGT(v string) predicate.WorkflowVersion

ContentHashGT applies the GT predicate on the "content_hash" field.

func ContentHashGTE

func ContentHashGTE(v string) predicate.WorkflowVersion

ContentHashGTE applies the GTE predicate on the "content_hash" field.

func ContentHashHasPrefix

func ContentHashHasPrefix(v string) predicate.WorkflowVersion

ContentHashHasPrefix applies the HasPrefix predicate on the "content_hash" field.

func ContentHashHasSuffix

func ContentHashHasSuffix(v string) predicate.WorkflowVersion

ContentHashHasSuffix applies the HasSuffix predicate on the "content_hash" field.

func ContentHashIn

func ContentHashIn(vs ...string) predicate.WorkflowVersion

ContentHashIn applies the In predicate on the "content_hash" field.

func ContentHashLT

func ContentHashLT(v string) predicate.WorkflowVersion

ContentHashLT applies the LT predicate on the "content_hash" field.

func ContentHashLTE

func ContentHashLTE(v string) predicate.WorkflowVersion

ContentHashLTE applies the LTE predicate on the "content_hash" field.

func ContentHashNEQ

func ContentHashNEQ(v string) predicate.WorkflowVersion

ContentHashNEQ applies the NEQ predicate on the "content_hash" field.

func ContentHashNotIn

func ContentHashNotIn(vs ...string) predicate.WorkflowVersion

ContentHashNotIn applies the NotIn predicate on the "content_hash" field.

func ContentMarkdown

func ContentMarkdown(v string) predicate.WorkflowVersion

ContentMarkdown applies equality check predicate on the "content_markdown" field. It's identical to ContentMarkdownEQ.

func ContentMarkdownContains

func ContentMarkdownContains(v string) predicate.WorkflowVersion

ContentMarkdownContains applies the Contains predicate on the "content_markdown" field.

func ContentMarkdownContainsFold

func ContentMarkdownContainsFold(v string) predicate.WorkflowVersion

ContentMarkdownContainsFold applies the ContainsFold predicate on the "content_markdown" field.

func ContentMarkdownEQ

func ContentMarkdownEQ(v string) predicate.WorkflowVersion

ContentMarkdownEQ applies the EQ predicate on the "content_markdown" field.

func ContentMarkdownEqualFold

func ContentMarkdownEqualFold(v string) predicate.WorkflowVersion

ContentMarkdownEqualFold applies the EqualFold predicate on the "content_markdown" field.

func ContentMarkdownGT

func ContentMarkdownGT(v string) predicate.WorkflowVersion

ContentMarkdownGT applies the GT predicate on the "content_markdown" field.

func ContentMarkdownGTE

func ContentMarkdownGTE(v string) predicate.WorkflowVersion

ContentMarkdownGTE applies the GTE predicate on the "content_markdown" field.

func ContentMarkdownHasPrefix

func ContentMarkdownHasPrefix(v string) predicate.WorkflowVersion

ContentMarkdownHasPrefix applies the HasPrefix predicate on the "content_markdown" field.

func ContentMarkdownHasSuffix

func ContentMarkdownHasSuffix(v string) predicate.WorkflowVersion

ContentMarkdownHasSuffix applies the HasSuffix predicate on the "content_markdown" field.

func ContentMarkdownIn

func ContentMarkdownIn(vs ...string) predicate.WorkflowVersion

ContentMarkdownIn applies the In predicate on the "content_markdown" field.

func ContentMarkdownLT

func ContentMarkdownLT(v string) predicate.WorkflowVersion

ContentMarkdownLT applies the LT predicate on the "content_markdown" field.

func ContentMarkdownLTE

func ContentMarkdownLTE(v string) predicate.WorkflowVersion

ContentMarkdownLTE applies the LTE predicate on the "content_markdown" field.

func ContentMarkdownNEQ

func ContentMarkdownNEQ(v string) predicate.WorkflowVersion

ContentMarkdownNEQ applies the NEQ predicate on the "content_markdown" field.

func ContentMarkdownNotIn

func ContentMarkdownNotIn(vs ...string) predicate.WorkflowVersion

ContentMarkdownNotIn applies the NotIn predicate on the "content_markdown" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.WorkflowVersion

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.WorkflowVersion

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.WorkflowVersion

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.WorkflowVersion

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.WorkflowVersion

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.WorkflowVersion

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.WorkflowVersion

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

func CreatedAtNotIn

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

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

func CreatedBy

func CreatedBy(v string) predicate.WorkflowVersion

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains

func CreatedByContains(v string) predicate.WorkflowVersion

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.WorkflowVersion

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ

func CreatedByEQ(v string) predicate.WorkflowVersion

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.WorkflowVersion

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT

func CreatedByGT(v string) predicate.WorkflowVersion

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE

func CreatedByGTE(v string) predicate.WorkflowVersion

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.WorkflowVersion

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.WorkflowVersion

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn

func CreatedByIn(vs ...string) predicate.WorkflowVersion

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByLT

func CreatedByLT(v string) predicate.WorkflowVersion

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE

func CreatedByLTE(v string) predicate.WorkflowVersion

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.WorkflowVersion

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn

func CreatedByNotIn(vs ...string) predicate.WorkflowVersion

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func FinishStatusIds

func FinishStatusIds(v pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIds applies equality check predicate on the "finish_status_ids" field. It's identical to FinishStatusIdsEQ.

func FinishStatusIdsEQ

func FinishStatusIdsEQ(v pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsEQ applies the EQ predicate on the "finish_status_ids" field.

func FinishStatusIdsGT

func FinishStatusIdsGT(v pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsGT applies the GT predicate on the "finish_status_ids" field.

func FinishStatusIdsGTE

func FinishStatusIdsGTE(v pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsGTE applies the GTE predicate on the "finish_status_ids" field.

func FinishStatusIdsIn

func FinishStatusIdsIn(vs ...pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsIn applies the In predicate on the "finish_status_ids" field.

func FinishStatusIdsIsNil

func FinishStatusIdsIsNil() predicate.WorkflowVersion

FinishStatusIdsIsNil applies the IsNil predicate on the "finish_status_ids" field.

func FinishStatusIdsLT

func FinishStatusIdsLT(v pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsLT applies the LT predicate on the "finish_status_ids" field.

func FinishStatusIdsLTE

func FinishStatusIdsLTE(v pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsLTE applies the LTE predicate on the "finish_status_ids" field.

func FinishStatusIdsNEQ

func FinishStatusIdsNEQ(v pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsNEQ applies the NEQ predicate on the "finish_status_ids" field.

func FinishStatusIdsNotIn

func FinishStatusIdsNotIn(vs ...pgarray.StringArray) predicate.WorkflowVersion

FinishStatusIdsNotIn applies the NotIn predicate on the "finish_status_ids" field.

func FinishStatusIdsNotNil

func FinishStatusIdsNotNil() predicate.WorkflowVersion

FinishStatusIdsNotNil applies the NotNil predicate on the "finish_status_ids" field.

func HarnessPath

func HarnessPath(v string) predicate.WorkflowVersion

HarnessPath applies equality check predicate on the "harness_path" field. It's identical to HarnessPathEQ.

func HarnessPathContains

func HarnessPathContains(v string) predicate.WorkflowVersion

HarnessPathContains applies the Contains predicate on the "harness_path" field.

func HarnessPathContainsFold

func HarnessPathContainsFold(v string) predicate.WorkflowVersion

HarnessPathContainsFold applies the ContainsFold predicate on the "harness_path" field.

func HarnessPathEQ

func HarnessPathEQ(v string) predicate.WorkflowVersion

HarnessPathEQ applies the EQ predicate on the "harness_path" field.

func HarnessPathEqualFold

func HarnessPathEqualFold(v string) predicate.WorkflowVersion

HarnessPathEqualFold applies the EqualFold predicate on the "harness_path" field.

func HarnessPathGT

func HarnessPathGT(v string) predicate.WorkflowVersion

HarnessPathGT applies the GT predicate on the "harness_path" field.

func HarnessPathGTE

func HarnessPathGTE(v string) predicate.WorkflowVersion

HarnessPathGTE applies the GTE predicate on the "harness_path" field.

func HarnessPathHasPrefix

func HarnessPathHasPrefix(v string) predicate.WorkflowVersion

HarnessPathHasPrefix applies the HasPrefix predicate on the "harness_path" field.

func HarnessPathHasSuffix

func HarnessPathHasSuffix(v string) predicate.WorkflowVersion

HarnessPathHasSuffix applies the HasSuffix predicate on the "harness_path" field.

func HarnessPathIn

func HarnessPathIn(vs ...string) predicate.WorkflowVersion

HarnessPathIn applies the In predicate on the "harness_path" field.

func HarnessPathLT

func HarnessPathLT(v string) predicate.WorkflowVersion

HarnessPathLT applies the LT predicate on the "harness_path" field.

func HarnessPathLTE

func HarnessPathLTE(v string) predicate.WorkflowVersion

HarnessPathLTE applies the LTE predicate on the "harness_path" field.

func HarnessPathNEQ

func HarnessPathNEQ(v string) predicate.WorkflowVersion

HarnessPathNEQ applies the NEQ predicate on the "harness_path" field.

func HarnessPathNotIn

func HarnessPathNotIn(vs ...string) predicate.WorkflowVersion

HarnessPathNotIn applies the NotIn predicate on the "harness_path" field.

func HasAgentRuns

func HasAgentRuns() predicate.WorkflowVersion

HasAgentRuns applies the HasEdge predicate on the "agent_runs" edge.

func HasAgentRunsWith

func HasAgentRunsWith(preds ...predicate.AgentRun) predicate.WorkflowVersion

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

func HasWorkflow

func HasWorkflow() predicate.WorkflowVersion

HasWorkflow applies the HasEdge predicate on the "workflow" edge.

func HasWorkflowWith

func HasWorkflowWith(preds ...predicate.Workflow) predicate.WorkflowVersion

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

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 ...uuid.UUID) predicate.WorkflowVersion

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 ...uuid.UUID) predicate.WorkflowVersion

IDNotIn applies the NotIn predicate on the ID field.

func IsActive

func IsActive(v bool) predicate.WorkflowVersion

IsActive applies equality check predicate on the "is_active" field. It's identical to IsActiveEQ.

func IsActiveEQ

func IsActiveEQ(v bool) predicate.WorkflowVersion

IsActiveEQ applies the EQ predicate on the "is_active" field.

func IsActiveNEQ

func IsActiveNEQ(v bool) predicate.WorkflowVersion

IsActiveNEQ applies the NEQ predicate on the "is_active" field.

func MaxConcurrent

func MaxConcurrent(v int) predicate.WorkflowVersion

MaxConcurrent applies equality check predicate on the "max_concurrent" field. It's identical to MaxConcurrentEQ.

func MaxConcurrentEQ

func MaxConcurrentEQ(v int) predicate.WorkflowVersion

MaxConcurrentEQ applies the EQ predicate on the "max_concurrent" field.

func MaxConcurrentGT

func MaxConcurrentGT(v int) predicate.WorkflowVersion

MaxConcurrentGT applies the GT predicate on the "max_concurrent" field.

func MaxConcurrentGTE

func MaxConcurrentGTE(v int) predicate.WorkflowVersion

MaxConcurrentGTE applies the GTE predicate on the "max_concurrent" field.

func MaxConcurrentIn

func MaxConcurrentIn(vs ...int) predicate.WorkflowVersion

MaxConcurrentIn applies the In predicate on the "max_concurrent" field.

func MaxConcurrentLT

func MaxConcurrentLT(v int) predicate.WorkflowVersion

MaxConcurrentLT applies the LT predicate on the "max_concurrent" field.

func MaxConcurrentLTE

func MaxConcurrentLTE(v int) predicate.WorkflowVersion

MaxConcurrentLTE applies the LTE predicate on the "max_concurrent" field.

func MaxConcurrentNEQ

func MaxConcurrentNEQ(v int) predicate.WorkflowVersion

MaxConcurrentNEQ applies the NEQ predicate on the "max_concurrent" field.

func MaxConcurrentNotIn

func MaxConcurrentNotIn(vs ...int) predicate.WorkflowVersion

MaxConcurrentNotIn applies the NotIn predicate on the "max_concurrent" field.

func MaxRetryAttempts

func MaxRetryAttempts(v int) predicate.WorkflowVersion

MaxRetryAttempts applies equality check predicate on the "max_retry_attempts" field. It's identical to MaxRetryAttemptsEQ.

func MaxRetryAttemptsEQ

func MaxRetryAttemptsEQ(v int) predicate.WorkflowVersion

MaxRetryAttemptsEQ applies the EQ predicate on the "max_retry_attempts" field.

func MaxRetryAttemptsGT

func MaxRetryAttemptsGT(v int) predicate.WorkflowVersion

MaxRetryAttemptsGT applies the GT predicate on the "max_retry_attempts" field.

func MaxRetryAttemptsGTE

func MaxRetryAttemptsGTE(v int) predicate.WorkflowVersion

MaxRetryAttemptsGTE applies the GTE predicate on the "max_retry_attempts" field.

func MaxRetryAttemptsIn

func MaxRetryAttemptsIn(vs ...int) predicate.WorkflowVersion

MaxRetryAttemptsIn applies the In predicate on the "max_retry_attempts" field.

func MaxRetryAttemptsLT

func MaxRetryAttemptsLT(v int) predicate.WorkflowVersion

MaxRetryAttemptsLT applies the LT predicate on the "max_retry_attempts" field.

func MaxRetryAttemptsLTE

func MaxRetryAttemptsLTE(v int) predicate.WorkflowVersion

MaxRetryAttemptsLTE applies the LTE predicate on the "max_retry_attempts" field.

func MaxRetryAttemptsNEQ

func MaxRetryAttemptsNEQ(v int) predicate.WorkflowVersion

MaxRetryAttemptsNEQ applies the NEQ predicate on the "max_retry_attempts" field.

func MaxRetryAttemptsNotIn

func MaxRetryAttemptsNotIn(vs ...int) predicate.WorkflowVersion

MaxRetryAttemptsNotIn applies the NotIn predicate on the "max_retry_attempts" field.

func Name

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

func NameContains

func NameContains(v string) predicate.WorkflowVersion

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

func NameContainsFold

func NameContainsFold(v string) predicate.WorkflowVersion

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.WorkflowVersion

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

func NameGT

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

func NameGTE

func NameGTE(v string) predicate.WorkflowVersion

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.WorkflowVersion

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.WorkflowVersion

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

func NameIn

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

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

func NameLT

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

func NameLTE

func NameLTE(v string) predicate.WorkflowVersion

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

func NameNEQ

func NameNEQ(v string) predicate.WorkflowVersion

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

func NameNotIn

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

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 PickupStatusIds

func PickupStatusIds(v pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIds applies equality check predicate on the "pickup_status_ids" field. It's identical to PickupStatusIdsEQ.

func PickupStatusIdsEQ

func PickupStatusIdsEQ(v pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsEQ applies the EQ predicate on the "pickup_status_ids" field.

func PickupStatusIdsGT

func PickupStatusIdsGT(v pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsGT applies the GT predicate on the "pickup_status_ids" field.

func PickupStatusIdsGTE

func PickupStatusIdsGTE(v pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsGTE applies the GTE predicate on the "pickup_status_ids" field.

func PickupStatusIdsIn

func PickupStatusIdsIn(vs ...pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsIn applies the In predicate on the "pickup_status_ids" field.

func PickupStatusIdsIsNil

func PickupStatusIdsIsNil() predicate.WorkflowVersion

PickupStatusIdsIsNil applies the IsNil predicate on the "pickup_status_ids" field.

func PickupStatusIdsLT

func PickupStatusIdsLT(v pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsLT applies the LT predicate on the "pickup_status_ids" field.

func PickupStatusIdsLTE

func PickupStatusIdsLTE(v pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsLTE applies the LTE predicate on the "pickup_status_ids" field.

func PickupStatusIdsNEQ

func PickupStatusIdsNEQ(v pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsNEQ applies the NEQ predicate on the "pickup_status_ids" field.

func PickupStatusIdsNotIn

func PickupStatusIdsNotIn(vs ...pgarray.StringArray) predicate.WorkflowVersion

PickupStatusIdsNotIn applies the NotIn predicate on the "pickup_status_ids" field.

func PickupStatusIdsNotNil

func PickupStatusIdsNotNil() predicate.WorkflowVersion

PickupStatusIdsNotNil applies the NotNil predicate on the "pickup_status_ids" field.

func PlatformAccessAllowed

func PlatformAccessAllowed(v pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowed applies equality check predicate on the "platform_access_allowed" field. It's identical to PlatformAccessAllowedEQ.

func PlatformAccessAllowedEQ

func PlatformAccessAllowedEQ(v pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedEQ applies the EQ predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedGT

func PlatformAccessAllowedGT(v pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedGT applies the GT predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedGTE

func PlatformAccessAllowedGTE(v pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedGTE applies the GTE predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedIn

func PlatformAccessAllowedIn(vs ...pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedIn applies the In predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedIsNil

func PlatformAccessAllowedIsNil() predicate.WorkflowVersion

PlatformAccessAllowedIsNil applies the IsNil predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedLT

func PlatformAccessAllowedLT(v pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedLT applies the LT predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedLTE

func PlatformAccessAllowedLTE(v pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedLTE applies the LTE predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedNEQ

func PlatformAccessAllowedNEQ(v pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedNEQ applies the NEQ predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedNotIn

func PlatformAccessAllowedNotIn(vs ...pgarray.StringArray) predicate.WorkflowVersion

PlatformAccessAllowedNotIn applies the NotIn predicate on the "platform_access_allowed" field.

func PlatformAccessAllowedNotNil

func PlatformAccessAllowedNotNil() predicate.WorkflowVersion

PlatformAccessAllowedNotNil applies the NotNil predicate on the "platform_access_allowed" field.

func RoleDescription

func RoleDescription(v string) predicate.WorkflowVersion

RoleDescription applies equality check predicate on the "role_description" field. It's identical to RoleDescriptionEQ.

func RoleDescriptionContains

func RoleDescriptionContains(v string) predicate.WorkflowVersion

RoleDescriptionContains applies the Contains predicate on the "role_description" field.

func RoleDescriptionContainsFold

func RoleDescriptionContainsFold(v string) predicate.WorkflowVersion

RoleDescriptionContainsFold applies the ContainsFold predicate on the "role_description" field.

func RoleDescriptionEQ

func RoleDescriptionEQ(v string) predicate.WorkflowVersion

RoleDescriptionEQ applies the EQ predicate on the "role_description" field.

func RoleDescriptionEqualFold

func RoleDescriptionEqualFold(v string) predicate.WorkflowVersion

RoleDescriptionEqualFold applies the EqualFold predicate on the "role_description" field.

func RoleDescriptionGT

func RoleDescriptionGT(v string) predicate.WorkflowVersion

RoleDescriptionGT applies the GT predicate on the "role_description" field.

func RoleDescriptionGTE

func RoleDescriptionGTE(v string) predicate.WorkflowVersion

RoleDescriptionGTE applies the GTE predicate on the "role_description" field.

func RoleDescriptionHasPrefix

func RoleDescriptionHasPrefix(v string) predicate.WorkflowVersion

RoleDescriptionHasPrefix applies the HasPrefix predicate on the "role_description" field.

func RoleDescriptionHasSuffix

func RoleDescriptionHasSuffix(v string) predicate.WorkflowVersion

RoleDescriptionHasSuffix applies the HasSuffix predicate on the "role_description" field.

func RoleDescriptionIn

func RoleDescriptionIn(vs ...string) predicate.WorkflowVersion

RoleDescriptionIn applies the In predicate on the "role_description" field.

func RoleDescriptionIsNil

func RoleDescriptionIsNil() predicate.WorkflowVersion

RoleDescriptionIsNil applies the IsNil predicate on the "role_description" field.

func RoleDescriptionLT

func RoleDescriptionLT(v string) predicate.WorkflowVersion

RoleDescriptionLT applies the LT predicate on the "role_description" field.

func RoleDescriptionLTE

func RoleDescriptionLTE(v string) predicate.WorkflowVersion

RoleDescriptionLTE applies the LTE predicate on the "role_description" field.

func RoleDescriptionNEQ

func RoleDescriptionNEQ(v string) predicate.WorkflowVersion

RoleDescriptionNEQ applies the NEQ predicate on the "role_description" field.

func RoleDescriptionNotIn

func RoleDescriptionNotIn(vs ...string) predicate.WorkflowVersion

RoleDescriptionNotIn applies the NotIn predicate on the "role_description" field.

func RoleDescriptionNotNil

func RoleDescriptionNotNil() predicate.WorkflowVersion

RoleDescriptionNotNil applies the NotNil predicate on the "role_description" field.

func RoleName

func RoleName(v string) predicate.WorkflowVersion

RoleName applies equality check predicate on the "role_name" field. It's identical to RoleNameEQ.

func RoleNameContains

func RoleNameContains(v string) predicate.WorkflowVersion

RoleNameContains applies the Contains predicate on the "role_name" field.

func RoleNameContainsFold

func RoleNameContainsFold(v string) predicate.WorkflowVersion

RoleNameContainsFold applies the ContainsFold predicate on the "role_name" field.

func RoleNameEQ

func RoleNameEQ(v string) predicate.WorkflowVersion

RoleNameEQ applies the EQ predicate on the "role_name" field.

func RoleNameEqualFold

func RoleNameEqualFold(v string) predicate.WorkflowVersion

RoleNameEqualFold applies the EqualFold predicate on the "role_name" field.

func RoleNameGT

func RoleNameGT(v string) predicate.WorkflowVersion

RoleNameGT applies the GT predicate on the "role_name" field.

func RoleNameGTE

func RoleNameGTE(v string) predicate.WorkflowVersion

RoleNameGTE applies the GTE predicate on the "role_name" field.

func RoleNameHasPrefix

func RoleNameHasPrefix(v string) predicate.WorkflowVersion

RoleNameHasPrefix applies the HasPrefix predicate on the "role_name" field.

func RoleNameHasSuffix

func RoleNameHasSuffix(v string) predicate.WorkflowVersion

RoleNameHasSuffix applies the HasSuffix predicate on the "role_name" field.

func RoleNameIn

func RoleNameIn(vs ...string) predicate.WorkflowVersion

RoleNameIn applies the In predicate on the "role_name" field.

func RoleNameIsNil

func RoleNameIsNil() predicate.WorkflowVersion

RoleNameIsNil applies the IsNil predicate on the "role_name" field.

func RoleNameLT

func RoleNameLT(v string) predicate.WorkflowVersion

RoleNameLT applies the LT predicate on the "role_name" field.

func RoleNameLTE

func RoleNameLTE(v string) predicate.WorkflowVersion

RoleNameLTE applies the LTE predicate on the "role_name" field.

func RoleNameNEQ

func RoleNameNEQ(v string) predicate.WorkflowVersion

RoleNameNEQ applies the NEQ predicate on the "role_name" field.

func RoleNameNotIn

func RoleNameNotIn(vs ...string) predicate.WorkflowVersion

RoleNameNotIn applies the NotIn predicate on the "role_name" field.

func RoleNameNotNil

func RoleNameNotNil() predicate.WorkflowVersion

RoleNameNotNil applies the NotNil predicate on the "role_name" field.

func RoleSlug

func RoleSlug(v string) predicate.WorkflowVersion

RoleSlug applies equality check predicate on the "role_slug" field. It's identical to RoleSlugEQ.

func RoleSlugContains

func RoleSlugContains(v string) predicate.WorkflowVersion

RoleSlugContains applies the Contains predicate on the "role_slug" field.

func RoleSlugContainsFold

func RoleSlugContainsFold(v string) predicate.WorkflowVersion

RoleSlugContainsFold applies the ContainsFold predicate on the "role_slug" field.

func RoleSlugEQ

func RoleSlugEQ(v string) predicate.WorkflowVersion

RoleSlugEQ applies the EQ predicate on the "role_slug" field.

func RoleSlugEqualFold

func RoleSlugEqualFold(v string) predicate.WorkflowVersion

RoleSlugEqualFold applies the EqualFold predicate on the "role_slug" field.

func RoleSlugGT

func RoleSlugGT(v string) predicate.WorkflowVersion

RoleSlugGT applies the GT predicate on the "role_slug" field.

func RoleSlugGTE

func RoleSlugGTE(v string) predicate.WorkflowVersion

RoleSlugGTE applies the GTE predicate on the "role_slug" field.

func RoleSlugHasPrefix

func RoleSlugHasPrefix(v string) predicate.WorkflowVersion

RoleSlugHasPrefix applies the HasPrefix predicate on the "role_slug" field.

func RoleSlugHasSuffix

func RoleSlugHasSuffix(v string) predicate.WorkflowVersion

RoleSlugHasSuffix applies the HasSuffix predicate on the "role_slug" field.

func RoleSlugIn

func RoleSlugIn(vs ...string) predicate.WorkflowVersion

RoleSlugIn applies the In predicate on the "role_slug" field.

func RoleSlugIsNil

func RoleSlugIsNil() predicate.WorkflowVersion

RoleSlugIsNil applies the IsNil predicate on the "role_slug" field.

func RoleSlugLT

func RoleSlugLT(v string) predicate.WorkflowVersion

RoleSlugLT applies the LT predicate on the "role_slug" field.

func RoleSlugLTE

func RoleSlugLTE(v string) predicate.WorkflowVersion

RoleSlugLTE applies the LTE predicate on the "role_slug" field.

func RoleSlugNEQ

func RoleSlugNEQ(v string) predicate.WorkflowVersion

RoleSlugNEQ applies the NEQ predicate on the "role_slug" field.

func RoleSlugNotIn

func RoleSlugNotIn(vs ...string) predicate.WorkflowVersion

RoleSlugNotIn applies the NotIn predicate on the "role_slug" field.

func RoleSlugNotNil

func RoleSlugNotNil() predicate.WorkflowVersion

RoleSlugNotNil applies the NotNil predicate on the "role_slug" field.

func StallTimeoutMinutes

func StallTimeoutMinutes(v int) predicate.WorkflowVersion

StallTimeoutMinutes applies equality check predicate on the "stall_timeout_minutes" field. It's identical to StallTimeoutMinutesEQ.

func StallTimeoutMinutesEQ

func StallTimeoutMinutesEQ(v int) predicate.WorkflowVersion

StallTimeoutMinutesEQ applies the EQ predicate on the "stall_timeout_minutes" field.

func StallTimeoutMinutesGT

func StallTimeoutMinutesGT(v int) predicate.WorkflowVersion

StallTimeoutMinutesGT applies the GT predicate on the "stall_timeout_minutes" field.

func StallTimeoutMinutesGTE

func StallTimeoutMinutesGTE(v int) predicate.WorkflowVersion

StallTimeoutMinutesGTE applies the GTE predicate on the "stall_timeout_minutes" field.

func StallTimeoutMinutesIn

func StallTimeoutMinutesIn(vs ...int) predicate.WorkflowVersion

StallTimeoutMinutesIn applies the In predicate on the "stall_timeout_minutes" field.

func StallTimeoutMinutesLT

func StallTimeoutMinutesLT(v int) predicate.WorkflowVersion

StallTimeoutMinutesLT applies the LT predicate on the "stall_timeout_minutes" field.

func StallTimeoutMinutesLTE

func StallTimeoutMinutesLTE(v int) predicate.WorkflowVersion

StallTimeoutMinutesLTE applies the LTE predicate on the "stall_timeout_minutes" field.

func StallTimeoutMinutesNEQ

func StallTimeoutMinutesNEQ(v int) predicate.WorkflowVersion

StallTimeoutMinutesNEQ applies the NEQ predicate on the "stall_timeout_minutes" field.

func StallTimeoutMinutesNotIn

func StallTimeoutMinutesNotIn(vs ...int) predicate.WorkflowVersion

StallTimeoutMinutesNotIn applies the NotIn predicate on the "stall_timeout_minutes" field.

func TimeoutMinutes

func TimeoutMinutes(v int) predicate.WorkflowVersion

TimeoutMinutes applies equality check predicate on the "timeout_minutes" field. It's identical to TimeoutMinutesEQ.

func TimeoutMinutesEQ

func TimeoutMinutesEQ(v int) predicate.WorkflowVersion

TimeoutMinutesEQ applies the EQ predicate on the "timeout_minutes" field.

func TimeoutMinutesGT

func TimeoutMinutesGT(v int) predicate.WorkflowVersion

TimeoutMinutesGT applies the GT predicate on the "timeout_minutes" field.

func TimeoutMinutesGTE

func TimeoutMinutesGTE(v int) predicate.WorkflowVersion

TimeoutMinutesGTE applies the GTE predicate on the "timeout_minutes" field.

func TimeoutMinutesIn

func TimeoutMinutesIn(vs ...int) predicate.WorkflowVersion

TimeoutMinutesIn applies the In predicate on the "timeout_minutes" field.

func TimeoutMinutesLT

func TimeoutMinutesLT(v int) predicate.WorkflowVersion

TimeoutMinutesLT applies the LT predicate on the "timeout_minutes" field.

func TimeoutMinutesLTE

func TimeoutMinutesLTE(v int) predicate.WorkflowVersion

TimeoutMinutesLTE applies the LTE predicate on the "timeout_minutes" field.

func TimeoutMinutesNEQ

func TimeoutMinutesNEQ(v int) predicate.WorkflowVersion

TimeoutMinutesNEQ applies the NEQ predicate on the "timeout_minutes" field.

func TimeoutMinutesNotIn

func TimeoutMinutesNotIn(vs ...int) predicate.WorkflowVersion

TimeoutMinutesNotIn applies the NotIn predicate on the "timeout_minutes" field.

func Type

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

func TypeContains

func TypeContains(v string) predicate.WorkflowVersion

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

func TypeContainsFold

func TypeContainsFold(v string) predicate.WorkflowVersion

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

func TypeEQ

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

func TypeEqualFold

func TypeEqualFold(v string) predicate.WorkflowVersion

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

func TypeGT

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

func TypeGTE

func TypeGTE(v string) predicate.WorkflowVersion

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

func TypeHasPrefix

func TypeHasPrefix(v string) predicate.WorkflowVersion

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

func TypeHasSuffix

func TypeHasSuffix(v string) predicate.WorkflowVersion

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

func TypeIn

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

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

func TypeLT

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

func TypeLTE

func TypeLTE(v string) predicate.WorkflowVersion

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

func TypeNEQ

func TypeNEQ(v string) predicate.WorkflowVersion

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

func TypeNotIn

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

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

func ValidColumn

func ValidColumn(column string) bool

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

func Version

func Version(v int) predicate.WorkflowVersion

Version applies equality check predicate on the "version" field. It's identical to VersionEQ.

func VersionEQ

func VersionEQ(v int) predicate.WorkflowVersion

VersionEQ applies the EQ predicate on the "version" field.

func VersionGT

func VersionGT(v int) predicate.WorkflowVersion

VersionGT applies the GT predicate on the "version" field.

func VersionGTE

func VersionGTE(v int) predicate.WorkflowVersion

VersionGTE applies the GTE predicate on the "version" field.

func VersionIn

func VersionIn(vs ...int) predicate.WorkflowVersion

VersionIn applies the In predicate on the "version" field.

func VersionLT

func VersionLT(v int) predicate.WorkflowVersion

VersionLT applies the LT predicate on the "version" field.

func VersionLTE

func VersionLTE(v int) predicate.WorkflowVersion

VersionLTE applies the LTE predicate on the "version" field.

func VersionNEQ

func VersionNEQ(v int) predicate.WorkflowVersion

VersionNEQ applies the NEQ predicate on the "version" field.

func VersionNotIn

func VersionNotIn(vs ...int) predicate.WorkflowVersion

VersionNotIn applies the NotIn predicate on the "version" field.

func WorkflowID

func WorkflowID(v uuid.UUID) predicate.WorkflowVersion

WorkflowID applies equality check predicate on the "workflow_id" field. It's identical to WorkflowIDEQ.

func WorkflowIDEQ

func WorkflowIDEQ(v uuid.UUID) predicate.WorkflowVersion

WorkflowIDEQ applies the EQ predicate on the "workflow_id" field.

func WorkflowIDIn

func WorkflowIDIn(vs ...uuid.UUID) predicate.WorkflowVersion

WorkflowIDIn applies the In predicate on the "workflow_id" field.

func WorkflowIDNEQ

func WorkflowIDNEQ(v uuid.UUID) predicate.WorkflowVersion

WorkflowIDNEQ applies the NEQ predicate on the "workflow_id" field.

func WorkflowIDNotIn

func WorkflowIDNotIn(vs ...uuid.UUID) predicate.WorkflowVersion

WorkflowIDNotIn applies the NotIn predicate on the "workflow_id" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the WorkflowVersion queries.

func ByAgentRuns

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

ByAgentRuns orders the results by agent_runs terms.

func ByAgentRunsCount

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

ByAgentRunsCount orders the results by agent_runs count.

func ByContentHash

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

ByContentHash orders the results by the content_hash field.

func ByContentMarkdown

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

ByContentMarkdown orders the results by the content_markdown field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy

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

ByCreatedBy orders the results by the created_by field.

func ByFinishStatusIds

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

ByFinishStatusIds orders the results by the finish_status_ids field.

func ByHarnessPath

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

ByHarnessPath orders the results by the harness_path field.

func ByID

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

ByID orders the results by the id field.

func ByIsActive

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

ByIsActive orders the results by the is_active field.

func ByMaxConcurrent

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

ByMaxConcurrent orders the results by the max_concurrent field.

func ByMaxRetryAttempts

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

ByMaxRetryAttempts orders the results by the max_retry_attempts field.

func ByName

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

ByName orders the results by the name field.

func ByPickupStatusIds

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

ByPickupStatusIds orders the results by the pickup_status_ids field.

func ByPlatformAccessAllowed

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

ByPlatformAccessAllowed orders the results by the platform_access_allowed field.

func ByRoleDescription

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

ByRoleDescription orders the results by the role_description field.

func ByRoleName

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

ByRoleName orders the results by the role_name field.

func ByRoleSlug

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

ByRoleSlug orders the results by the role_slug field.

func ByStallTimeoutMinutes

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

ByStallTimeoutMinutes orders the results by the stall_timeout_minutes field.

func ByTimeoutMinutes

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

ByTimeoutMinutes orders the results by the timeout_minutes field.

func ByType

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

ByType orders the results by the type field.

func ByVersion

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

ByVersion orders the results by the version field.

func ByWorkflowField

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

ByWorkflowField orders the results by workflow field.

func ByWorkflowID

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

ByWorkflowID orders the results by the workflow_id field.

Jump to

Keyboard shortcuts

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