workflowinstance

package
v0.5.10 Latest Latest
Warning

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

Go to latest
Published: Nov 16, 2021 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the workflowinstance type in the database.
	Label = "workflow_instance"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldInstanceID holds the string denoting the instanceid field in the database.
	FieldInstanceID = "instance_id"
	// FieldInvokedBy holds the string denoting the invokedby field in the database.
	FieldInvokedBy = "invoked_by"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldRevision holds the string denoting the revision field in the database.
	FieldRevision = "revision"
	// FieldBeginTime holds the string denoting the begintime field in the database.
	FieldBeginTime = "begin_time"
	// FieldEndTime holds the string denoting the endtime field in the database.
	FieldEndTime = "end_time"
	// FieldFlow holds the string denoting the flow field in the database.
	FieldFlow = "flow"
	// FieldInput holds the string denoting the input field in the database.
	FieldInput = "input"
	// FieldOutput holds the string denoting the output field in the database.
	FieldOutput = "output"
	// FieldStateData holds the string denoting the statedata field in the database.
	FieldStateData = "state_data"
	// FieldMemory holds the string denoting the memory field in the database.
	FieldMemory = "memory"
	// FieldDeadline holds the string denoting the deadline field in the database.
	FieldDeadline = "deadline"
	// FieldAttempts holds the string denoting the attempts field in the database.
	FieldAttempts = "attempts"
	// FieldErrorCode holds the string denoting the errorcode field in the database.
	FieldErrorCode = "error_code"
	// FieldErrorMessage holds the string denoting the errormessage field in the database.
	FieldErrorMessage = "error_message"
	// FieldStateBeginTime holds the string denoting the statebegintime field in the database.
	FieldStateBeginTime = "state_begin_time"
	// FieldController holds the string denoting the controller field in the database.
	FieldController = "controller"
	// EdgeWorkflow holds the string denoting the workflow edge name in mutations.
	EdgeWorkflow = "workflow"
	// EdgeInstance holds the string denoting the instance edge name in mutations.
	EdgeInstance = "instance"
	// Table holds the table name of the workflowinstance in the database.
	Table = "workflow_instances"
	// WorkflowTable is the table that holds the workflow relation/edge.
	WorkflowTable = "workflow_instances"
	// 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_instances"
	// InstanceTable is the table that holds the instance relation/edge.
	InstanceTable = "workflow_events"
	// InstanceInverseTable is the table name for the WorkflowEvents entity.
	// It exists in this package in order to avoid circular dependency with the "workflowevents" package.
	InstanceInverseTable = "workflow_events"
	// InstanceColumn is the table column denoting the instance relation/edge.
	InstanceColumn = "workflow_instance_instance"
)

Variables

Columns holds all SQL columns for workflowinstance fields.

