workflowinstancehistory

package
v1.11.21 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the workflowinstancehistory type in the database.
	Label = "workflow_instance_history"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldHistoryTime holds the string denoting the history_time field in the database.
	FieldHistoryTime = "history_time"
	// FieldRef holds the string denoting the ref field in the database.
	FieldRef = "ref"
	// FieldOperation holds the string denoting the operation field in the database.
	FieldOperation = "operation"
	// 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"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldUpdatedBy holds the string denoting the updated_by field in the database.
	FieldUpdatedBy = "updated_by"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldDeletedBy holds the string denoting the deleted_by field in the database.
	FieldDeletedBy = "deleted_by"
	// FieldDisplayID holds the string denoting the display_id field in the database.
	FieldDisplayID = "display_id"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldWorkflowDefinitionID holds the string denoting the workflow_definition_id field in the database.
	FieldWorkflowDefinitionID = "workflow_definition_id"
	// FieldWorkflowProposalID holds the string denoting the workflow_proposal_id field in the database.
	FieldWorkflowProposalID = "workflow_proposal_id"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldContext holds the string denoting the context field in the database.
	FieldContext = "context"
	// FieldLastEvaluatedAt holds the string denoting the last_evaluated_at field in the database.
	FieldLastEvaluatedAt = "last_evaluated_at"
	// FieldDefinitionSnapshot holds the string denoting the definition_snapshot field in the database.
	FieldDefinitionSnapshot = "definition_snapshot"
	// FieldCurrentActionIndex holds the string denoting the current_action_index field in the database.
	FieldCurrentActionIndex = "current_action_index"
	// FieldControlID holds the string denoting the control_id field in the database.
	FieldControlID = "control_id"
	// FieldInternalPolicyID holds the string denoting the internal_policy_id field in the database.
	FieldInternalPolicyID = "internal_policy_id"
	// FieldEvidenceID holds the string denoting the evidence_id field in the database.
	FieldEvidenceID = "evidence_id"
	// FieldSubcontrolID holds the string denoting the subcontrol_id field in the database.
	FieldSubcontrolID = "subcontrol_id"
	// FieldActionPlanID holds the string denoting the action_plan_id field in the database.
	FieldActionPlanID = "action_plan_id"
	// FieldProcedureID holds the string denoting the procedure_id field in the database.
	FieldProcedureID = "procedure_id"
	// FieldCampaignID holds the string denoting the campaign_id field in the database.
	FieldCampaignID = "campaign_id"
	// FieldCampaignTargetID holds the string denoting the campaign_target_id field in the database.
	FieldCampaignTargetID = "campaign_target_id"
	// FieldIdentityHolderID holds the string denoting the identity_holder_id field in the database.
	FieldIdentityHolderID = "identity_holder_id"
	// FieldPlatformID holds the string denoting the platform_id field in the database.
	FieldPlatformID = "platform_id"
	// Table holds the table name of the workflowinstancehistory in the database.
	Table = "workflow_instance_history"
)
View Source
const DefaultState enums.WorkflowInstanceState = "RUNNING"

Variables

View Source
var (
	Hooks        [1]ent.Hook
	Interceptors [1]ent.Interceptor
	Policy       ent.Policy
	// DefaultHistoryTime holds the default value on creation for the "history_time" field.
	DefaultHistoryTime func() time.Time
	// 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
	// DefaultTags holds the default value on creation for the "tags" field.
	DefaultTags []string
	// DefaultCurrentActionIndex holds the default value on creation for the "current_action_index" field.
	DefaultCurrentActionIndex int
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
)

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

import _ "github.com/theopenlane/core/internal/ent/historygenerated/runtime"

Columns holds all SQL columns for workflowinstancehistory fields.

Functions

func ActionPlanID added in v0.52.0

ActionPlanID applies equality check predicate on the "action_plan_id" field. It's identical to ActionPlanIDEQ.

func ActionPlanIDContains added in v0.52.0

func ActionPlanIDContains(v string) predicate.WorkflowInstanceHistory

ActionPlanIDContains applies the Contains predicate on the "action_plan_id" field.

func ActionPlanIDContainsFold added in v0.52.0

func ActionPlanIDContainsFold(v string) predicate.WorkflowInstanceHistory

ActionPlanIDContainsFold applies the ContainsFold predicate on the "action_plan_id" field.

func ActionPlanIDEQ added in v0.52.0

func ActionPlanIDEQ(v string) predicate.WorkflowInstanceHistory

ActionPlanIDEQ applies the EQ predicate on the "action_plan_id" field.

func ActionPlanIDEqualFold added in v0.52.0

func ActionPlanIDEqualFold(v string) predicate.WorkflowInstanceHistory

ActionPlanIDEqualFold applies the EqualFold predicate on the "action_plan_id" field.

func ActionPlanIDGT added in v0.52.0

func ActionPlanIDGT(v string) predicate.WorkflowInstanceHistory

ActionPlanIDGT applies the GT predicate on the "action_plan_id" field.

func ActionPlanIDGTE added in v0.52.0

func ActionPlanIDGTE(v string) predicate.WorkflowInstanceHistory

ActionPlanIDGTE applies the GTE predicate on the "action_plan_id" field.

func ActionPlanIDHasPrefix added in v0.52.0

func ActionPlanIDHasPrefix(v string) predicate.WorkflowInstanceHistory

ActionPlanIDHasPrefix applies the HasPrefix predicate on the "action_plan_id" field.

func ActionPlanIDHasSuffix added in v0.52.0

func ActionPlanIDHasSuffix(v string) predicate.WorkflowInstanceHistory

ActionPlanIDHasSuffix applies the HasSuffix predicate on the "action_plan_id" field.

func ActionPlanIDIn added in v0.52.0

func ActionPlanIDIn(vs ...string) predicate.WorkflowInstanceHistory

ActionPlanIDIn applies the In predicate on the "action_plan_id" field.

func ActionPlanIDIsNil added in v0.52.0

func ActionPlanIDIsNil() predicate.WorkflowInstanceHistory

ActionPlanIDIsNil applies the IsNil predicate on the "action_plan_id" field.

func ActionPlanIDLT added in v0.52.0

func ActionPlanIDLT(v string) predicate.WorkflowInstanceHistory

ActionPlanIDLT applies the LT predicate on the "action_plan_id" field.

func ActionPlanIDLTE added in v0.52.0

func ActionPlanIDLTE(v string) predicate.WorkflowInstanceHistory

ActionPlanIDLTE applies the LTE predicate on the "action_plan_id" field.

func ActionPlanIDNEQ added in v0.52.0

func ActionPlanIDNEQ(v string) predicate.WorkflowInstanceHistory

ActionPlanIDNEQ applies the NEQ predicate on the "action_plan_id" field.

func ActionPlanIDNotIn added in v0.52.0

func ActionPlanIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

ActionPlanIDNotIn applies the NotIn predicate on the "action_plan_id" field.

func ActionPlanIDNotNil added in v0.52.0

func ActionPlanIDNotNil() predicate.WorkflowInstanceHistory

ActionPlanIDNotNil applies the NotNil predicate on the "action_plan_id" field.

func And

And groups predicates with the AND operator between them.

func CampaignID added in v1.5.0

CampaignID applies equality check predicate on the "campaign_id" field. It's identical to CampaignIDEQ.

