workflowobjectref

package
v0.48.2 Latest Latest
Warning

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

Go to latest
Published: Dec 3, 2025 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the workflowobjectref type in the database.
	Label = "workflow_object_ref"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// 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"
	// FieldDisplayID holds the string denoting the display_id field in the database.
	FieldDisplayID = "display_id"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldWorkflowInstanceID holds the string denoting the workflow_instance_id field in the database.
	FieldWorkflowInstanceID = "workflow_instance_id"
	// FieldControlID holds the string denoting the control_id field in the database.
	FieldControlID = "control_id"
	// FieldTaskID holds the string denoting the task_id field in the database.
	FieldTaskID = "task_id"
	// FieldInternalPolicyID holds the string denoting the internal_policy_id field in the database.
	FieldInternalPolicyID = "internal_policy_id"
	// FieldFindingID holds the string denoting the finding_id field in the database.
	FieldFindingID = "finding_id"
	// FieldDirectoryAccountID holds the string denoting the directory_account_id field in the database.
	FieldDirectoryAccountID = "directory_account_id"
	// FieldDirectoryGroupID holds the string denoting the directory_group_id field in the database.
	FieldDirectoryGroupID = "directory_group_id"
	// FieldDirectoryMembershipID holds the string denoting the directory_membership_id field in the database.
	FieldDirectoryMembershipID = "directory_membership_id"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeWorkflowInstance holds the string denoting the workflow_instance edge name in mutations.
	EdgeWorkflowInstance = "workflow_instance"
	// EdgeControl holds the string denoting the control edge name in mutations.
	EdgeControl = "control"
	// EdgeTask holds the string denoting the task edge name in mutations.
	EdgeTask = "task"
	// EdgeInternalPolicy holds the string denoting the internal_policy edge name in mutations.
	EdgeInternalPolicy = "internal_policy"
	// EdgeFinding holds the string denoting the finding edge name in mutations.
	EdgeFinding = "finding"
	// EdgeDirectoryAccount holds the string denoting the directory_account edge name in mutations.
	EdgeDirectoryAccount = "directory_account"
	// EdgeDirectoryGroup holds the string denoting the directory_group edge name in mutations.
	EdgeDirectoryGroup = "directory_group"
	// EdgeDirectoryMembership holds the string denoting the directory_membership edge name in mutations.
	EdgeDirectoryMembership = "directory_membership"
	// Table holds the table name of the workflowobjectref in the database.
	Table = "workflow_object_refs"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "workflow_object_refs"
	// OwnerInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OwnerInverseTable = "organizations"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "owner_id"
	// WorkflowInstanceTable is the table that holds the workflow_instance relation/edge.
	WorkflowInstanceTable = "workflow_object_refs"
	// WorkflowInstanceInverseTable is the table name for the WorkflowInstance entity.
	// It exists in this package in order to avoid circular dependency with the "workflowinstance" package.
	WorkflowInstanceInverseTable = "workflow_instances"
	// WorkflowInstanceColumn is the table column denoting the workflow_instance relation/edge.
	WorkflowInstanceColumn = "workflow_instance_id"
	// ControlTable is the table that holds the control relation/edge.
	ControlTable = "workflow_object_refs"
	// ControlInverseTable is the table name for the Control entity.
	// It exists in this package in order to avoid circular dependency with the "control" package.
	ControlInverseTable = "controls"
	// ControlColumn is the table column denoting the control relation/edge.
	ControlColumn = "control_id"
	// TaskTable is the table that holds the task relation/edge.
	TaskTable = "workflow_object_refs"
	// TaskInverseTable is the table name for the Task entity.
	// It exists in this package in order to avoid circular dependency with the "task" package.
	TaskInverseTable = "tasks"
	// TaskColumn is the table column denoting the task relation/edge.
	TaskColumn = "task_id"
	// InternalPolicyTable is the table that holds the internal_policy relation/edge.
	InternalPolicyTable = "workflow_object_refs"
	// InternalPolicyInverseTable is the table name for the InternalPolicy entity.
	// It exists in this package in order to avoid circular dependency with the "internalpolicy" package.
	InternalPolicyInverseTable = "internal_policies"
	// InternalPolicyColumn is the table column denoting the internal_policy relation/edge.
	InternalPolicyColumn = "internal_policy_id"
	// FindingTable is the table that holds the finding relation/edge.
	FindingTable = "workflow_object_refs"
	// FindingInverseTable is the table name for the Finding entity.
	// It exists in this package in order to avoid circular dependency with the "finding" package.
	FindingInverseTable = "findings"
	// FindingColumn is the table column denoting the finding relation/edge.
	FindingColumn = "finding_id"
	// DirectoryAccountTable is the table that holds the directory_account relation/edge.
	DirectoryAccountTable = "workflow_object_refs"
	// DirectoryAccountInverseTable is the table name for the DirectoryAccount entity.
	// It exists in this package in order to avoid circular dependency with the "directoryaccount" package.
	DirectoryAccountInverseTable = "directory_accounts"
	// DirectoryAccountColumn is the table column denoting the directory_account relation/edge.
	DirectoryAccountColumn = "directory_account_id"
	// DirectoryGroupTable is the table that holds the directory_group relation/edge.
	DirectoryGroupTable = "workflow_object_refs"
	// DirectoryGroupInverseTable is the table name for the DirectoryGroup entity.
	// It exists in this package in order to avoid circular dependency with the "directorygroup" package.
	DirectoryGroupInverseTable = "directory_groups"
	// DirectoryGroupColumn is the table column denoting the directory_group relation/edge.
	DirectoryGroupColumn = "directory_group_id"
	// DirectoryMembershipTable is the table that holds the directory_membership relation/edge.
	DirectoryMembershipTable = "workflow_object_refs"
	// DirectoryMembershipInverseTable is the table name for the DirectoryMembership entity.
	// It exists in this package in order to avoid circular dependency with the "directorymembership" package.
	DirectoryMembershipInverseTable = "directory_memberships"
	// DirectoryMembershipColumn is the table column denoting the directory_membership relation/edge.
	DirectoryMembershipColumn = "directory_membership_id"
)