View Source
var ForeignKeys = []string{
	"workflow_instances",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "workflow_instances" table and are not defined as standalone fields in the schema.

Functions

func And

And groups predicates with the AND operator between them.

func Attempts

func Attempts(v int) predicate.WorkflowInstance

Attempts applies equality check predicate on the "attempts" field. It's identical to AttemptsEQ.

func AttemptsEQ

func AttemptsEQ(v int) predicate.WorkflowInstance

AttemptsEQ applies the EQ predicate on the "attempts" field.

func AttemptsGT

func AttemptsGT(v int) predicate.WorkflowInstance

AttemptsGT applies the GT predicate on the "attempts" field.

func AttemptsGTE

func AttemptsGTE(v int) predicate.WorkflowInstance

AttemptsGTE applies the GTE predicate on the "attempts" field.

func AttemptsIn

func AttemptsIn(vs ...int) predicate.WorkflowInstance

AttemptsIn applies the In predicate on the "attempts" field.

func AttemptsIsNil

func AttemptsIsNil() predicate.WorkflowInstance

AttemptsIsNil applies the IsNil predicate on the "attempts" field.

func AttemptsLT

func AttemptsLT(v int) predicate.WorkflowInstance

AttemptsLT applies the LT predicate on the "attempts" field.

func AttemptsLTE

func AttemptsLTE(v int) predicate.WorkflowInstance

AttemptsLTE applies the LTE predicate on the "attempts" field.

func AttemptsNEQ

func AttemptsNEQ(v int) predicate.WorkflowInstance

AttemptsNEQ applies the NEQ predicate on the "attempts" field.

func AttemptsNotIn

func AttemptsNotIn(vs ...int) predicate.WorkflowInstance

AttemptsNotIn applies the NotIn predicate on the "attempts" field.

func AttemptsNotNil

func AttemptsNotNil() predicate.WorkflowInstance

AttemptsNotNil applies the NotNil predicate on the "attempts" field.

func BeginTime

func BeginTime(v time.Time) predicate.WorkflowInstance

BeginTime applies equality check predicate on the "beginTime" field. It's identical to BeginTimeEQ.

func BeginTimeEQ

func BeginTimeEQ(v time.Time) predicate.WorkflowInstance

BeginTimeEQ applies the EQ predicate on the "beginTime" field.

func BeginTimeGT

func BeginTimeGT(v time.Time) predicate.WorkflowInstance

BeginTimeGT applies the GT predicate on the "beginTime" field.

func BeginTimeGTE

func BeginTimeGTE(v time.Time) predicate.WorkflowInstance

BeginTimeGTE applies the GTE predicate on the "beginTime" field.

func BeginTimeIn

func BeginTimeIn(vs ...time.Time) predicate.WorkflowInstance

BeginTimeIn applies the In predicate on the "beginTime" field.

func BeginTimeLT

func BeginTimeLT(v time.Time) predicate.WorkflowInstance

BeginTimeLT applies the LT predicate on the "beginTime" field.

func BeginTimeLTE

func BeginTimeLTE(v time.Time) predicate.WorkflowInstance

BeginTimeLTE applies the LTE predicate on the "beginTime" field.

func BeginTimeNEQ

func BeginTimeNEQ(v time.Time) predicate.WorkflowInstance

BeginTimeNEQ applies the NEQ predicate on the "beginTime" field.

func BeginTimeNotIn

func BeginTimeNotIn(vs ...time.Time) predicate.WorkflowInstance

BeginTimeNotIn applies the NotIn predicate on the "beginTime" field.

func Controller

func Controller(v string) predicate.WorkflowInstance

Controller applies equality check predicate on the "controller" field. It's identical to ControllerEQ.

func ControllerContains

func ControllerContains(v string) predicate.WorkflowInstance

ControllerContains applies the Contains predicate on the "controller" field.

func ControllerContainsFold

func ControllerContainsFold(v string) predicate.WorkflowInstance

ControllerContainsFold applies the ContainsFold predicate on the "controller" field.

func ControllerEQ

func ControllerEQ(v string) predicate.WorkflowInstance

ControllerEQ applies the EQ predicate on the "controller" field.

func ControllerEqualFold

func ControllerEqualFold(v string) predicate.WorkflowInstance

ControllerEqualFold applies the EqualFold predicate on the "controller" field.

func ControllerGT

func ControllerGT(v string) predicate.WorkflowInstance

ControllerGT applies the GT predicate on the "controller" field.

func ControllerGTE

func ControllerGTE(v string) predicate.WorkflowInstance

ControllerGTE applies the GTE predicate on the "controller" field.

func ControllerHasPrefix

func ControllerHasPrefix(v string) predicate.WorkflowInstance

ControllerHasPrefix applies the HasPrefix predicate on the "controller" field.

func ControllerHasSuffix

func ControllerHasSuffix(v string) predicate.WorkflowInstance

ControllerHasSuffix applies the HasSuffix predicate on the "controller" field.

func ControllerIn

func ControllerIn(vs ...string) predicate.WorkflowInstance

ControllerIn applies the In predicate on the "controller" field.

func ControllerIsNil

func ControllerIsNil() predicate.WorkflowInstance

ControllerIsNil applies the IsNil predicate on the "controller" field.

func ControllerLT

func ControllerLT(v string) predicate.WorkflowInstance

ControllerLT applies the LT predicate on the "controller" field.

func ControllerLTE

func ControllerLTE(v string) predicate.WorkflowInstance

ControllerLTE applies the LTE predicate on the "controller" field.

func ControllerNEQ

func ControllerNEQ(v string) predicate.WorkflowInstance

ControllerNEQ applies the NEQ predicate on the "controller" field.

func ControllerNotIn

func ControllerNotIn(vs ...string) predicate.WorkflowInstance

ControllerNotIn applies the NotIn predicate on the "controller" field.

func ControllerNotNil

func ControllerNotNil() predicate.WorkflowInstance

ControllerNotNil applies the NotNil predicate on the "controller" field.

func Deadline

func Deadline(v time.Time) predicate.WorkflowInstance

Deadline applies equality check predicate on the "deadline" field. It's identical to DeadlineEQ.

func DeadlineEQ

func DeadlineEQ(v time.Time) predicate.WorkflowInstance

DeadlineEQ applies the EQ predicate on the "deadline" field.

func DeadlineGT

func DeadlineGT(v time.Time) predicate.WorkflowInstance

DeadlineGT applies the GT predicate on the "deadline" field.

func DeadlineGTE

func DeadlineGTE(v time.Time) predicate.WorkflowInstance

DeadlineGTE applies the GTE predicate on the "deadline" field.

func DeadlineIn

func DeadlineIn(vs ...time.Time) predicate.WorkflowInstance

DeadlineIn applies the In predicate on the "deadline" field.

func DeadlineIsNil

func DeadlineIsNil() predicate.WorkflowInstance

DeadlineIsNil applies the IsNil predicate on the "deadline" field.

func DeadlineLT

func DeadlineLT(v time.Time) predicate.WorkflowInstance

DeadlineLT applies the LT predicate on the "deadline" field.

func DeadlineLTE

func DeadlineLTE(v time.Time) predicate.WorkflowInstance

DeadlineLTE applies the LTE predicate on the "deadline" field.

func DeadlineNEQ

func DeadlineNEQ(v time.Time) predicate.WorkflowInstance

DeadlineNEQ applies the NEQ predicate on the "deadline" field.

func DeadlineNotIn

func DeadlineNotIn(vs ...time.Time) predicate.WorkflowInstance

DeadlineNotIn applies the NotIn predicate on the "deadline" field.

func DeadlineNotNil

func DeadlineNotNil() predicate.WorkflowInstance

DeadlineNotNil applies the NotNil predicate on the "deadline" field.

func EndTime

EndTime applies equality check predicate on the "endTime" field. It's identical to EndTimeEQ.

func EndTimeEQ

func EndTimeEQ(v time.Time) predicate.WorkflowInstance

EndTimeEQ applies the EQ predicate on the "endTime" field.

func EndTimeGT

func EndTimeGT(v time.Time) predicate.WorkflowInstance

EndTimeGT applies the GT predicate on the "endTime" field.

func EndTimeGTE

func EndTimeGTE(v time.Time) predicate.WorkflowInstance

EndTimeGTE applies the GTE predicate on the "endTime" field.

func EndTimeIn

func EndTimeIn(vs ...time.Time) predicate.WorkflowInstance

EndTimeIn applies the In predicate on the "endTime" field.

func EndTimeIsNil

func EndTimeIsNil() predicate.WorkflowInstance

EndTimeIsNil applies the IsNil predicate on the "endTime" field.

func EndTimeLT

func EndTimeLT(v time.Time) predicate.WorkflowInstance

EndTimeLT applies the LT predicate on the "endTime" field.

func EndTimeLTE

func EndTimeLTE(v time.Time) predicate.WorkflowInstance

EndTimeLTE applies the LTE predicate on the "endTime" field.

func EndTimeNEQ

func EndTimeNEQ(v time.Time) predicate.WorkflowInstance

EndTimeNEQ applies the NEQ predicate on the "endTime" field.

func EndTimeNotIn

func EndTimeNotIn(vs ...time.Time) predicate.WorkflowInstance

EndTimeNotIn applies the NotIn predicate on the "endTime" field.

func EndTimeNotNil

func EndTimeNotNil() predicate.WorkflowInstance

EndTimeNotNil applies the NotNil predicate on the "endTime" field.

func ErrorCode

func ErrorCode(v string) predicate.WorkflowInstance

ErrorCode applies equality check predicate on the "errorCode" field. It's identical to ErrorCodeEQ.

func ErrorCodeContains

func ErrorCodeContains(v string) predicate.WorkflowInstance

ErrorCodeContains applies the Contains predicate on the "errorCode" field.

func ErrorCodeContainsFold

func ErrorCodeContainsFold(v string) predicate.WorkflowInstance

ErrorCodeContainsFold applies the ContainsFold predicate on the "errorCode" field.

func ErrorCodeEQ

func ErrorCodeEQ(v string) predicate.WorkflowInstance

ErrorCodeEQ applies the EQ predicate on the "errorCode" field.

func ErrorCodeEqualFold

func ErrorCodeEqualFold(v string) predicate.WorkflowInstance

ErrorCodeEqualFold applies the EqualFold predicate on the "errorCode" field.

func ErrorCodeGT

func ErrorCodeGT(v string) predicate.WorkflowInstance

ErrorCodeGT applies the GT predicate on the "errorCode" field.

func ErrorCodeGTE

func ErrorCodeGTE(v string) predicate.WorkflowInstance

ErrorCodeGTE applies the GTE predicate on the "errorCode" field.

func ErrorCodeHasPrefix

func ErrorCodeHasPrefix(v string) predicate.WorkflowInstance

ErrorCodeHasPrefix applies the HasPrefix predicate on the "errorCode" field.

func ErrorCodeHasSuffix

func ErrorCodeHasSuffix(v string) predicate.WorkflowInstance

ErrorCodeHasSuffix applies the HasSuffix predicate on the "errorCode" field.

func ErrorCodeIn

func ErrorCodeIn(vs ...string) predicate.WorkflowInstance

ErrorCodeIn applies the In predicate on the "errorCode" field.

func ErrorCodeIsNil

func ErrorCodeIsNil() predicate.WorkflowInstance

ErrorCodeIsNil applies the IsNil predicate on the "errorCode" field.

func ErrorCodeLT

func ErrorCodeLT(v string) predicate.WorkflowInstance

ErrorCodeLT applies the LT predicate on the "errorCode" field.

func ErrorCodeLTE

func ErrorCodeLTE(v string) predicate.WorkflowInstance

ErrorCodeLTE applies the LTE predicate on the "errorCode" field.

func ErrorCodeNEQ

func ErrorCodeNEQ(v string) predicate.WorkflowInstance

ErrorCodeNEQ applies the NEQ predicate on the "errorCode" field.

func ErrorCodeNotIn

func ErrorCodeNotIn(vs ...string) predicate.WorkflowInstance

ErrorCodeNotIn applies the NotIn predicate on the "errorCode" field.

func ErrorCodeNotNil

func ErrorCodeNotNil() predicate.WorkflowInstance

ErrorCodeNotNil applies the NotNil predicate on the "errorCode" field.

func ErrorMessage

func ErrorMessage(v string) predicate.WorkflowInstance

ErrorMessage applies equality check predicate on the "errorMessage" field. It's identical to ErrorMessageEQ.

func ErrorMessageContains

func ErrorMessageContains(v string) predicate.WorkflowInstance

ErrorMessageContains applies the Contains predicate on the "errorMessage" field.

func ErrorMessageContainsFold

func ErrorMessageContainsFold(v string) predicate.WorkflowInstance

ErrorMessageContainsFold applies the ContainsFold predicate on the "errorMessage" field.

func ErrorMessageEQ

func ErrorMessageEQ(v string) predicate.WorkflowInstance

ErrorMessageEQ applies the EQ predicate on the "errorMessage" field.

func ErrorMessageEqualFold

func ErrorMessageEqualFold(v string) predicate.WorkflowInstance

ErrorMessageEqualFold applies the EqualFold predicate on the "errorMessage" field.

func ErrorMessageGT

func ErrorMessageGT(v string) predicate.WorkflowInstance

ErrorMessageGT applies the GT predicate on the "errorMessage" field.

func ErrorMessageGTE

func ErrorMessageGTE(v string) predicate.WorkflowInstance

ErrorMessageGTE applies the GTE predicate on the "errorMessage" field.

func ErrorMessageHasPrefix

func ErrorMessageHasPrefix(v string) predicate.WorkflowInstance

ErrorMessageHasPrefix applies the HasPrefix predicate on the "errorMessage" field.

func ErrorMessageHasSuffix

func ErrorMessageHasSuffix(v string) predicate.WorkflowInstance

ErrorMessageHasSuffix applies the HasSuffix predicate on the "errorMessage" field.

func ErrorMessageIn

func ErrorMessageIn(vs ...string) predicate.WorkflowInstance

ErrorMessageIn applies the In predicate on the "errorMessage" field.

func ErrorMessageIsNil

func ErrorMessageIsNil() predicate.WorkflowInstance

ErrorMessageIsNil applies the IsNil predicate on the "errorMessage" field.

func ErrorMessageLT

func ErrorMessageLT(v string) predicate.WorkflowInstance

ErrorMessageLT applies the LT predicate on the "errorMessage" field.

func ErrorMessageLTE

func ErrorMessageLTE(v string) predicate.WorkflowInstance

ErrorMessageLTE applies the LTE predicate on the "errorMessage" field.

func ErrorMessageNEQ

func ErrorMessageNEQ(v string) predicate.WorkflowInstance

ErrorMessageNEQ applies the NEQ predicate on the "errorMessage" field.

func ErrorMessageNotIn

func ErrorMessageNotIn(vs ...string) predicate.WorkflowInstance

ErrorMessageNotIn applies the NotIn predicate on the "errorMessage" field.

func ErrorMessageNotNil

func ErrorMessageNotNil() predicate.WorkflowInstance

ErrorMessageNotNil applies the NotNil predicate on the "errorMessage" field.

func FlowIsNil

func FlowIsNil() predicate.WorkflowInstance

FlowIsNil applies the IsNil predicate on the "flow" field.

func FlowNotNil

func FlowNotNil() predicate.WorkflowInstance

FlowNotNil applies the NotNil predicate on the "flow" field.

func HasInstance

func HasInstance() predicate.WorkflowInstance

HasInstance applies the HasEdge predicate on the "instance" edge.

func HasInstanceWith

func HasInstanceWith(preds ...predicate.WorkflowEvents) predicate.WorkflowInstance

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

func HasWorkflow

func HasWorkflow() predicate.WorkflowInstance

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

func HasWorkflowWith

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

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

func IDGTE(id int) predicate.WorkflowInstance

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.WorkflowInstance

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 int) predicate.WorkflowInstance

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.WorkflowInstance

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.WorkflowInstance