func CampaignIDContains added in v1.5.0

func CampaignIDContains(v string) predicate.WorkflowInstanceHistory

CampaignIDContains applies the Contains predicate on the "campaign_id" field.

func CampaignIDContainsFold added in v1.5.0

func CampaignIDContainsFold(v string) predicate.WorkflowInstanceHistory

CampaignIDContainsFold applies the ContainsFold predicate on the "campaign_id" field.

func CampaignIDEQ added in v1.5.0

CampaignIDEQ applies the EQ predicate on the "campaign_id" field.

func CampaignIDEqualFold added in v1.5.0

func CampaignIDEqualFold(v string) predicate.WorkflowInstanceHistory

CampaignIDEqualFold applies the EqualFold predicate on the "campaign_id" field.

func CampaignIDGT added in v1.5.0

CampaignIDGT applies the GT predicate on the "campaign_id" field.

func CampaignIDGTE added in v1.5.0

func CampaignIDGTE(v string) predicate.WorkflowInstanceHistory

CampaignIDGTE applies the GTE predicate on the "campaign_id" field.

func CampaignIDHasPrefix added in v1.5.0

func CampaignIDHasPrefix(v string) predicate.WorkflowInstanceHistory

CampaignIDHasPrefix applies the HasPrefix predicate on the "campaign_id" field.

func CampaignIDHasSuffix added in v1.5.0

func CampaignIDHasSuffix(v string) predicate.WorkflowInstanceHistory

CampaignIDHasSuffix applies the HasSuffix predicate on the "campaign_id" field.

func CampaignIDIn added in v1.5.0

func CampaignIDIn(vs ...string) predicate.WorkflowInstanceHistory

CampaignIDIn applies the In predicate on the "campaign_id" field.

func CampaignIDIsNil added in v1.5.0

func CampaignIDIsNil() predicate.WorkflowInstanceHistory

CampaignIDIsNil applies the IsNil predicate on the "campaign_id" field.

func CampaignIDLT added in v1.5.0

CampaignIDLT applies the LT predicate on the "campaign_id" field.

func CampaignIDLTE added in v1.5.0

func CampaignIDLTE(v string) predicate.WorkflowInstanceHistory

CampaignIDLTE applies the LTE predicate on the "campaign_id" field.

func CampaignIDNEQ added in v1.5.0

func CampaignIDNEQ(v string) predicate.WorkflowInstanceHistory

CampaignIDNEQ applies the NEQ predicate on the "campaign_id" field.

func CampaignIDNotIn added in v1.5.0

func CampaignIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

CampaignIDNotIn applies the NotIn predicate on the "campaign_id" field.

func CampaignIDNotNil added in v1.5.0

func CampaignIDNotNil() predicate.WorkflowInstanceHistory

CampaignIDNotNil applies the NotNil predicate on the "campaign_id" field.

func CampaignTargetID added in v1.5.0

func CampaignTargetID(v string) predicate.WorkflowInstanceHistory

CampaignTargetID applies equality check predicate on the "campaign_target_id" field. It's identical to CampaignTargetIDEQ.

func CampaignTargetIDContains added in v1.5.0