Variables

View Source
var (
	Hooks        [5]ent.Hook
	Interceptors [2]ent.Interceptor
	Policy       ent.Policy
	// 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
	// DisplayIDValidator is a validator for the "display_id" field. It is called by the builders before save.
	DisplayIDValidator func(string) error
	// OwnerIDValidator is a validator for the "owner_id" field. It is called by the builders before save.
	OwnerIDValidator func(string) error
	// WorkflowInstanceIDValidator is a validator for the "workflow_instance_id" field. It is called by the builders before save.
	WorkflowInstanceIDValidator func(string) error
	// 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/generated/runtime"

Columns holds all SQL columns for workflowobjectref fields.

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

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

Functions

func And

And groups predicates with the AND operator between them.

func ControlID

func ControlID(v string) predicate.WorkflowObjectRef

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

func ControlIDContains

func ControlIDContains(v string) predicate.WorkflowObjectRef

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

func ControlIDContainsFold

func ControlIDContainsFold(v string) predicate.WorkflowObjectRef

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

func ControlIDEQ

func ControlIDEQ(v string) predicate.WorkflowObjectRef

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

func ControlIDEqualFold

func ControlIDEqualFold(v string) predicate.WorkflowObjectRef

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

func ControlIDGT

func ControlIDGT(v string) predicate.WorkflowObjectRef

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

func ControlIDGTE

func ControlIDGTE(v string) predicate.WorkflowObjectRef

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

func ControlIDHasPrefix

func ControlIDHasPrefix(v string) predicate.WorkflowObjectRef

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

func ControlIDHasSuffix

func ControlIDHasSuffix(v string) predicate.WorkflowObjectRef

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

func ControlIDIn

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

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

func ControlIDIsNil

func ControlIDIsNil() predicate.WorkflowObjectRef

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

func ControlIDLT

func ControlIDLT(v string) predicate.WorkflowObjectRef

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

func ControlIDLTE

func ControlIDLTE(v string) predicate.WorkflowObjectRef

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

func ControlIDNEQ

func ControlIDNEQ(v string) predicate.WorkflowObjectRef

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

func ControlIDNotIn

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

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

func ControlIDNotNil

func ControlIDNotNil() predicate.WorkflowObjectRef

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

func CreatedAt

func CreatedAt(v time.Time) predicate.WorkflowObjectRef

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.WorkflowObjectRef

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.WorkflowObjectRef

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.WorkflowObjectRef

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.WorkflowObjectRef

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.WorkflowObjectRef

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.WorkflowObjectRef

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.WorkflowObjectRef

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.WorkflowObjectRef

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

func CreatedBy

func CreatedBy(v string) predicate.WorkflowObjectRef

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

func CreatedByContains

func CreatedByContains(v string) predicate.WorkflowObjectRef

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.WorkflowObjectRef

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.WorkflowObjectRef

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.WorkflowObjectRef

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

func CreatedByGT

func CreatedByGT(v string) predicate.WorkflowObjectRef

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.WorkflowObjectRef

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.WorkflowObjectRef

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.WorkflowObjectRef

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.WorkflowObjectRef

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

func CreatedByLT

func CreatedByLT(v string) predicate.WorkflowObjectRef

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.WorkflowObjectRef

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.WorkflowObjectRef

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.WorkflowObjectRef

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

func DirectoryAccountID

func DirectoryAccountID(v string) predicate.WorkflowObjectRef

DirectoryAccountID applies equality check predicate on the "directory_account_id" field. It's identical to DirectoryAccountIDEQ.

func DirectoryAccountIDContains

func DirectoryAccountIDContains(v string) predicate.WorkflowObjectRef

DirectoryAccountIDContains applies the Contains predicate on the "directory_account_id" field.

func DirectoryAccountIDContainsFold

func DirectoryAccountIDContainsFold(v string) predicate.WorkflowObjectRef

DirectoryAccountIDContainsFold applies the ContainsFold predicate on the "directory_account_id" field.

func DirectoryAccountIDEQ

func DirectoryAccountIDEQ(v string) predicate.WorkflowObjectRef

DirectoryAccountIDEQ applies the EQ predicate on the "directory_account_id" field.

func DirectoryAccountIDEqualFold

func DirectoryAccountIDEqualFold(v string) predicate.WorkflowObjectRef

DirectoryAccountIDEqualFold applies the EqualFold predicate on the "directory_account_id" field.

func DirectoryAccountIDGT

func DirectoryAccountIDGT(v string) predicate.WorkflowObjectRef

DirectoryAccountIDGT applies the GT predicate on the "directory_account_id" field.

func DirectoryAccountIDGTE

func DirectoryAccountIDGTE(v string) predicate.WorkflowObjectRef

DirectoryAccountIDGTE applies the GTE predicate on the "directory_account_id" field.

func DirectoryAccountIDHasPrefix

func DirectoryAccountIDHasPrefix(v string) predicate.WorkflowObjectRef

DirectoryAccountIDHasPrefix applies the HasPrefix predicate on the "directory_account_id" field.

func DirectoryAccountIDHasSuffix

func DirectoryAccountIDHasSuffix(v string) predicate.WorkflowObjectRef

DirectoryAccountIDHasSuffix applies the HasSuffix predicate on the "directory_account_id" field.

func DirectoryAccountIDIn

func DirectoryAccountIDIn(vs ...string) predicate.WorkflowObjectRef

DirectoryAccountIDIn applies the In predicate on the "directory_account_id" field.

func DirectoryAccountIDIsNil

func DirectoryAccountIDIsNil() predicate.WorkflowObjectRef

DirectoryAccountIDIsNil applies the IsNil predicate on the "directory_account_id" field.

func DirectoryAccountIDLT

func DirectoryAccountIDLT(v string) predicate.WorkflowObjectRef

DirectoryAccountIDLT applies the LT predicate on the "directory_account_id" field.

func DirectoryAccountIDLTE

func DirectoryAccountIDLTE(v string) predicate.WorkflowObjectRef

DirectoryAccountIDLTE applies the LTE predicate on the "directory_account_id" field.

func DirectoryAccountIDNEQ

func DirectoryAccountIDNEQ(v string) predicate.WorkflowObjectRef

DirectoryAccountIDNEQ applies the NEQ predicate on the "directory_account_id" field.

func DirectoryAccountIDNotIn

func DirectoryAccountIDNotIn(vs ...string) predicate.WorkflowObjectRef

DirectoryAccountIDNotIn applies the NotIn predicate on the "directory_account_id" field.

func DirectoryAccountIDNotNil

func DirectoryAccountIDNotNil() predicate.WorkflowObjectRef

DirectoryAccountIDNotNil applies the NotNil predicate on the "directory_account_id" field.

func DirectoryGroupID

func DirectoryGroupID(v string) predicate.WorkflowObjectRef

DirectoryGroupID applies equality check predicate on the "directory_group_id" field. It's identical to DirectoryGroupIDEQ.

func DirectoryGroupIDContains

func DirectoryGroupIDContains(v string) predicate.WorkflowObjectRef

DirectoryGroupIDContains applies the Contains predicate on the "directory_group_id" field.

func DirectoryGroupIDContainsFold

func DirectoryGroupIDContainsFold(v string) predicate.WorkflowObjectRef

DirectoryGroupIDContainsFold applies the ContainsFold predicate on the "directory_group_id" field.

func DirectoryGroupIDEQ

func DirectoryGroupIDEQ(v string) predicate.WorkflowObjectRef

DirectoryGroupIDEQ applies the EQ predicate on the "directory_group_id" field.

func DirectoryGroupIDEqualFold

func DirectoryGroupIDEqualFold(v string) predicate.WorkflowObjectRef

DirectoryGroupIDEqualFold applies the EqualFold predicate on the "directory_group_id" field.

func DirectoryGroupIDGT

func DirectoryGroupIDGT(v string) predicate.WorkflowObjectRef

DirectoryGroupIDGT applies the GT predicate on the "directory_group_id" field.

func DirectoryGroupIDGTE

func DirectoryGroupIDGTE(v string) predicate.WorkflowObjectRef

DirectoryGroupIDGTE applies the GTE predicate on the "directory_group_id" field.

func DirectoryGroupIDHasPrefix

func DirectoryGroupIDHasPrefix(v string) predicate.WorkflowObjectRef

DirectoryGroupIDHasPrefix applies the HasPrefix predicate on the "directory_group_id" field.

func DirectoryGroupIDHasSuffix

func DirectoryGroupIDHasSuffix(v string) predicate.WorkflowObjectRef

DirectoryGroupIDHasSuffix applies the HasSuffix predicate on the "directory_group_id" field.

func DirectoryGroupIDIn

func DirectoryGroupIDIn(vs ...string) predicate.WorkflowObjectRef

DirectoryGroupIDIn applies the In predicate on the "directory_group_id" field.

func DirectoryGroupIDIsNil

func DirectoryGroupIDIsNil() predicate.WorkflowObjectRef

DirectoryGroupIDIsNil applies the IsNil predicate on the "directory_group_id" field.

func DirectoryGroupIDLT

func DirectoryGroupIDLT(v string) predicate.WorkflowObjectRef

DirectoryGroupIDLT applies the LT predicate on the "directory_group_id" field.

func DirectoryGroupIDLTE

func DirectoryGroupIDLTE(v string) predicate.WorkflowObjectRef

DirectoryGroupIDLTE applies the LTE predicate on the "directory_group_id" field.

func DirectoryGroupIDNEQ

func DirectoryGroupIDNEQ(v string) predicate.WorkflowObjectRef

DirectoryGroupIDNEQ applies the NEQ predicate on the "directory_group_id" field.

func DirectoryGroupIDNotIn

func DirectoryGroupIDNotIn(vs ...string) predicate.WorkflowObjectRef

DirectoryGroupIDNotIn applies the NotIn predicate on the "directory_group_id" field.

func DirectoryGroupIDNotNil

func DirectoryGroupIDNotNil() predicate.WorkflowObjectRef

DirectoryGroupIDNotNil applies the NotNil predicate on the "directory_group_id" field.

func DirectoryMembershipID

func DirectoryMembershipID(v string) predicate.WorkflowObjectRef

DirectoryMembershipID applies equality check predicate on the "directory_membership_id" field. It's identical to DirectoryMembershipIDEQ.

func DirectoryMembershipIDContains

func DirectoryMembershipIDContains(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDContains applies the Contains predicate on the "directory_membership_id" field.

func DirectoryMembershipIDContainsFold

func DirectoryMembershipIDContainsFold(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDContainsFold applies the ContainsFold predicate on the "directory_membership_id" field.

func DirectoryMembershipIDEQ

func DirectoryMembershipIDEQ(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDEQ applies the EQ predicate on the "directory_membership_id" field.

func DirectoryMembershipIDEqualFold

func DirectoryMembershipIDEqualFold(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDEqualFold applies the EqualFold predicate on the "directory_membership_id" field.

func DirectoryMembershipIDGT

func DirectoryMembershipIDGT(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDGT applies the GT predicate on the "directory_membership_id" field.

func DirectoryMembershipIDGTE

func DirectoryMembershipIDGTE(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDGTE applies the GTE predicate on the "directory_membership_id" field.

func DirectoryMembershipIDHasPrefix

func DirectoryMembershipIDHasPrefix(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDHasPrefix applies the HasPrefix predicate on the "directory_membership_id" field.

func DirectoryMembershipIDHasSuffix

func DirectoryMembershipIDHasSuffix(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDHasSuffix applies the HasSuffix predicate on the "directory_membership_id" field.

func DirectoryMembershipIDIn

func DirectoryMembershipIDIn(vs ...string) predicate.WorkflowObjectRef

DirectoryMembershipIDIn applies the In predicate on the "directory_membership_id" field.

func DirectoryMembershipIDIsNil

func DirectoryMembershipIDIsNil() predicate.WorkflowObjectRef

DirectoryMembershipIDIsNil applies the IsNil predicate on the "directory_membership_id" field.

func DirectoryMembershipIDLT

func DirectoryMembershipIDLT(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDLT applies the LT predicate on the "directory_membership_id" field.

func DirectoryMembershipIDLTE

func DirectoryMembershipIDLTE(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDLTE applies the LTE predicate on the "directory_membership_id" field.

func DirectoryMembershipIDNEQ

func DirectoryMembershipIDNEQ(v string) predicate.WorkflowObjectRef

DirectoryMembershipIDNEQ applies the NEQ predicate on the "directory_membership_id" field.

func DirectoryMembershipIDNotIn

func DirectoryMembershipIDNotIn(vs ...string) predicate.WorkflowObjectRef

DirectoryMembershipIDNotIn applies the NotIn predicate on the "directory_membership_id" field.

func DirectoryMembershipIDNotNil

func DirectoryMembershipIDNotNil() predicate.WorkflowObjectRef

DirectoryMembershipIDNotNil applies the NotNil predicate on the "directory_membership_id" field.

func DisplayID

func DisplayID(v string) predicate.WorkflowObjectRef

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

func DisplayIDContains

func DisplayIDContains(v string) predicate.WorkflowObjectRef

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

func DisplayIDContainsFold

func DisplayIDContainsFold(v string) predicate.WorkflowObjectRef

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

func DisplayIDEQ

func DisplayIDEQ(v string) predicate.WorkflowObjectRef

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

func DisplayIDEqualFold

func DisplayIDEqualFold(v string) predicate.WorkflowObjectRef

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

func DisplayIDGT

func DisplayIDGT(v string) predicate.WorkflowObjectRef

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

func DisplayIDGTE

func DisplayIDGTE(v string) predicate.WorkflowObjectRef

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

func DisplayIDHasPrefix

func DisplayIDHasPrefix(v string) predicate.WorkflowObjectRef

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

func DisplayIDHasSuffix

func DisplayIDHasSuffix(v string) predicate.WorkflowObjectRef

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

func DisplayIDIn

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

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

func DisplayIDLT

func DisplayIDLT(v string) predicate.WorkflowObjectRef

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

func DisplayIDLTE

func DisplayIDLTE(v string) predicate.WorkflowObjectRef

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

func DisplayIDNEQ

func DisplayIDNEQ(v string) predicate.WorkflowObjectRef

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

func DisplayIDNotIn

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

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

func FindingID

func FindingID(v string) predicate.WorkflowObjectRef

FindingID applies equality check predicate on the "finding_id" field. It's identical to FindingIDEQ.

func FindingIDContains

func FindingIDContains(v string) predicate.WorkflowObjectRef

FindingIDContains applies the Contains predicate on the "finding_id" field.

func FindingIDContainsFold

func FindingIDContainsFold(v string) predicate.WorkflowObjectRef

FindingIDContainsFold applies the ContainsFold predicate on the "finding_id" field.

func FindingIDEQ

func FindingIDEQ(v string) predicate.WorkflowObjectRef

FindingIDEQ applies the EQ predicate on the "finding_id" field.

func FindingIDEqualFold

func FindingIDEqualFold(v string) predicate.WorkflowObjectRef

FindingIDEqualFold applies the EqualFold predicate on the "finding_id" field.

func FindingIDGT

func FindingIDGT(v string) predicate.WorkflowObjectRef

FindingIDGT applies the GT predicate on the "finding_id" field.

func FindingIDGTE

func FindingIDGTE(v string) predicate.WorkflowObjectRef

FindingIDGTE applies the GTE predicate on the "finding_id" field.

func FindingIDHasPrefix

func FindingIDHasPrefix(v string) predicate.WorkflowObjectRef

FindingIDHasPrefix applies the HasPrefix predicate on the "finding_id" field.

func FindingIDHasSuffix

func FindingIDHasSuffix(v string) predicate.WorkflowObjectRef

FindingIDHasSuffix applies the HasSuffix predicate on the "finding_id" field.

func FindingIDIn

func FindingIDIn(vs ...string) predicate.WorkflowObjectRef

FindingIDIn applies the In predicate on the "finding_id" field.

func FindingIDIsNil

func FindingIDIsNil() predicate.WorkflowObjectRef

FindingIDIsNil applies the IsNil predicate on the "finding_id" field.

func FindingIDLT

func FindingIDLT(v string) predicate.WorkflowObjectRef

FindingIDLT applies the LT predicate on the "finding_id" field.

func FindingIDLTE

func FindingIDLTE(v string) predicate.WorkflowObjectRef

FindingIDLTE applies the LTE predicate on the "finding_id" field.

func FindingIDNEQ

func FindingIDNEQ(v string) predicate.WorkflowObjectRef

FindingIDNEQ applies the NEQ predicate on the "finding_id" field.

func FindingIDNotIn

func FindingIDNotIn(vs ...string) predicate.WorkflowObjectRef

FindingIDNotIn applies the NotIn predicate on the "finding_id" field.

func FindingIDNotNil

func FindingIDNotNil() predicate.WorkflowObjectRef

FindingIDNotNil applies the NotNil predicate on the "finding_id" field.

func HasControl

func HasControl() predicate.WorkflowObjectRef

HasControl applies the HasEdge predicate on the "control" edge.

func HasControlWith

func HasControlWith(preds ...predicate.Control) predicate.WorkflowObjectRef

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

func HasDirectoryAccount

func HasDirectoryAccount() predicate.WorkflowObjectRef

HasDirectoryAccount applies the HasEdge predicate on the "directory_account" edge.

func HasDirectoryAccountWith

func HasDirectoryAccountWith(preds ...predicate.DirectoryAccount) predicate.WorkflowObjectRef

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

func HasDirectoryGroup

func HasDirectoryGroup() predicate.WorkflowObjectRef

HasDirectoryGroup applies the HasEdge predicate on the "directory_group" edge.

func HasDirectoryGroupWith

func HasDirectoryGroupWith(preds ...predicate.DirectoryGroup) predicate.WorkflowObjectRef

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

func HasDirectoryMembership

func HasDirectoryMembership() predicate.WorkflowObjectRef

HasDirectoryMembership applies the HasEdge predicate on the "directory_membership" edge.

func HasDirectoryMembershipWith

func HasDirectoryMembershipWith(preds ...predicate.DirectoryMembership) predicate.WorkflowObjectRef

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

func HasFinding

func HasFinding() predicate.WorkflowObjectRef

HasFinding applies the HasEdge predicate on the "finding" edge.

func HasFindingWith

func HasFindingWith(preds ...predicate.Finding) predicate.WorkflowObjectRef

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

func HasInternalPolicy

func HasInternalPolicy() predicate.WorkflowObjectRef

HasInternalPolicy applies the HasEdge predicate on the "internal_policy" edge.

func HasInternalPolicyWith

func HasInternalPolicyWith(preds ...predicate.InternalPolicy) predicate.WorkflowObjectRef

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

func HasOwner

func HasOwner() predicate.WorkflowObjectRef

HasOwner applies the HasEdge predicate on the "owner" edge.

func HasOwnerWith

func HasOwnerWith(preds ...predicate.Organization) predicate.WorkflowObjectRef

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

func HasTask

func HasTask() predicate.WorkflowObjectRef

HasTask applies the HasEdge predicate on the "task" edge.

func HasTaskWith

func HasTaskWith(preds ...predicate.Task) predicate.WorkflowObjectRef

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

func HasWorkflowInstance

func HasWorkflowInstance() predicate.WorkflowObjectRef

HasWorkflowInstance applies the HasEdge predicate on the "workflow_instance" edge.

func HasWorkflowInstanceWith

func HasWorkflowInstanceWith(preds ...predicate.WorkflowInstance) predicate.WorkflowObjectRef

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.WorkflowObjectRef

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.WorkflowObjectRef

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

func IDIn(ids ...string) predicate.WorkflowObjectRef

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.WorkflowObjectRef

IDNotIn applies the NotIn predicate on the ID field.

func InternalPolicyID

func InternalPolicyID(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDContains

func InternalPolicyIDContains(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDContainsFold

func InternalPolicyIDContainsFold(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDEQ

func InternalPolicyIDEQ(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDEqualFold

func InternalPolicyIDEqualFold(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDGT

func InternalPolicyIDGT(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDGTE

func InternalPolicyIDGTE(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDHasPrefix

func InternalPolicyIDHasPrefix(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDHasSuffix

func InternalPolicyIDHasSuffix(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDIn

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

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

func InternalPolicyIDIsNil

func InternalPolicyIDIsNil() predicate.WorkflowObjectRef

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

func InternalPolicyIDLT

func InternalPolicyIDLT(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDLTE

func InternalPolicyIDLTE(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDNEQ

func InternalPolicyIDNEQ(v string) predicate.WorkflowObjectRef

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

func InternalPolicyIDNotIn

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

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

func InternalPolicyIDNotNil

func InternalPolicyIDNotNil() predicate.WorkflowObjectRef

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

func Not

Not applies the not operator on the given predicate.

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

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

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.WorkflowObjectRef

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

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.WorkflowObjectRef

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

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.WorkflowObjectRef

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

func OwnerIDGT

func OwnerIDGT(v string) predicate.WorkflowObjectRef

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

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.WorkflowObjectRef

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

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.WorkflowObjectRef

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

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.WorkflowObjectRef

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

func OwnerIDIn

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

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

func OwnerIDIsNil

func OwnerIDIsNil() predicate.WorkflowObjectRef

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

func OwnerIDLT

func OwnerIDLT(v string) predicate.WorkflowObjectRef

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

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.WorkflowObjectRef

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

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.WorkflowObjectRef

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

func OwnerIDNotIn

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

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

func OwnerIDNotNil

func OwnerIDNotNil() predicate.WorkflowObjectRef

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

func TaskID

TaskID applies equality check predicate on the "task_id" field. It's identical to TaskIDEQ.

func TaskIDContains

func TaskIDContains(v string) predicate.WorkflowObjectRef

TaskIDContains applies the Contains predicate on the "task_id" field.

func TaskIDContainsFold

func TaskIDContainsFold(v string) predicate.WorkflowObjectRef

TaskIDContainsFold applies the ContainsFold predicate on the "task_id" field.

func TaskIDEQ

TaskIDEQ applies the EQ predicate on the "task_id" field.

func TaskIDEqualFold

func TaskIDEqualFold(v string) predicate.WorkflowObjectRef

TaskIDEqualFold applies the EqualFold predicate on the "task_id" field.

func TaskIDGT

TaskIDGT applies the GT predicate on the "task_id" field.

func TaskIDGTE

func TaskIDGTE(v string) predicate.WorkflowObjectRef

TaskIDGTE applies the GTE predicate on the "task_id" field.

func TaskIDHasPrefix

func TaskIDHasPrefix(v string) predicate.WorkflowObjectRef

TaskIDHasPrefix applies the HasPrefix predicate on the "task_id" field.

func TaskIDHasSuffix

func TaskIDHasSuffix(v string) predicate.WorkflowObjectRef

TaskIDHasSuffix applies the HasSuffix predicate on the "task_id" field.

func TaskIDIn

func TaskIDIn(vs ...string) predicate.WorkflowObjectRef

TaskIDIn applies the In predicate on the "task_id" field.

func TaskIDIsNil

func TaskIDIsNil() predicate.WorkflowObjectRef

TaskIDIsNil applies the IsNil predicate on the "task_id" field.

func TaskIDLT

TaskIDLT applies the LT predicate on the "task_id" field.

func TaskIDLTE

func TaskIDLTE(v string) predicate.WorkflowObjectRef

TaskIDLTE applies the LTE predicate on the "task_id" field.

func TaskIDNEQ

func TaskIDNEQ(v string) predicate.WorkflowObjectRef

TaskIDNEQ applies the NEQ predicate on the "task_id" field.

func TaskIDNotIn

func TaskIDNotIn(vs ...string) predicate.WorkflowObjectRef

TaskIDNotIn applies the NotIn predicate on the "task_id" field.

func TaskIDNotNil

func TaskIDNotNil() predicate.WorkflowObjectRef

TaskIDNotNil applies the NotNil predicate on the "task_id" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.WorkflowObjectRef

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.WorkflowObjectRef

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.WorkflowObjectRef

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.WorkflowObjectRef

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.WorkflowObjectRef

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.WorkflowObjectRef

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.WorkflowObjectRef

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.WorkflowObjectRef

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.WorkflowObjectRef

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

func UpdatedBy

func UpdatedBy(v string) predicate.WorkflowObjectRef

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.WorkflowObjectRef

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.WorkflowObjectRef

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.WorkflowObjectRef

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.WorkflowObjectRef

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.WorkflowObjectRef

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.WorkflowObjectRef

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.WorkflowObjectRef

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.WorkflowObjectRef

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.WorkflowObjectRef

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.WorkflowObjectRef

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.WorkflowObjectRef

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.WorkflowObjectRef

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.WorkflowObjectRef

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 WorkflowInstanceID

func WorkflowInstanceID(v string) predicate.WorkflowObjectRef

WorkflowInstanceID applies equality check predicate on the "workflow_instance_id" field. It's identical to WorkflowInstanceIDEQ.

func WorkflowInstanceIDContains

func WorkflowInstanceIDContains(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDContains applies the Contains predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDContainsFold

func WorkflowInstanceIDContainsFold(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDContainsFold applies the ContainsFold predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDEQ

func WorkflowInstanceIDEQ(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDEQ applies the EQ predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDEqualFold

func WorkflowInstanceIDEqualFold(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDEqualFold applies the EqualFold predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDGT

func WorkflowInstanceIDGT(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDGT applies the GT predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDGTE

func WorkflowInstanceIDGTE(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDGTE applies the GTE predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDHasPrefix

func WorkflowInstanceIDHasPrefix(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDHasPrefix applies the HasPrefix predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDHasSuffix

func WorkflowInstanceIDHasSuffix(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDHasSuffix applies the HasSuffix predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDIn

func WorkflowInstanceIDIn(vs ...string) predicate.WorkflowObjectRef

WorkflowInstanceIDIn applies the In predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDLT

func WorkflowInstanceIDLT(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDLT applies the LT predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDLTE

func WorkflowInstanceIDLTE(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDLTE applies the LTE predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDNEQ

func WorkflowInstanceIDNEQ(v string) predicate.WorkflowObjectRef

WorkflowInstanceIDNEQ applies the NEQ predicate on the "workflow_instance_id" field.

func WorkflowInstanceIDNotIn

func WorkflowInstanceIDNotIn(vs ...string) predicate.WorkflowObjectRef

WorkflowInstanceIDNotIn applies the NotIn predicate on the "workflow_instance_id" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the WorkflowObjectRef queries.

func ByControlField

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

ByControlField orders the results by control 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 ByDirectoryAccountField

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

ByDirectoryAccountField orders the results by directory_account field.

func ByDirectoryAccountID

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

ByDirectoryAccountID orders the results by the directory_account_id field.

func ByDirectoryGroupField

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

ByDirectoryGroupField orders the results by directory_group field.

func ByDirectoryGroupID

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

ByDirectoryGroupID orders the results by the directory_group_id field.

func ByDirectoryMembershipField

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

ByDirectoryMembershipField orders the results by directory_membership field.

func ByDirectoryMembershipID

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

ByDirectoryMembershipID orders the results by the directory_membership_id field.

func ByDisplayID

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

ByDisplayID orders the results by the display_id field.

func ByFindingField

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

ByFindingField orders the results by finding field.

func ByFindingID

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

ByFindingID orders the results by the finding_id field.

func ByID

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

ByID orders the results by the id field.

func ByInternalPolicyField

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

ByInternalPolicyField orders the results by internal_policy field.

func ByInternalPolicyID

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

ByInternalPolicyID orders the results by the internal_policy_id field.

func ByOwnerField

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

ByOwnerField orders the results by owner field.

func ByOwnerID

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

ByOwnerID orders the results by the owner_id field.

func ByTaskField

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

ByTaskField orders the results by task field.

func ByTaskID

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

ByTaskID orders the results by the task_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 ByWorkflowInstanceField

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

ByWorkflowInstanceField orders the results by workflow_instance field.

func ByWorkflowInstanceID

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

ByWorkflowInstanceID orders the results by the workflow_instance_id field.

Jump to

Keyboard shortcuts

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