IDNotIn applies the NotIn predicate on the ID field.

func Input

Input applies equality check predicate on the "input" field. It's identical to InputEQ.

func InputContains

func InputContains(v string) predicate.WorkflowInstance

InputContains applies the Contains predicate on the "input" field.

func InputContainsFold

func InputContainsFold(v string) predicate.WorkflowInstance

InputContainsFold applies the ContainsFold predicate on the "input" field.

func InputEQ

InputEQ applies the EQ predicate on the "input" field.

func InputEqualFold

func InputEqualFold(v string) predicate.WorkflowInstance

InputEqualFold applies the EqualFold predicate on the "input" field.

func InputGT

InputGT applies the GT predicate on the "input" field.

func InputGTE

func InputGTE(v string) predicate.WorkflowInstance

InputGTE applies the GTE predicate on the "input" field.

func InputHasPrefix

func InputHasPrefix(v string) predicate.WorkflowInstance

InputHasPrefix applies the HasPrefix predicate on the "input" field.

func InputHasSuffix

func InputHasSuffix(v string) predicate.WorkflowInstance

InputHasSuffix applies the HasSuffix predicate on the "input" field.

func InputIn

func InputIn(vs ...string) predicate.WorkflowInstance

InputIn applies the In predicate on the "input" field.

func InputLT