func CampaignTargetIDContains(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDContains applies the Contains predicate on the "campaign_target_id" field.

func CampaignTargetIDContainsFold added in v1.5.0

func CampaignTargetIDContainsFold(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDContainsFold applies the ContainsFold predicate on the "campaign_target_id" field.

func CampaignTargetIDEQ added in v1.5.0

func CampaignTargetIDEQ(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDEQ applies the EQ predicate on the "campaign_target_id" field.

func CampaignTargetIDEqualFold added in v1.5.0

func CampaignTargetIDEqualFold(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDEqualFold applies the EqualFold predicate on the "campaign_target_id" field.

func CampaignTargetIDGT added in v1.5.0

func CampaignTargetIDGT(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDGT applies the GT predicate on the "campaign_target_id" field.

func CampaignTargetIDGTE added in v1.5.0

func CampaignTargetIDGTE(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDGTE applies the GTE predicate on the "campaign_target_id" field.

func CampaignTargetIDHasPrefix added in v1.5.0

func CampaignTargetIDHasPrefix(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDHasPrefix applies the HasPrefix predicate on the "campaign_target_id" field.

func CampaignTargetIDHasSuffix added in v1.5.0

func CampaignTargetIDHasSuffix(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDHasSuffix applies the HasSuffix predicate on the "campaign_target_id" field.

func CampaignTargetIDIn added in v1.5.0

func CampaignTargetIDIn(vs ...string) predicate.WorkflowInstanceHistory

CampaignTargetIDIn applies the In predicate on the "campaign_target_id" field.

func CampaignTargetIDIsNil added in v1.5.0

func CampaignTargetIDIsNil() predicate.WorkflowInstanceHistory

CampaignTargetIDIsNil applies the IsNil predicate on the "campaign_target_id" field.

func CampaignTargetIDLT added in v1.5.0

func CampaignTargetIDLT(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDLT applies the LT predicate on the "campaign_target_id" field.

func CampaignTargetIDLTE added in v1.5.0

func CampaignTargetIDLTE(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDLTE applies the LTE predicate on the "campaign_target_id" field.

func CampaignTargetIDNEQ added in v1.5.0

func CampaignTargetIDNEQ(v string) predicate.WorkflowInstanceHistory

CampaignTargetIDNEQ applies the NEQ predicate on the "campaign_target_id" field.

func CampaignTargetIDNotIn added in v1.5.0

func CampaignTargetIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

CampaignTargetIDNotIn applies the NotIn predicate on the "campaign_target_id" field.

func CampaignTargetIDNotNil added in v1.5.0

func CampaignTargetIDNotNil() predicate.WorkflowInstanceHistory

CampaignTargetIDNotNil applies the NotNil predicate on the "campaign_target_id" field.

func ContextIsNil

func ContextIsNil() predicate.WorkflowInstanceHistory

ContextIsNil applies the IsNil predicate on the "context" field.

func ContextNotNil

func ContextNotNil() predicate.WorkflowInstanceHistory

ContextNotNil applies the NotNil predicate on the "context" field.

func ControlID

ControlID applies equality check predicate on the "control_id" field. It's identical to ControlIDEQ.

func ControlIDContains

func ControlIDContains(v string) predicate.WorkflowInstanceHistory

ControlIDContains applies the Contains predicate on the "control_id" field.

func ControlIDContainsFold

func ControlIDContainsFold(v string) predicate.WorkflowInstanceHistory

ControlIDContainsFold applies the ContainsFold predicate on the "control_id" field.

func ControlIDEQ

ControlIDEQ applies the EQ predicate on the "control_id" field.

func ControlIDEqualFold

func ControlIDEqualFold(v string) predicate.WorkflowInstanceHistory

ControlIDEqualFold applies the EqualFold predicate on the "control_id" field.

func ControlIDGT

ControlIDGT applies the GT predicate on the "control_id" field.

func ControlIDGTE

ControlIDGTE applies the GTE predicate on the "control_id" field.

func ControlIDHasPrefix

func ControlIDHasPrefix(v string) predicate.WorkflowInstanceHistory

ControlIDHasPrefix applies the HasPrefix predicate on the "control_id" field.

func ControlIDHasSuffix

func ControlIDHasSuffix(v string) predicate.WorkflowInstanceHistory

ControlIDHasSuffix applies the HasSuffix predicate on the "control_id" field.

func ControlIDIn

func ControlIDIn(vs ...string) predicate.WorkflowInstanceHistory

ControlIDIn applies the In predicate on the "control_id" field.

func ControlIDIsNil

func ControlIDIsNil() predicate.WorkflowInstanceHistory

ControlIDIsNil applies the IsNil predicate on the "control_id" field.

func ControlIDLT

ControlIDLT applies the LT predicate on the "control_id" field.

func ControlIDLTE

ControlIDLTE applies the LTE predicate on the "control_id" field.

func ControlIDNEQ

ControlIDNEQ applies the NEQ predicate on the "control_id" field.

func ControlIDNotIn

func ControlIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

ControlIDNotIn applies the NotIn predicate on the "control_id" field.

func ControlIDNotNil

func ControlIDNotNil() predicate.WorkflowInstanceHistory

ControlIDNotNil applies the NotNil predicate on the "control_id" field.

func CreatedAt

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

func CreatedAtEQ

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

func CreatedAtGT

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

func CreatedAtGTE

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.WorkflowInstanceHistory

CreatedAtIsNil applies the IsNil predicate on the "created_at" field.

func CreatedAtLT

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

func CreatedAtLTE

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

func CreatedAtNEQ

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.WorkflowInstanceHistory

CreatedAtNotNil applies the NotNil predicate on the "created_at" field.

func CreatedBy

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

func CreatedByContains

func CreatedByContains(v string) predicate.WorkflowInstanceHistory

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.WorkflowInstanceHistory

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

func CreatedByEQ

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.WorkflowInstanceHistory

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

func CreatedByGT

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

func CreatedByGTE

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.WorkflowInstanceHistory

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.WorkflowInstanceHistory

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.WorkflowInstanceHistory

CreatedByIsNil applies the IsNil predicate on the "created_by" field.

func CreatedByLT

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

func CreatedByLTE

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

func CreatedByNEQ

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.WorkflowInstanceHistory

CreatedByNotNil applies the NotNil predicate on the "created_by" field.

func CurrentActionIndex added in v0.52.0

func CurrentActionIndex(v int) predicate.WorkflowInstanceHistory

CurrentActionIndex applies equality check predicate on the "current_action_index" field. It's identical to CurrentActionIndexEQ.

func CurrentActionIndexEQ added in v0.52.0

func CurrentActionIndexEQ(v int) predicate.WorkflowInstanceHistory

CurrentActionIndexEQ applies the EQ predicate on the "current_action_index" field.

func CurrentActionIndexGT added in v0.52.0

func CurrentActionIndexGT(v int) predicate.WorkflowInstanceHistory

CurrentActionIndexGT applies the GT predicate on the "current_action_index" field.

func CurrentActionIndexGTE added in v0.52.0

func CurrentActionIndexGTE(v int) predicate.WorkflowInstanceHistory

CurrentActionIndexGTE applies the GTE predicate on the "current_action_index" field.

func CurrentActionIndexIn added in v0.52.0

func CurrentActionIndexIn(vs ...int) predicate.WorkflowInstanceHistory

CurrentActionIndexIn applies the In predicate on the "current_action_index" field.

func CurrentActionIndexLT added in v0.52.0

func CurrentActionIndexLT(v int) predicate.WorkflowInstanceHistory

CurrentActionIndexLT applies the LT predicate on the "current_action_index" field.

func CurrentActionIndexLTE added in v0.52.0

func CurrentActionIndexLTE(v int) predicate.WorkflowInstanceHistory

CurrentActionIndexLTE applies the LTE predicate on the "current_action_index" field.

func CurrentActionIndexNEQ added in v0.52.0

func CurrentActionIndexNEQ(v int) predicate.WorkflowInstanceHistory

CurrentActionIndexNEQ applies the NEQ predicate on the "current_action_index" field.

func CurrentActionIndexNotIn added in v0.52.0

func CurrentActionIndexNotIn(vs ...int) predicate.WorkflowInstanceHistory

CurrentActionIndexNotIn applies the NotIn predicate on the "current_action_index" field.

func DefinitionSnapshotIsNil

func DefinitionSnapshotIsNil() predicate.WorkflowInstanceHistory

DefinitionSnapshotIsNil applies the IsNil predicate on the "definition_snapshot" field.

func DefinitionSnapshotNotNil

func DefinitionSnapshotNotNil() predicate.WorkflowInstanceHistory

DefinitionSnapshotNotNil applies the NotNil predicate on the "definition_snapshot" field.

func DeletedAt

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.WorkflowInstanceHistory

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.WorkflowInstanceHistory

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.WorkflowInstanceHistory

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.WorkflowInstanceHistory

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func DeletedBy

DeletedBy applies equality check predicate on the "deleted_by" field. It's identical to DeletedByEQ.

func DeletedByContains

func DeletedByContains(v string) predicate.WorkflowInstanceHistory

DeletedByContains applies the Contains predicate on the "deleted_by" field.

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.WorkflowInstanceHistory

DeletedByContainsFold applies the ContainsFold predicate on the "deleted_by" field.

func DeletedByEQ

DeletedByEQ applies the EQ predicate on the "deleted_by" field.

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.WorkflowInstanceHistory

DeletedByEqualFold applies the EqualFold predicate on the "deleted_by" field.

func DeletedByGT

DeletedByGT applies the GT predicate on the "deleted_by" field.

func DeletedByGTE

DeletedByGTE applies the GTE predicate on the "deleted_by" field.

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.WorkflowInstanceHistory

DeletedByHasPrefix applies the HasPrefix predicate on the "deleted_by" field.

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.WorkflowInstanceHistory

DeletedByHasSuffix applies the HasSuffix predicate on the "deleted_by" field.

func DeletedByIn

func DeletedByIn(vs ...string) predicate.WorkflowInstanceHistory

DeletedByIn applies the In predicate on the "deleted_by" field.

func DeletedByIsNil

func DeletedByIsNil() predicate.WorkflowInstanceHistory

DeletedByIsNil applies the IsNil predicate on the "deleted_by" field.

func DeletedByLT

DeletedByLT applies the LT predicate on the "deleted_by" field.

func DeletedByLTE

DeletedByLTE applies the LTE predicate on the "deleted_by" field.

func DeletedByNEQ

DeletedByNEQ applies the NEQ predicate on the "deleted_by" field.

func DeletedByNotIn

func DeletedByNotIn(vs ...string) predicate.WorkflowInstanceHistory

DeletedByNotIn applies the NotIn predicate on the "deleted_by" field.

func DeletedByNotNil

func DeletedByNotNil() predicate.WorkflowInstanceHistory

DeletedByNotNil applies the NotNil predicate on the "deleted_by" field.

func DisplayID

DisplayID applies equality check predicate on the "display_id" field. It's identical to DisplayIDEQ.

func DisplayIDContains

func DisplayIDContains(v string) predicate.WorkflowInstanceHistory

DisplayIDContains applies the Contains predicate on the "display_id" field.

func DisplayIDContainsFold

func DisplayIDContainsFold(v string) predicate.WorkflowInstanceHistory

DisplayIDContainsFold applies the ContainsFold predicate on the "display_id" field.

func DisplayIDEQ

DisplayIDEQ applies the EQ predicate on the "display_id" field.

func DisplayIDEqualFold

func DisplayIDEqualFold(v string) predicate.WorkflowInstanceHistory

DisplayIDEqualFold applies the EqualFold predicate on the "display_id" field.

func DisplayIDGT

DisplayIDGT applies the GT predicate on the "display_id" field.

func DisplayIDGTE

DisplayIDGTE applies the GTE predicate on the "display_id" field.

func DisplayIDHasPrefix

func DisplayIDHasPrefix(v string) predicate.WorkflowInstanceHistory

DisplayIDHasPrefix applies the HasPrefix predicate on the "display_id" field.

func DisplayIDHasSuffix

func DisplayIDHasSuffix(v string) predicate.WorkflowInstanceHistory

DisplayIDHasSuffix applies the HasSuffix predicate on the "display_id" field.

func DisplayIDIn

func DisplayIDIn(vs ...string) predicate.WorkflowInstanceHistory

DisplayIDIn applies the In predicate on the "display_id" field.

func DisplayIDLT

DisplayIDLT applies the LT predicate on the "display_id" field.

func DisplayIDLTE

DisplayIDLTE applies the LTE predicate on the "display_id" field.

func DisplayIDNEQ

DisplayIDNEQ applies the NEQ predicate on the "display_id" field.

func DisplayIDNotIn

func DisplayIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

DisplayIDNotIn applies the NotIn predicate on the "display_id" field.

func EvidenceID

EvidenceID applies equality check predicate on the "evidence_id" field. It's identical to EvidenceIDEQ.

func EvidenceIDContains

func EvidenceIDContains(v string) predicate.WorkflowInstanceHistory

EvidenceIDContains applies the Contains predicate on the "evidence_id" field.

func EvidenceIDContainsFold

func EvidenceIDContainsFold(v string) predicate.WorkflowInstanceHistory

EvidenceIDContainsFold applies the ContainsFold predicate on the "evidence_id" field.

func EvidenceIDEQ

EvidenceIDEQ applies the EQ predicate on the "evidence_id" field.

func EvidenceIDEqualFold

func EvidenceIDEqualFold(v string) predicate.WorkflowInstanceHistory

EvidenceIDEqualFold applies the EqualFold predicate on the "evidence_id" field.

func EvidenceIDGT

EvidenceIDGT applies the GT predicate on the "evidence_id" field.

func EvidenceIDGTE

func EvidenceIDGTE(v string) predicate.WorkflowInstanceHistory

EvidenceIDGTE applies the GTE predicate on the "evidence_id" field.

func EvidenceIDHasPrefix

func EvidenceIDHasPrefix(v string) predicate.WorkflowInstanceHistory

EvidenceIDHasPrefix applies the HasPrefix predicate on the "evidence_id" field.

func EvidenceIDHasSuffix

func EvidenceIDHasSuffix(v string) predicate.WorkflowInstanceHistory

EvidenceIDHasSuffix applies the HasSuffix predicate on the "evidence_id" field.

func EvidenceIDIn

func EvidenceIDIn(vs ...string) predicate.WorkflowInstanceHistory

EvidenceIDIn applies the In predicate on the "evidence_id" field.

func EvidenceIDIsNil

func EvidenceIDIsNil() predicate.WorkflowInstanceHistory

EvidenceIDIsNil applies the IsNil predicate on the "evidence_id" field.

func EvidenceIDLT

EvidenceIDLT applies the LT predicate on the "evidence_id" field.

func EvidenceIDLTE

func EvidenceIDLTE(v string) predicate.WorkflowInstanceHistory

EvidenceIDLTE applies the LTE predicate on the "evidence_id" field.

func EvidenceIDNEQ

func EvidenceIDNEQ(v string) predicate.WorkflowInstanceHistory

EvidenceIDNEQ applies the NEQ predicate on the "evidence_id" field.

func EvidenceIDNotIn

func EvidenceIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

EvidenceIDNotIn applies the NotIn predicate on the "evidence_id" field.

func EvidenceIDNotNil

func EvidenceIDNotNil() predicate.WorkflowInstanceHistory

EvidenceIDNotNil applies the NotNil predicate on the "evidence_id" field.

func HistoryTime

HistoryTime applies equality check predicate on the "history_time" field. It's identical to HistoryTimeEQ.

func HistoryTimeEQ

func HistoryTimeEQ(v time.Time) predicate.WorkflowInstanceHistory

HistoryTimeEQ applies the EQ predicate on the "history_time" field.

func HistoryTimeGT

func HistoryTimeGT(v time.Time) predicate.WorkflowInstanceHistory

HistoryTimeGT applies the GT predicate on the "history_time" field.

func HistoryTimeGTE

func HistoryTimeGTE(v time.Time) predicate.WorkflowInstanceHistory

HistoryTimeGTE applies the GTE predicate on the "history_time" field.

func HistoryTimeIn

func HistoryTimeIn(vs ...time.Time) predicate.WorkflowInstanceHistory

HistoryTimeIn applies the In predicate on the "history_time" field.

func HistoryTimeLT

func HistoryTimeLT(v time.Time) predicate.WorkflowInstanceHistory

HistoryTimeLT applies the LT predicate on the "history_time" field.

func HistoryTimeLTE

func HistoryTimeLTE(v time.Time) predicate.WorkflowInstanceHistory

HistoryTimeLTE applies the LTE predicate on the "history_time" field.

func HistoryTimeNEQ

func HistoryTimeNEQ(v time.Time) predicate.WorkflowInstanceHistory

HistoryTimeNEQ applies the NEQ predicate on the "history_time" field.

func HistoryTimeNotIn

func HistoryTimeNotIn(vs ...time.Time) predicate.WorkflowInstanceHistory

HistoryTimeNotIn applies the NotIn predicate on the "history_time" field.

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.WorkflowInstanceHistory

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

IDEqualFold applies the EqualFold 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

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

IDNotIn applies the NotIn predicate on the ID field.

func IdentityHolderID added in v1.5.0

func IdentityHolderID(v string) predicate.WorkflowInstanceHistory

IdentityHolderID applies equality check predicate on the "identity_holder_id" field. It's identical to IdentityHolderIDEQ.

func IdentityHolderIDContains added in v1.5.0

func IdentityHolderIDContains(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDContains applies the Contains predicate on the "identity_holder_id" field.

func IdentityHolderIDContainsFold added in v1.5.0

func IdentityHolderIDContainsFold(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDContainsFold applies the ContainsFold predicate on the "identity_holder_id" field.

func IdentityHolderIDEQ added in v1.5.0

func IdentityHolderIDEQ(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDEQ applies the EQ predicate on the "identity_holder_id" field.

func IdentityHolderIDEqualFold added in v1.5.0

func IdentityHolderIDEqualFold(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDEqualFold applies the EqualFold predicate on the "identity_holder_id" field.

func IdentityHolderIDGT added in v1.5.0

func IdentityHolderIDGT(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDGT applies the GT predicate on the "identity_holder_id" field.

func IdentityHolderIDGTE added in v1.5.0

func IdentityHolderIDGTE(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDGTE applies the GTE predicate on the "identity_holder_id" field.

func IdentityHolderIDHasPrefix added in v1.5.0

func IdentityHolderIDHasPrefix(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDHasPrefix applies the HasPrefix predicate on the "identity_holder_id" field.

func IdentityHolderIDHasSuffix added in v1.5.0

func IdentityHolderIDHasSuffix(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDHasSuffix applies the HasSuffix predicate on the "identity_holder_id" field.

func IdentityHolderIDIn added in v1.5.0

func IdentityHolderIDIn(vs ...string) predicate.WorkflowInstanceHistory

IdentityHolderIDIn applies the In predicate on the "identity_holder_id" field.

func IdentityHolderIDIsNil added in v1.5.0

func IdentityHolderIDIsNil() predicate.WorkflowInstanceHistory

IdentityHolderIDIsNil applies the IsNil predicate on the "identity_holder_id" field.

func IdentityHolderIDLT added in v1.5.0

func IdentityHolderIDLT(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDLT applies the LT predicate on the "identity_holder_id" field.

func IdentityHolderIDLTE added in v1.5.0

func IdentityHolderIDLTE(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDLTE applies the LTE predicate on the "identity_holder_id" field.

func IdentityHolderIDNEQ added in v1.5.0

func IdentityHolderIDNEQ(v string) predicate.WorkflowInstanceHistory

IdentityHolderIDNEQ applies the NEQ predicate on the "identity_holder_id" field.

func IdentityHolderIDNotIn added in v1.5.0

func IdentityHolderIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

IdentityHolderIDNotIn applies the NotIn predicate on the "identity_holder_id" field.

func IdentityHolderIDNotNil added in v1.5.0

func IdentityHolderIDNotNil() predicate.WorkflowInstanceHistory

IdentityHolderIDNotNil applies the NotNil predicate on the "identity_holder_id" field.

func InternalPolicyID

func InternalPolicyID(v string) predicate.WorkflowInstanceHistory

InternalPolicyID applies equality check predicate on the "internal_policy_id" field. It's identical to InternalPolicyIDEQ.

func InternalPolicyIDContains

func InternalPolicyIDContains(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDContains applies the Contains predicate on the "internal_policy_id" field.

func InternalPolicyIDContainsFold

func InternalPolicyIDContainsFold(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDContainsFold applies the ContainsFold predicate on the "internal_policy_id" field.

func InternalPolicyIDEQ

func InternalPolicyIDEQ(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDEQ applies the EQ predicate on the "internal_policy_id" field.

func InternalPolicyIDEqualFold

func InternalPolicyIDEqualFold(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDEqualFold applies the EqualFold predicate on the "internal_policy_id" field.

func InternalPolicyIDGT

func InternalPolicyIDGT(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDGT applies the GT predicate on the "internal_policy_id" field.

func InternalPolicyIDGTE

func InternalPolicyIDGTE(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDGTE applies the GTE predicate on the "internal_policy_id" field.

func InternalPolicyIDHasPrefix

func InternalPolicyIDHasPrefix(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDHasPrefix applies the HasPrefix predicate on the "internal_policy_id" field.

func InternalPolicyIDHasSuffix

func InternalPolicyIDHasSuffix(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDHasSuffix applies the HasSuffix predicate on the "internal_policy_id" field.

func InternalPolicyIDIn

func InternalPolicyIDIn(vs ...string) predicate.WorkflowInstanceHistory

InternalPolicyIDIn applies the In predicate on the "internal_policy_id" field.

func InternalPolicyIDIsNil

func InternalPolicyIDIsNil() predicate.WorkflowInstanceHistory

InternalPolicyIDIsNil applies the IsNil predicate on the "internal_policy_id" field.

func InternalPolicyIDLT

func InternalPolicyIDLT(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDLT applies the LT predicate on the "internal_policy_id" field.

func InternalPolicyIDLTE

func InternalPolicyIDLTE(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDLTE applies the LTE predicate on the "internal_policy_id" field.

func InternalPolicyIDNEQ

func InternalPolicyIDNEQ(v string) predicate.WorkflowInstanceHistory

InternalPolicyIDNEQ applies the NEQ predicate on the "internal_policy_id" field.

func InternalPolicyIDNotIn

func InternalPolicyIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

InternalPolicyIDNotIn applies the NotIn predicate on the "internal_policy_id" field.

func InternalPolicyIDNotNil

func InternalPolicyIDNotNil() predicate.WorkflowInstanceHistory

InternalPolicyIDNotNil applies the NotNil predicate on the "internal_policy_id" field.

func LastEvaluatedAt

func LastEvaluatedAt(v time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAt applies equality check predicate on the "last_evaluated_at" field. It's identical to LastEvaluatedAtEQ.

func LastEvaluatedAtEQ

func LastEvaluatedAtEQ(v time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtEQ applies the EQ predicate on the "last_evaluated_at" field.

func LastEvaluatedAtGT

func LastEvaluatedAtGT(v time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtGT applies the GT predicate on the "last_evaluated_at" field.

func LastEvaluatedAtGTE

func LastEvaluatedAtGTE(v time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtGTE applies the GTE predicate on the "last_evaluated_at" field.

func LastEvaluatedAtIn

func LastEvaluatedAtIn(vs ...time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtIn applies the In predicate on the "last_evaluated_at" field.

func LastEvaluatedAtIsNil

func LastEvaluatedAtIsNil() predicate.WorkflowInstanceHistory

LastEvaluatedAtIsNil applies the IsNil predicate on the "last_evaluated_at" field.

func LastEvaluatedAtLT

func LastEvaluatedAtLT(v time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtLT applies the LT predicate on the "last_evaluated_at" field.

func LastEvaluatedAtLTE

func LastEvaluatedAtLTE(v time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtLTE applies the LTE predicate on the "last_evaluated_at" field.

func LastEvaluatedAtNEQ

func LastEvaluatedAtNEQ(v time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtNEQ applies the NEQ predicate on the "last_evaluated_at" field.

func LastEvaluatedAtNotIn

func LastEvaluatedAtNotIn(vs ...time.Time) predicate.WorkflowInstanceHistory

LastEvaluatedAtNotIn applies the NotIn predicate on the "last_evaluated_at" field.

func LastEvaluatedAtNotNil

func LastEvaluatedAtNotNil() predicate.WorkflowInstanceHistory

LastEvaluatedAtNotNil applies the NotNil predicate on the "last_evaluated_at" field.

func Not

Not applies the not operator on the given predicate.

func OperationEQ

OperationEQ applies the EQ predicate on the "operation" field.

func OperationIn

OperationIn applies the In predicate on the "operation" field.

func OperationNEQ

OperationNEQ applies the NEQ predicate on the "operation" field.

func OperationNotIn

func OperationNotIn(vs ...history.OpType) predicate.WorkflowInstanceHistory

OperationNotIn applies the NotIn predicate on the "operation" field.

func OperationValidator

func OperationValidator(o history.OpType) error

OperationValidator is a validator for the "operation" field enum values. It is called by the builders before save.

func Or

Or groups predicates with the OR operator between them.

func OwnerID

OwnerID applies equality check predicate on the "owner_id" field. It's identical to OwnerIDEQ.

func OwnerIDContains

func OwnerIDContains(v string) predicate.WorkflowInstanceHistory

OwnerIDContains applies the Contains predicate on the "owner_id" field.

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.WorkflowInstanceHistory

OwnerIDContainsFold applies the ContainsFold predicate on the "owner_id" field.

func OwnerIDEQ

OwnerIDEQ applies the EQ predicate on the "owner_id" field.

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.WorkflowInstanceHistory

OwnerIDEqualFold applies the EqualFold predicate on the "owner_id" field.

func OwnerIDGT

OwnerIDGT applies the GT predicate on the "owner_id" field.

func OwnerIDGTE

OwnerIDGTE applies the GTE predicate on the "owner_id" field.

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.WorkflowInstanceHistory

OwnerIDHasPrefix applies the HasPrefix predicate on the "owner_id" field.

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.WorkflowInstanceHistory

OwnerIDHasSuffix applies the HasSuffix predicate on the "owner_id" field.

func OwnerIDIn

func OwnerIDIn(vs ...string) predicate.WorkflowInstanceHistory

OwnerIDIn applies the In predicate on the "owner_id" field.

func OwnerIDIsNil

func OwnerIDIsNil() predicate.WorkflowInstanceHistory

OwnerIDIsNil applies the IsNil predicate on the "owner_id" field.

func OwnerIDLT

OwnerIDLT applies the LT predicate on the "owner_id" field.

func OwnerIDLTE

OwnerIDLTE applies the LTE predicate on the "owner_id" field.

func OwnerIDNEQ

OwnerIDNEQ applies the NEQ predicate on the "owner_id" field.

func OwnerIDNotIn

func OwnerIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

OwnerIDNotIn applies the NotIn predicate on the "owner_id" field.

func OwnerIDNotNil

func OwnerIDNotNil() predicate.WorkflowInstanceHistory

OwnerIDNotNil applies the NotNil predicate on the "owner_id" field.

func PlatformID added in v1.5.0

PlatformID applies equality check predicate on the "platform_id" field. It's identical to PlatformIDEQ.

func PlatformIDContains added in v1.5.0

func PlatformIDContains(v string) predicate.WorkflowInstanceHistory

PlatformIDContains applies the Contains predicate on the "platform_id" field.

func PlatformIDContainsFold added in v1.5.0

func PlatformIDContainsFold(v string) predicate.WorkflowInstanceHistory

PlatformIDContainsFold applies the ContainsFold predicate on the "platform_id" field.

func PlatformIDEQ added in v1.5.0

PlatformIDEQ applies the EQ predicate on the "platform_id" field.

func PlatformIDEqualFold added in v1.5.0

func PlatformIDEqualFold(v string) predicate.WorkflowInstanceHistory

PlatformIDEqualFold applies the EqualFold predicate on the "platform_id" field.

func PlatformIDGT added in v1.5.0

PlatformIDGT applies the GT predicate on the "platform_id" field.

func PlatformIDGTE added in v1.5.0

func PlatformIDGTE(v string) predicate.WorkflowInstanceHistory

PlatformIDGTE applies the GTE predicate on the "platform_id" field.

func PlatformIDHasPrefix added in v1.5.0

func PlatformIDHasPrefix(v string) predicate.WorkflowInstanceHistory

PlatformIDHasPrefix applies the HasPrefix predicate on the "platform_id" field.

func PlatformIDHasSuffix added in v1.5.0

func PlatformIDHasSuffix(v string) predicate.WorkflowInstanceHistory

PlatformIDHasSuffix applies the HasSuffix predicate on the "platform_id" field.

func PlatformIDIn added in v1.5.0

func PlatformIDIn(vs ...string) predicate.WorkflowInstanceHistory

PlatformIDIn applies the In predicate on the "platform_id" field.

func PlatformIDIsNil added in v1.5.0

func PlatformIDIsNil() predicate.WorkflowInstanceHistory

PlatformIDIsNil applies the IsNil predicate on the "platform_id" field.

func PlatformIDLT added in v1.5.0

PlatformIDLT applies the LT predicate on the "platform_id" field.

func PlatformIDLTE added in v1.5.0

func PlatformIDLTE(v string) predicate.WorkflowInstanceHistory

PlatformIDLTE applies the LTE predicate on the "platform_id" field.

func PlatformIDNEQ added in v1.5.0

func PlatformIDNEQ(v string) predicate.WorkflowInstanceHistory

PlatformIDNEQ applies the NEQ predicate on the "platform_id" field.

func PlatformIDNotIn added in v1.5.0

func PlatformIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

PlatformIDNotIn applies the NotIn predicate on the "platform_id" field.

func PlatformIDNotNil added in v1.5.0

func PlatformIDNotNil() predicate.WorkflowInstanceHistory

PlatformIDNotNil applies the NotNil predicate on the "platform_id" field.

func ProcedureID added in v0.52.0

ProcedureID applies equality check predicate on the "procedure_id" field. It's identical to ProcedureIDEQ.

func ProcedureIDContains added in v0.52.0

func ProcedureIDContains(v string) predicate.WorkflowInstanceHistory

ProcedureIDContains applies the Contains predicate on the "procedure_id" field.

func ProcedureIDContainsFold added in v0.52.0

func ProcedureIDContainsFold(v string) predicate.WorkflowInstanceHistory

ProcedureIDContainsFold applies the ContainsFold predicate on the "procedure_id" field.

func ProcedureIDEQ added in v0.52.0

func ProcedureIDEQ(v string) predicate.WorkflowInstanceHistory

ProcedureIDEQ applies the EQ predicate on the "procedure_id" field.

func ProcedureIDEqualFold added in v0.52.0

func ProcedureIDEqualFold(v string) predicate.WorkflowInstanceHistory

ProcedureIDEqualFold applies the EqualFold predicate on the "procedure_id" field.

func ProcedureIDGT added in v0.52.0

func ProcedureIDGT(v string) predicate.WorkflowInstanceHistory

ProcedureIDGT applies the GT predicate on the "procedure_id" field.

func ProcedureIDGTE added in v0.52.0

func ProcedureIDGTE(v string) predicate.WorkflowInstanceHistory

ProcedureIDGTE applies the GTE predicate on the "procedure_id" field.

func ProcedureIDHasPrefix added in v0.52.0

func ProcedureIDHasPrefix(v string) predicate.WorkflowInstanceHistory

ProcedureIDHasPrefix applies the HasPrefix predicate on the "procedure_id" field.

func ProcedureIDHasSuffix added in v0.52.0

func ProcedureIDHasSuffix(v string) predicate.WorkflowInstanceHistory

ProcedureIDHasSuffix applies the HasSuffix predicate on the "procedure_id" field.

func ProcedureIDIn added in v0.52.0

func ProcedureIDIn(vs ...string) predicate.WorkflowInstanceHistory

ProcedureIDIn applies the In predicate on the "procedure_id" field.

func ProcedureIDIsNil added in v0.52.0

func ProcedureIDIsNil() predicate.WorkflowInstanceHistory

ProcedureIDIsNil applies the IsNil predicate on the "procedure_id" field.

func ProcedureIDLT added in v0.52.0

func ProcedureIDLT(v string) predicate.WorkflowInstanceHistory

ProcedureIDLT applies the LT predicate on the "procedure_id" field.

func ProcedureIDLTE added in v0.52.0

func ProcedureIDLTE(v string) predicate.WorkflowInstanceHistory

ProcedureIDLTE applies the LTE predicate on the "procedure_id" field.

func ProcedureIDNEQ added in v0.52.0

func ProcedureIDNEQ(v string) predicate.WorkflowInstanceHistory

ProcedureIDNEQ applies the NEQ predicate on the "procedure_id" field.

func ProcedureIDNotIn added in v0.52.0

func ProcedureIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

ProcedureIDNotIn applies the NotIn predicate on the "procedure_id" field.

func ProcedureIDNotNil added in v0.52.0

func ProcedureIDNotNil() predicate.WorkflowInstanceHistory

ProcedureIDNotNil applies the NotNil predicate on the "procedure_id" field.

func Ref

Ref applies equality check predicate on the "ref" field. It's identical to RefEQ.

func RefContains

RefContains applies the Contains predicate on the "ref" field.

func RefContainsFold

func RefContainsFold(v string) predicate.WorkflowInstanceHistory

RefContainsFold applies the ContainsFold predicate on the "ref" field.

func RefEQ

RefEQ applies the EQ predicate on the "ref" field.

func RefEqualFold

RefEqualFold applies the EqualFold predicate on the "ref" field.

func RefGT

RefGT applies the GT predicate on the "ref" field.

func RefGTE

RefGTE applies the GTE predicate on the "ref" field.

func RefHasPrefix

RefHasPrefix applies the HasPrefix predicate on the "ref" field.

func RefHasSuffix

RefHasSuffix applies the HasSuffix predicate on the "ref" field.

func RefIn

RefIn applies the In predicate on the "ref" field.

func RefIsNil

RefIsNil applies the IsNil predicate on the "ref" field.

func RefLT

RefLT applies the LT predicate on the "ref" field.

func RefLTE

RefLTE applies the LTE predicate on the "ref" field.

func RefNEQ

RefNEQ applies the NEQ predicate on the "ref" field.

func RefNotIn

RefNotIn applies the NotIn predicate on the "ref" field.

func RefNotNil

RefNotNil applies the NotNil predicate on the "ref" field.

func StateEQ

StateEQ applies the EQ predicate on the "state" field.

func StateIn

StateIn applies the In predicate on the "state" field.

func StateNEQ

StateNEQ applies the NEQ predicate on the "state" field.

func StateNotIn

StateNotIn applies the NotIn predicate on the "state" field.

func StateValidator

func StateValidator(s enums.WorkflowInstanceState) error

StateValidator is a validator for the "state" field enum values. It is called by the builders before save.

func SubcontrolID added in v0.52.0

SubcontrolID applies equality check predicate on the "subcontrol_id" field. It's identical to SubcontrolIDEQ.

func SubcontrolIDContains added in v0.52.0

func SubcontrolIDContains(v string) predicate.WorkflowInstanceHistory

SubcontrolIDContains applies the Contains predicate on the "subcontrol_id" field.

func SubcontrolIDContainsFold added in v0.52.0

func SubcontrolIDContainsFold(v string) predicate.WorkflowInstanceHistory

SubcontrolIDContainsFold applies the ContainsFold predicate on the "subcontrol_id" field.

func SubcontrolIDEQ added in v0.52.0

func SubcontrolIDEQ(v string) predicate.WorkflowInstanceHistory

SubcontrolIDEQ applies the EQ predicate on the "subcontrol_id" field.

func SubcontrolIDEqualFold added in v0.52.0

func SubcontrolIDEqualFold(v string) predicate.WorkflowInstanceHistory

SubcontrolIDEqualFold applies the EqualFold predicate on the "subcontrol_id" field.

func SubcontrolIDGT added in v0.52.0

func SubcontrolIDGT(v string) predicate.WorkflowInstanceHistory

SubcontrolIDGT applies the GT predicate on the "subcontrol_id" field.

func SubcontrolIDGTE added in v0.52.0

func SubcontrolIDGTE(v string) predicate.WorkflowInstanceHistory

SubcontrolIDGTE applies the GTE predicate on the "subcontrol_id" field.

func SubcontrolIDHasPrefix added in v0.52.0

func SubcontrolIDHasPrefix(v string) predicate.WorkflowInstanceHistory

SubcontrolIDHasPrefix applies the HasPrefix predicate on the "subcontrol_id" field.

func SubcontrolIDHasSuffix added in v0.52.0

func SubcontrolIDHasSuffix(v string) predicate.WorkflowInstanceHistory

SubcontrolIDHasSuffix applies the HasSuffix predicate on the "subcontrol_id" field.

func SubcontrolIDIn added in v0.52.0

func SubcontrolIDIn(vs ...string) predicate.WorkflowInstanceHistory

SubcontrolIDIn applies the In predicate on the "subcontrol_id" field.

func SubcontrolIDIsNil added in v0.52.0

func SubcontrolIDIsNil() predicate.WorkflowInstanceHistory

SubcontrolIDIsNil applies the IsNil predicate on the "subcontrol_id" field.

func SubcontrolIDLT added in v0.52.0

func SubcontrolIDLT(v string) predicate.WorkflowInstanceHistory

SubcontrolIDLT applies the LT predicate on the "subcontrol_id" field.

func SubcontrolIDLTE added in v0.52.0

func SubcontrolIDLTE(v string) predicate.WorkflowInstanceHistory

SubcontrolIDLTE applies the LTE predicate on the "subcontrol_id" field.

func SubcontrolIDNEQ added in v0.52.0

func SubcontrolIDNEQ(v string) predicate.WorkflowInstanceHistory

SubcontrolIDNEQ applies the NEQ predicate on the "subcontrol_id" field.

func SubcontrolIDNotIn added in v0.52.0

func SubcontrolIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

SubcontrolIDNotIn applies the NotIn predicate on the "subcontrol_id" field.

func SubcontrolIDNotNil added in v0.52.0

func SubcontrolIDNotNil() predicate.WorkflowInstanceHistory

SubcontrolIDNotNil applies the NotNil predicate on the "subcontrol_id" field.

func TagsIsNil

TagsIsNil applies the IsNil predicate on the "tags" field.

func TagsNotNil

TagsNotNil applies the NotNil predicate on the "tags" field.

func UpdatedAt

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

func UpdatedAtEQ

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

func UpdatedAtGT

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

func UpdatedAtGTE

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.WorkflowInstanceHistory

UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.

func UpdatedAtLT

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

func UpdatedAtLTE

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

func UpdatedAtNEQ

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.WorkflowInstanceHistory

UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.

func UpdatedBy

UpdatedBy applies equality check predicate on the "updated_by" field. It's identical to UpdatedByEQ.

func UpdatedByContains

func UpdatedByContains(v string) predicate.WorkflowInstanceHistory

UpdatedByContains applies the Contains predicate on the "updated_by" field.

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.WorkflowInstanceHistory

UpdatedByContainsFold applies the ContainsFold predicate on the "updated_by" field.

func UpdatedByEQ

UpdatedByEQ applies the EQ predicate on the "updated_by" field.

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.WorkflowInstanceHistory

UpdatedByEqualFold applies the EqualFold predicate on the "updated_by" field.

func UpdatedByGT

UpdatedByGT applies the GT predicate on the "updated_by" field.

func UpdatedByGTE

UpdatedByGTE applies the GTE predicate on the "updated_by" field.

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.WorkflowInstanceHistory

UpdatedByHasPrefix applies the HasPrefix predicate on the "updated_by" field.

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.WorkflowInstanceHistory

UpdatedByHasSuffix applies the HasSuffix predicate on the "updated_by" field.

func UpdatedByIn

func UpdatedByIn(vs ...string) predicate.WorkflowInstanceHistory

UpdatedByIn applies the In predicate on the "updated_by" field.

func UpdatedByIsNil

func UpdatedByIsNil() predicate.WorkflowInstanceHistory

UpdatedByIsNil applies the IsNil predicate on the "updated_by" field.

func UpdatedByLT

UpdatedByLT applies the LT predicate on the "updated_by" field.

func UpdatedByLTE

UpdatedByLTE applies the LTE predicate on the "updated_by" field.

func UpdatedByNEQ

UpdatedByNEQ applies the NEQ predicate on the "updated_by" field.

func UpdatedByNotIn

func UpdatedByNotIn(vs ...string) predicate.WorkflowInstanceHistory

UpdatedByNotIn applies the NotIn predicate on the "updated_by" field.

func UpdatedByNotNil

func UpdatedByNotNil() predicate.WorkflowInstanceHistory

UpdatedByNotNil applies the NotNil predicate on the "updated_by" field.

func ValidColumn

func ValidColumn(column string) bool

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

func WorkflowDefinitionID

func WorkflowDefinitionID(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionID applies equality check predicate on the "workflow_definition_id" field. It's identical to WorkflowDefinitionIDEQ.

func WorkflowDefinitionIDContains

func WorkflowDefinitionIDContains(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDContains applies the Contains predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDContainsFold

func WorkflowDefinitionIDContainsFold(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDContainsFold applies the ContainsFold predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDEQ

func WorkflowDefinitionIDEQ(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDEQ applies the EQ predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDEqualFold

func WorkflowDefinitionIDEqualFold(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDEqualFold applies the EqualFold predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDGT

func WorkflowDefinitionIDGT(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDGT applies the GT predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDGTE

func WorkflowDefinitionIDGTE(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDGTE applies the GTE predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDHasPrefix

func WorkflowDefinitionIDHasPrefix(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDHasPrefix applies the HasPrefix predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDHasSuffix

func WorkflowDefinitionIDHasSuffix(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDHasSuffix applies the HasSuffix predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDIn

func WorkflowDefinitionIDIn(vs ...string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDIn applies the In predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDLT

func WorkflowDefinitionIDLT(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDLT applies the LT predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDLTE

func WorkflowDefinitionIDLTE(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDLTE applies the LTE predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDNEQ

func WorkflowDefinitionIDNEQ(v string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDNEQ applies the NEQ predicate on the "workflow_definition_id" field.

func WorkflowDefinitionIDNotIn

func WorkflowDefinitionIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

WorkflowDefinitionIDNotIn applies the NotIn predicate on the "workflow_definition_id" field.

func WorkflowProposalID added in v0.52.0

func WorkflowProposalID(v string) predicate.WorkflowInstanceHistory

WorkflowProposalID applies equality check predicate on the "workflow_proposal_id" field. It's identical to WorkflowProposalIDEQ.

func WorkflowProposalIDContains added in v0.52.0

func WorkflowProposalIDContains(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDContains applies the Contains predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDContainsFold added in v0.52.0

func WorkflowProposalIDContainsFold(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDContainsFold applies the ContainsFold predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDEQ added in v0.52.0

func WorkflowProposalIDEQ(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDEQ applies the EQ predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDEqualFold added in v0.52.0

func WorkflowProposalIDEqualFold(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDEqualFold applies the EqualFold predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDGT added in v0.52.0

func WorkflowProposalIDGT(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDGT applies the GT predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDGTE added in v0.52.0

func WorkflowProposalIDGTE(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDGTE applies the GTE predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDHasPrefix added in v0.52.0

func WorkflowProposalIDHasPrefix(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDHasPrefix applies the HasPrefix predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDHasSuffix added in v0.52.0

func WorkflowProposalIDHasSuffix(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDHasSuffix applies the HasSuffix predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDIn added in v0.52.0

func WorkflowProposalIDIn(vs ...string) predicate.WorkflowInstanceHistory

WorkflowProposalIDIn applies the In predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDIsNil added in v0.52.0

func WorkflowProposalIDIsNil() predicate.WorkflowInstanceHistory

WorkflowProposalIDIsNil applies the IsNil predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDLT added in v0.52.0

func WorkflowProposalIDLT(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDLT applies the LT predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDLTE added in v0.52.0

func WorkflowProposalIDLTE(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDLTE applies the LTE predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDNEQ added in v0.52.0

func WorkflowProposalIDNEQ(v string) predicate.WorkflowInstanceHistory

WorkflowProposalIDNEQ applies the NEQ predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDNotIn added in v0.52.0

func WorkflowProposalIDNotIn(vs ...string) predicate.WorkflowInstanceHistory

WorkflowProposalIDNotIn applies the NotIn predicate on the "workflow_proposal_id" field.

func WorkflowProposalIDNotNil added in v0.52.0

func WorkflowProposalIDNotNil() predicate.WorkflowInstanceHistory

WorkflowProposalIDNotNil applies the NotNil predicate on the "workflow_proposal_id" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the WorkflowInstanceHistory queries.

func ByActionPlanID added in v0.52.0

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

ByActionPlanID orders the results by the action_plan_id field.

func ByCampaignID added in v1.5.0

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

ByCampaignID orders the results by the campaign_id field.

func ByCampaignTargetID added in v1.5.0

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

ByCampaignTargetID orders the results by the campaign_target_id field.

func ByControlID

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

ByControlID orders the results by the control_id 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 ByCurrentActionIndex added in v0.52.0

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

ByCurrentActionIndex orders the results by the current_action_index field.

func ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByDeletedBy

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

ByDeletedBy orders the results by the deleted_by field.

func ByDisplayID

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

ByDisplayID orders the results by the display_id field.

func ByEvidenceID

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

ByEvidenceID orders the results by the evidence_id field.

func ByHistoryTime

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

ByHistoryTime orders the results by the history_time field.

func ByID

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

ByID orders the results by the id field.

func ByIdentityHolderID added in v1.5.0

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

ByIdentityHolderID orders the results by the identity_holder_id field.

func ByInternalPolicyID

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

ByInternalPolicyID orders the results by the internal_policy_id field.

func ByLastEvaluatedAt

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

ByLastEvaluatedAt orders the results by the last_evaluated_at field.

func ByOperation

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

ByOperation orders the results by the operation field.

func ByOwnerID

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

ByOwnerID orders the results by the owner_id field.

func ByPlatformID added in v1.5.0

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

ByPlatformID orders the results by the platform_id field.

func ByProcedureID added in v0.52.0

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

ByProcedureID orders the results by the procedure_id field.

func ByRef

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

ByRef orders the results by the ref field.

func ByState

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

ByState orders the results by the state field.

func BySubcontrolID added in v0.52.0

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

BySubcontrolID orders the results by the subcontrol_id field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUpdatedBy

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

ByUpdatedBy orders the results by the updated_by field.

func ByWorkflowDefinitionID

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

ByWorkflowDefinitionID orders the results by the workflow_definition_id field.

func ByWorkflowProposalID added in v0.52.0

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

ByWorkflowProposalID orders the results by the workflow_proposal_id field.

Jump to

Keyboard shortcuts

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