InputLT applies the LT predicate on the "input" field.

func InputLTE

func InputLTE(v string) predicate.WorkflowInstance

InputLTE applies the LTE predicate on the "input" field.

func InputNEQ

func InputNEQ(v string) predicate.WorkflowInstance

InputNEQ applies the NEQ predicate on the "input" field.

func InputNotIn

func InputNotIn(vs ...string) predicate.WorkflowInstance

InputNotIn applies the NotIn predicate on the "input" field.

func InstanceID

func InstanceID(v string) predicate.WorkflowInstance

InstanceID applies equality check predicate on the "instanceID" field. It's identical to InstanceIDEQ.

func InstanceIDContains

func InstanceIDContains(v string) predicate.WorkflowInstance

InstanceIDContains applies the Contains predicate on the "instanceID" field.

func InstanceIDContainsFold

func InstanceIDContainsFold(v string) predicate.WorkflowInstance

InstanceIDContainsFold applies the ContainsFold predicate on the "instanceID" field.

func InstanceIDEQ

func InstanceIDEQ(v string) predicate.WorkflowInstance

InstanceIDEQ applies the EQ predicate on the "instanceID" field.

func InstanceIDEqualFold

func InstanceIDEqualFold(v string) predicate.WorkflowInstance

InstanceIDEqualFold applies the EqualFold predicate on the "instanceID" field.

func InstanceIDGT

func InstanceIDGT(v string) predicate.WorkflowInstance

InstanceIDGT applies the GT predicate on the "instanceID" field.

func InstanceIDGTE

func InstanceIDGTE(v string) predicate.WorkflowInstance

InstanceIDGTE applies the GTE predicate on the "instanceID" field.

func InstanceIDHasPrefix

func InstanceIDHasPrefix(v string) predicate.WorkflowInstance

InstanceIDHasPrefix applies the HasPrefix predicate on the "instanceID" field.

func InstanceIDHasSuffix

func InstanceIDHasSuffix(v string) predicate.WorkflowInstance

InstanceIDHasSuffix applies the HasSuffix predicate on the "instanceID" field.

func InstanceIDIn

func InstanceIDIn(vs ...string) predicate.WorkflowInstance

InstanceIDIn applies the In predicate on the "instanceID" field.

func InstanceIDLT

func InstanceIDLT(v string) predicate.WorkflowInstance

InstanceIDLT applies the LT predicate on the "instanceID" field.

func InstanceIDLTE

func InstanceIDLTE(v string) predicate.WorkflowInstance

InstanceIDLTE applies the LTE predicate on the "instanceID" field.

func InstanceIDNEQ

func InstanceIDNEQ(v string) predicate.WorkflowInstance

InstanceIDNEQ applies the NEQ predicate on the "instanceID" field.

func InstanceIDNotIn

func InstanceIDNotIn(vs ...string) predicate.WorkflowInstance

InstanceIDNotIn applies the NotIn predicate on the "instanceID" field.

func InvokedBy

func InvokedBy(v string) predicate.WorkflowInstance

InvokedBy applies equality check predicate on the "invokedBy" field. It's identical to InvokedByEQ.

func InvokedByContains

func InvokedByContains(v string) predicate.WorkflowInstance

InvokedByContains applies the Contains predicate on the "invokedBy" field.

func InvokedByContainsFold

func InvokedByContainsFold(v string) predicate.WorkflowInstance

InvokedByContainsFold applies the ContainsFold predicate on the "invokedBy" field.

func InvokedByEQ

func InvokedByEQ(v string) predicate.WorkflowInstance

InvokedByEQ applies the EQ predicate on the "invokedBy" field.

func InvokedByEqualFold

func InvokedByEqualFold(v string) predicate.WorkflowInstance

InvokedByEqualFold applies the EqualFold predicate on the "invokedBy" field.

func InvokedByGT

func InvokedByGT(v string) predicate.WorkflowInstance

InvokedByGT applies the GT predicate on the "invokedBy" field.

func InvokedByGTE

func InvokedByGTE(v string) predicate.WorkflowInstance

InvokedByGTE applies the GTE predicate on the "invokedBy" field.

func InvokedByHasPrefix

func InvokedByHasPrefix(v string) predicate.WorkflowInstance

InvokedByHasPrefix applies the HasPrefix predicate on the "invokedBy" field.

func InvokedByHasSuffix

func InvokedByHasSuffix(v string) predicate.WorkflowInstance

InvokedByHasSuffix applies the HasSuffix predicate on the "invokedBy" field.

func InvokedByIn

func InvokedByIn(vs ...string) predicate.WorkflowInstance

InvokedByIn applies the In predicate on the "invokedBy" field.

func InvokedByLT

func InvokedByLT(v string) predicate.WorkflowInstance

InvokedByLT applies the LT predicate on the "invokedBy" field.

func InvokedByLTE

func InvokedByLTE(v string) predicate.WorkflowInstance

InvokedByLTE applies the LTE predicate on the "invokedBy" field.

func InvokedByNEQ

func InvokedByNEQ(v string) predicate.WorkflowInstance

InvokedByNEQ applies the NEQ predicate on the "invokedBy" field.

func InvokedByNotIn

func InvokedByNotIn(vs ...string) predicate.WorkflowInstance

InvokedByNotIn applies the NotIn predicate on the "invokedBy" field.

func Memory

Memory applies equality check predicate on the "memory" field. It's identical to MemoryEQ.

func MemoryContains

func MemoryContains(v string) predicate.WorkflowInstance

MemoryContains applies the Contains predicate on the "memory" field.

func MemoryContainsFold

func MemoryContainsFold(v string) predicate.WorkflowInstance

MemoryContainsFold applies the ContainsFold predicate on the "memory" field.

func MemoryEQ

func MemoryEQ(v string) predicate.WorkflowInstance

MemoryEQ applies the EQ predicate on the "memory" field.

func MemoryEqualFold

func MemoryEqualFold(v string) predicate.WorkflowInstance

MemoryEqualFold applies the EqualFold predicate on the "memory" field.

func MemoryGT

func MemoryGT(v string) predicate.WorkflowInstance

MemoryGT applies the GT predicate on the "memory" field.

func MemoryGTE

func MemoryGTE(v string) predicate.WorkflowInstance

MemoryGTE applies the GTE predicate on the "memory" field.

func MemoryHasPrefix

func MemoryHasPrefix(v string) predicate.WorkflowInstance

MemoryHasPrefix applies the HasPrefix predicate on the "memory" field.

func MemoryHasSuffix

func MemoryHasSuffix(v string) predicate.WorkflowInstance

MemoryHasSuffix applies the HasSuffix predicate on the "memory" field.

func MemoryIn

func MemoryIn(vs ...string) predicate.WorkflowInstance

MemoryIn applies the In predicate on the "memory" field.

func MemoryIsNil

func MemoryIsNil() predicate.WorkflowInstance

MemoryIsNil applies the IsNil predicate on the "memory" field.

func MemoryLT

func MemoryLT(v string) predicate.WorkflowInstance

MemoryLT applies the LT predicate on the "memory" field.

func MemoryLTE

func MemoryLTE(v string) predicate.WorkflowInstance

MemoryLTE applies the LTE predicate on the "memory" field.

func MemoryNEQ

func MemoryNEQ(v string) predicate.WorkflowInstance

MemoryNEQ applies the NEQ predicate on the "memory" field.

func MemoryNotIn

func MemoryNotIn(vs ...string) predicate.WorkflowInstance

MemoryNotIn applies the NotIn predicate on the "memory" field.

func MemoryNotNil

func MemoryNotNil() predicate.WorkflowInstance

MemoryNotNil applies the NotNil predicate on the "memory" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func Output

Output applies equality check predicate on the "output" field. It's identical to OutputEQ.

func OutputContains

func OutputContains(v string) predicate.WorkflowInstance

OutputContains applies the Contains predicate on the "output" field.

func OutputContainsFold

func OutputContainsFold(v string) predicate.WorkflowInstance

OutputContainsFold applies the ContainsFold predicate on the "output" field.

func OutputEQ

func OutputEQ(v string) predicate.WorkflowInstance

OutputEQ applies the EQ predicate on the "output" field.

func OutputEqualFold

func OutputEqualFold(v string) predicate.WorkflowInstance

OutputEqualFold applies the EqualFold predicate on the "output" field.

func OutputGT

func OutputGT(v string) predicate.WorkflowInstance

OutputGT applies the GT predicate on the "output" field.

func OutputGTE

func OutputGTE(v string) predicate.WorkflowInstance

OutputGTE applies the GTE predicate on the "output" field.

func OutputHasPrefix

func OutputHasPrefix(v string) predicate.WorkflowInstance

OutputHasPrefix applies the HasPrefix predicate on the "output" field.

func OutputHasSuffix

func OutputHasSuffix(v string) predicate.WorkflowInstance

OutputHasSuffix applies the HasSuffix predicate on the "output" field.

func OutputIn

func OutputIn(vs ...string) predicate.WorkflowInstance

OutputIn applies the In predicate on the "output" field.

func OutputIsNil

func OutputIsNil() predicate.WorkflowInstance

OutputIsNil applies the IsNil predicate on the "output" field.

func OutputLT

func OutputLT(v string) predicate.WorkflowInstance

OutputLT applies the LT predicate on the "output" field.

func OutputLTE

func OutputLTE(v string) predicate.WorkflowInstance

OutputLTE applies the LTE predicate on the "output" field.

func OutputNEQ

func OutputNEQ(v string) predicate.WorkflowInstance

OutputNEQ applies the NEQ predicate on the "output" field.

func OutputNotIn

func OutputNotIn(vs ...string) predicate.WorkflowInstance

OutputNotIn applies the NotIn predicate on the "output" field.

func OutputNotNil

func OutputNotNil() predicate.WorkflowInstance

OutputNotNil applies the NotNil predicate on the "output" field.

func Revision

func Revision(v int) predicate.WorkflowInstance

Revision applies equality check predicate on the "revision" field. It's identical to RevisionEQ.

func RevisionEQ

func RevisionEQ(v int) predicate.WorkflowInstance

RevisionEQ applies the EQ predicate on the "revision" field.

func RevisionGT

func RevisionGT(v int) predicate.WorkflowInstance

RevisionGT applies the GT predicate on the "revision" field.

func RevisionGTE

func RevisionGTE(v int) predicate.WorkflowInstance

RevisionGTE applies the GTE predicate on the "revision" field.

func RevisionIn

func RevisionIn(vs ...int) predicate.WorkflowInstance

RevisionIn applies the In predicate on the "revision" field.

func RevisionLT

func RevisionLT(v int) predicate.WorkflowInstance

RevisionLT applies the LT predicate on the "revision" field.

func RevisionLTE

func RevisionLTE(v int) predicate.WorkflowInstance

RevisionLTE applies the LTE predicate on the "revision" field.

func RevisionNEQ

func RevisionNEQ(v int) predicate.WorkflowInstance

RevisionNEQ applies the NEQ predicate on the "revision" field.

func RevisionNotIn

func RevisionNotIn(vs ...int) predicate.WorkflowInstance

RevisionNotIn applies the NotIn predicate on the "revision" field.

func StateBeginTime

func StateBeginTime(v time.Time) predicate.WorkflowInstance

StateBeginTime applies equality check predicate on the "stateBeginTime" field. It's identical to StateBeginTimeEQ.

func StateBeginTimeEQ

func StateBeginTimeEQ(v time.Time) predicate.WorkflowInstance

StateBeginTimeEQ applies the EQ predicate on the "stateBeginTime" field.

func StateBeginTimeGT

func StateBeginTimeGT(v time.Time) predicate.WorkflowInstance

StateBeginTimeGT applies the GT predicate on the "stateBeginTime" field.

func StateBeginTimeGTE

func StateBeginTimeGTE(v time.Time) predicate.WorkflowInstance

StateBeginTimeGTE applies the GTE predicate on the "stateBeginTime" field.

func StateBeginTimeIn

func StateBeginTimeIn(vs ...time.Time) predicate.WorkflowInstance

StateBeginTimeIn applies the In predicate on the "stateBeginTime" field.

func StateBeginTimeIsNil

func StateBeginTimeIsNil() predicate.WorkflowInstance

StateBeginTimeIsNil applies the IsNil predicate on the "stateBeginTime" field.

func StateBeginTimeLT

func StateBeginTimeLT(v time.Time) predicate.WorkflowInstance

StateBeginTimeLT applies the LT predicate on the "stateBeginTime" field.

func StateBeginTimeLTE

func StateBeginTimeLTE(v time.Time) predicate.WorkflowInstance

StateBeginTimeLTE applies the LTE predicate on the "stateBeginTime" field.

func StateBeginTimeNEQ

func StateBeginTimeNEQ(v time.Time) predicate.WorkflowInstance

StateBeginTimeNEQ applies the NEQ predicate on the "stateBeginTime" field.

func StateBeginTimeNotIn

func StateBeginTimeNotIn(vs ...time.Time) predicate.WorkflowInstance

StateBeginTimeNotIn applies the NotIn predicate on the "stateBeginTime" field.

func StateBeginTimeNotNil

func StateBeginTimeNotNil() predicate.WorkflowInstance

StateBeginTimeNotNil applies the NotNil predicate on the "stateBeginTime" field.

func StateData

func StateData(v string) predicate.WorkflowInstance

StateData applies equality check predicate on the "stateData" field. It's identical to StateDataEQ.

func StateDataContains

func StateDataContains(v string) predicate.WorkflowInstance

StateDataContains applies the Contains predicate on the "stateData" field.

func StateDataContainsFold

func StateDataContainsFold(v string) predicate.WorkflowInstance

StateDataContainsFold applies the ContainsFold predicate on the "stateData" field.

func StateDataEQ

func StateDataEQ(v string) predicate.WorkflowInstance

StateDataEQ applies the EQ predicate on the "stateData" field.

func StateDataEqualFold

func StateDataEqualFold(v string) predicate.WorkflowInstance

StateDataEqualFold applies the EqualFold predicate on the "stateData" field.

func StateDataGT

func StateDataGT(v string) predicate.WorkflowInstance

StateDataGT applies the GT predicate on the "stateData" field.

func StateDataGTE

func StateDataGTE(v string) predicate.WorkflowInstance

StateDataGTE applies the GTE predicate on the "stateData" field.

func StateDataHasPrefix

func StateDataHasPrefix(v string) predicate.WorkflowInstance

StateDataHasPrefix applies the HasPrefix predicate on the "stateData" field.

func StateDataHasSuffix

func StateDataHasSuffix(v string) predicate.WorkflowInstance

StateDataHasSuffix applies the HasSuffix predicate on the "stateData" field.

func StateDataIn

func StateDataIn(vs ...string) predicate.WorkflowInstance

StateDataIn applies the In predicate on the "stateData" field.

func StateDataIsNil

func StateDataIsNil() predicate.WorkflowInstance

StateDataIsNil applies the IsNil predicate on the "stateData" field.

func StateDataLT

func StateDataLT(v string) predicate.WorkflowInstance

StateDataLT applies the LT predicate on the "stateData" field.

func StateDataLTE

func StateDataLTE(v string) predicate.WorkflowInstance

StateDataLTE applies the LTE predicate on the "stateData" field.

func StateDataNEQ

func StateDataNEQ(v string) predicate.WorkflowInstance

StateDataNEQ applies the NEQ predicate on the "stateData" field.

func StateDataNotIn

func StateDataNotIn(vs ...string) predicate.WorkflowInstance

StateDataNotIn applies the NotIn predicate on the "stateData" field.

func StateDataNotNil

func StateDataNotNil() predicate.WorkflowInstance

StateDataNotNil applies the NotNil predicate on the "stateData" field.

func Status

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusContains

func StatusContains(v string) predicate.WorkflowInstance

StatusContains applies the Contains predicate on the "status" field.

func StatusContainsFold

func StatusContainsFold(v string) predicate.WorkflowInstance

StatusContainsFold applies the ContainsFold predicate on the "status" field.

func StatusEQ

func StatusEQ(v string) predicate.WorkflowInstance

StatusEQ applies the EQ predicate on the "status" field.

func StatusEqualFold

func StatusEqualFold(v string) predicate.WorkflowInstance

StatusEqualFold applies the EqualFold predicate on the "status" field.

func StatusGT

func StatusGT(v string) predicate.WorkflowInstance

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

func StatusGTE(v string) predicate.WorkflowInstance

StatusGTE applies the GTE predicate on the "status" field.

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.WorkflowInstance

StatusHasPrefix applies the HasPrefix predicate on the "status" field.

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.WorkflowInstance

StatusHasSuffix applies the HasSuffix predicate on the "status" field.

func StatusIn

func StatusIn(vs ...string) predicate.WorkflowInstance

StatusIn applies the In predicate on the "status" field.

func StatusLT

func StatusLT(v string) predicate.WorkflowInstance

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

func StatusLTE(v string) predicate.WorkflowInstance

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v string) predicate.WorkflowInstance

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...string) predicate.WorkflowInstance

StatusNotIn applies the NotIn predicate on the "status" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

This section is empty.

Jump to

Keyboard shortcuts

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