actionplanhistory

package
v0.30.9 Latest Latest
Warning

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

Go to latest
Published: Sep 5, 2025 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the actionplanhistory type in the database.
	Label = "action_plan_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"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// FieldRevision holds the string denoting the revision field in the database.
	FieldRevision = "revision"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldActionPlanType holds the string denoting the action_plan_type field in the database.
	FieldActionPlanType = "action_plan_type"
	// FieldDetails holds the string denoting the details field in the database.
	FieldDetails = "details"
	// FieldApprovalRequired holds the string denoting the approval_required field in the database.
	FieldApprovalRequired = "approval_required"
	// FieldReviewDue holds the string denoting the review_due field in the database.
	FieldReviewDue = "review_due"
	// FieldReviewFrequency holds the string denoting the review_frequency field in the database.
	FieldReviewFrequency = "review_frequency"
	// FieldApproverID holds the string denoting the approver_id field in the database.
	FieldApproverID = "approver_id"
	// FieldDelegateID holds the string denoting the delegate_id field in the database.
	FieldDelegateID = "delegate_id"
	// FieldSummary holds the string denoting the summary field in the database.
	FieldSummary = "summary"
	// FieldTagSuggestions holds the string denoting the tag_suggestions field in the database.
	FieldTagSuggestions = "tag_suggestions"
	// FieldDismissedTagSuggestions holds the string denoting the dismissed_tag_suggestions field in the database.
	FieldDismissedTagSuggestions = "dismissed_tag_suggestions"
	// FieldControlSuggestions holds the string denoting the control_suggestions field in the database.
	FieldControlSuggestions = "control_suggestions"
	// FieldDismissedControlSuggestions holds the string denoting the dismissed_control_suggestions field in the database.
	FieldDismissedControlSuggestions = "dismissed_control_suggestions"
	// FieldImprovementSuggestions holds the string denoting the improvement_suggestions field in the database.
	FieldImprovementSuggestions = "improvement_suggestions"
	// FieldDismissedImprovementSuggestions holds the string denoting the dismissed_improvement_suggestions field in the database.
	FieldDismissedImprovementSuggestions = "dismissed_improvement_suggestions"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldDueDate holds the string denoting the due_date field in the database.
	FieldDueDate = "due_date"
	// FieldPriority holds the string denoting the priority field in the database.
	FieldPriority = "priority"
	// FieldSource holds the string denoting the source field in the database.
	FieldSource = "source"
	// Table holds the table name of the actionplanhistory in the database.
	Table = "action_plan_history"
)
View Source
const DefaultReviewFrequency enums.Frequency = "YEARLY"
View Source
const DefaultStatus enums.DocumentStatus = "DRAFT"

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
	// DefaultRevision holds the default value on creation for the "revision" field.
	DefaultRevision string
	// DefaultApprovalRequired holds the default value on creation for the "approval_required" field.
	DefaultApprovalRequired bool
	// DefaultReviewDue holds the default value on creation for the "review_due" field.
	DefaultReviewDue time.Time
	// DefaultTagSuggestions holds the default value on creation for the "tag_suggestions" field.
	DefaultTagSuggestions []string
	// DefaultDismissedTagSuggestions holds the default value on creation for the "dismissed_tag_suggestions" field.
	DefaultDismissedTagSuggestions []string
	// DefaultControlSuggestions holds the default value on creation for the "control_suggestions" field.
	DefaultControlSuggestions []string
	// DefaultDismissedControlSuggestions holds the default value on creation for the "dismissed_control_suggestions" field.
	DefaultDismissedControlSuggestions []string
	// DefaultImprovementSuggestions holds the default value on creation for the "improvement_suggestions" field.
	DefaultImprovementSuggestions []string
	// DefaultDismissedImprovementSuggestions holds the default value on creation for the "dismissed_improvement_suggestions" field.
	DefaultDismissedImprovementSuggestions []string
	// 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 actionplanhistory fields.

Functions

func ActionPlanType added in v0.7.5

func ActionPlanType(v string) predicate.ActionPlanHistory

ActionPlanType applies equality check predicate on the "action_plan_type" field. It's identical to ActionPlanTypeEQ.

func ActionPlanTypeContains added in v0.7.5

func ActionPlanTypeContains(v string) predicate.ActionPlanHistory

ActionPlanTypeContains applies the Contains predicate on the "action_plan_type" field.

func ActionPlanTypeContainsFold added in v0.7.5

func ActionPlanTypeContainsFold(v string) predicate.ActionPlanHistory

ActionPlanTypeContainsFold applies the ContainsFold predicate on the "action_plan_type" field.

func ActionPlanTypeEQ added in v0.7.5

func ActionPlanTypeEQ(v string) predicate.ActionPlanHistory

ActionPlanTypeEQ applies the EQ predicate on the "action_plan_type" field.

func ActionPlanTypeEqualFold added in v0.7.5

func ActionPlanTypeEqualFold(v string) predicate.ActionPlanHistory

ActionPlanTypeEqualFold applies the EqualFold predicate on the "action_plan_type" field.

func ActionPlanTypeGT added in v0.7.5

func ActionPlanTypeGT(v string) predicate.ActionPlanHistory

ActionPlanTypeGT applies the GT predicate on the "action_plan_type" field.

func ActionPlanTypeGTE added in v0.7.5

func ActionPlanTypeGTE(v string) predicate.ActionPlanHistory

ActionPlanTypeGTE applies the GTE predicate on the "action_plan_type" field.

func ActionPlanTypeHasPrefix added in v0.7.5

func ActionPlanTypeHasPrefix(v string) predicate.ActionPlanHistory

ActionPlanTypeHasPrefix applies the HasPrefix predicate on the "action_plan_type" field.

func ActionPlanTypeHasSuffix added in v0.7.5

func ActionPlanTypeHasSuffix(v string) predicate.ActionPlanHistory

ActionPlanTypeHasSuffix applies the HasSuffix predicate on the "action_plan_type" field.

func ActionPlanTypeIn added in v0.7.5

func ActionPlanTypeIn(vs ...string) predicate.ActionPlanHistory

ActionPlanTypeIn applies the In predicate on the "action_plan_type" field.

func ActionPlanTypeIsNil added in v0.7.5

func ActionPlanTypeIsNil() predicate.ActionPlanHistory

ActionPlanTypeIsNil applies the IsNil predicate on the "action_plan_type" field.

func ActionPlanTypeLT added in v0.7.5

func ActionPlanTypeLT(v string) predicate.ActionPlanHistory

ActionPlanTypeLT applies the LT predicate on the "action_plan_type" field.

func ActionPlanTypeLTE added in v0.7.5

func ActionPlanTypeLTE(v string) predicate.ActionPlanHistory

ActionPlanTypeLTE applies the LTE predicate on the "action_plan_type" field.

func ActionPlanTypeNEQ added in v0.7.5

func ActionPlanTypeNEQ(v string) predicate.ActionPlanHistory

ActionPlanTypeNEQ applies the NEQ predicate on the "action_plan_type" field.

func ActionPlanTypeNotIn added in v0.7.5

func ActionPlanTypeNotIn(vs ...string) predicate.ActionPlanHistory

ActionPlanTypeNotIn applies the NotIn predicate on the "action_plan_type" field.

func ActionPlanTypeNotNil added in v0.7.5

func ActionPlanTypeNotNil() predicate.ActionPlanHistory

ActionPlanTypeNotNil applies the NotNil predicate on the "action_plan_type" field.

func And

And groups predicates with the AND operator between them.

func ApprovalRequired added in v0.7.5

func ApprovalRequired(v bool) predicate.ActionPlanHistory

ApprovalRequired applies equality check predicate on the "approval_required" field. It's identical to ApprovalRequiredEQ.

func ApprovalRequiredEQ added in v0.7.5

func ApprovalRequiredEQ(v bool) predicate.ActionPlanHistory

ApprovalRequiredEQ applies the EQ predicate on the "approval_required" field.

func ApprovalRequiredIsNil added in v0.7.5

func ApprovalRequiredIsNil() predicate.ActionPlanHistory

ApprovalRequiredIsNil applies the IsNil predicate on the "approval_required" field.

func ApprovalRequiredNEQ added in v0.7.5

func ApprovalRequiredNEQ(v bool) predicate.ActionPlanHistory

ApprovalRequiredNEQ applies the NEQ predicate on the "approval_required" field.

func ApprovalRequiredNotNil added in v0.7.5

func ApprovalRequiredNotNil() predicate.ActionPlanHistory

ApprovalRequiredNotNil applies the NotNil predicate on the "approval_required" field.

func ApproverID added in v0.8.9

func ApproverID(v string) predicate.ActionPlanHistory

ApproverID applies equality check predicate on the "approver_id" field. It's identical to ApproverIDEQ.

func ApproverIDContains added in v0.8.9

func ApproverIDContains(v string) predicate.ActionPlanHistory

ApproverIDContains applies the Contains predicate on the "approver_id" field.

func ApproverIDContainsFold added in v0.8.9

func ApproverIDContainsFold(v string) predicate.ActionPlanHistory

ApproverIDContainsFold applies the ContainsFold predicate on the "approver_id" field.

func ApproverIDEQ added in v0.8.9

func ApproverIDEQ(v string) predicate.ActionPlanHistory

ApproverIDEQ applies the EQ predicate on the "approver_id" field.

func ApproverIDEqualFold added in v0.8.9

func ApproverIDEqualFold(v string) predicate.ActionPlanHistory

ApproverIDEqualFold applies the EqualFold predicate on the "approver_id" field.

func ApproverIDGT added in v0.8.9

func ApproverIDGT(v string) predicate.ActionPlanHistory

ApproverIDGT applies the GT predicate on the "approver_id" field.

func ApproverIDGTE added in v0.8.9

func ApproverIDGTE(v string) predicate.ActionPlanHistory

ApproverIDGTE applies the GTE predicate on the "approver_id" field.

func ApproverIDHasPrefix added in v0.8.9

func ApproverIDHasPrefix(v string) predicate.ActionPlanHistory

ApproverIDHasPrefix applies the HasPrefix predicate on the "approver_id" field.

func ApproverIDHasSuffix added in v0.8.9

func ApproverIDHasSuffix(v string) predicate.ActionPlanHistory

ApproverIDHasSuffix applies the HasSuffix predicate on the "approver_id" field.

func ApproverIDIn added in v0.8.9

func ApproverIDIn(vs ...string) predicate.ActionPlanHistory

ApproverIDIn applies the In predicate on the "approver_id" field.

func ApproverIDIsNil added in v0.8.9

func ApproverIDIsNil() predicate.ActionPlanHistory

ApproverIDIsNil applies the IsNil predicate on the "approver_id" field.

func ApproverIDLT added in v0.8.9

func ApproverIDLT(v string) predicate.ActionPlanHistory

ApproverIDLT applies the LT predicate on the "approver_id" field.

func ApproverIDLTE added in v0.8.9

func ApproverIDLTE(v string) predicate.ActionPlanHistory

ApproverIDLTE applies the LTE predicate on the "approver_id" field.

func ApproverIDNEQ added in v0.8.9

func ApproverIDNEQ(v string) predicate.ActionPlanHistory

ApproverIDNEQ applies the NEQ predicate on the "approver_id" field.

func ApproverIDNotIn added in v0.8.9

func ApproverIDNotIn(vs ...string) predicate.ActionPlanHistory

ApproverIDNotIn applies the NotIn predicate on the "approver_id" field.

func ApproverIDNotNil added in v0.8.9

func ApproverIDNotNil() predicate.ActionPlanHistory

ApproverIDNotNil applies the NotNil predicate on the "approver_id" field.

func ControlSuggestionsIsNil added in v0.19.0

func ControlSuggestionsIsNil() predicate.ActionPlanHistory

ControlSuggestionsIsNil applies the IsNil predicate on the "control_suggestions" field.

func ControlSuggestionsNotNil added in v0.19.0

func ControlSuggestionsNotNil() predicate.ActionPlanHistory

ControlSuggestionsNotNil applies the NotNil predicate on the "control_suggestions" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.ActionPlanHistory

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ActionPlanHistory

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ActionPlanHistory

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ActionPlanHistory

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.ActionPlanHistory

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ActionPlanHistory

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ActionPlanHistory

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ActionPlanHistory

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.ActionPlanHistory

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

func CreatedBy

func CreatedBy(v string) predicate.ActionPlanHistory

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

func CreatedByContains

func CreatedByContains(v string) predicate.ActionPlanHistory

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.ActionPlanHistory

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.ActionPlanHistory

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.ActionPlanHistory

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

func CreatedByGT

func CreatedByGT(v string) predicate.ActionPlanHistory

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.ActionPlanHistory

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.ActionPlanHistory

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.ActionPlanHistory

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.ActionPlanHistory

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

func CreatedByLT

func CreatedByLT(v string) predicate.ActionPlanHistory

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.ActionPlanHistory

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.ActionPlanHistory

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.ActionPlanHistory

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

func DelegateID added in v0.8.9

func DelegateID(v string) predicate.ActionPlanHistory

DelegateID applies equality check predicate on the "delegate_id" field. It's identical to DelegateIDEQ.

func DelegateIDContains added in v0.8.9

func DelegateIDContains(v string) predicate.ActionPlanHistory

DelegateIDContains applies the Contains predicate on the "delegate_id" field.

func DelegateIDContainsFold added in v0.8.9

func DelegateIDContainsFold(v string) predicate.ActionPlanHistory

DelegateIDContainsFold applies the ContainsFold predicate on the "delegate_id" field.

func DelegateIDEQ added in v0.8.9

func DelegateIDEQ(v string) predicate.ActionPlanHistory

DelegateIDEQ applies the EQ predicate on the "delegate_id" field.

func DelegateIDEqualFold added in v0.8.9

func DelegateIDEqualFold(v string) predicate.ActionPlanHistory

DelegateIDEqualFold applies the EqualFold predicate on the "delegate_id" field.

func DelegateIDGT added in v0.8.9

func DelegateIDGT(v string) predicate.ActionPlanHistory

DelegateIDGT applies the GT predicate on the "delegate_id" field.

func DelegateIDGTE added in v0.8.9

func DelegateIDGTE(v string) predicate.ActionPlanHistory

DelegateIDGTE applies the GTE predicate on the "delegate_id" field.

func DelegateIDHasPrefix added in v0.8.9

func DelegateIDHasPrefix(v string) predicate.ActionPlanHistory

DelegateIDHasPrefix applies the HasPrefix predicate on the "delegate_id" field.

func DelegateIDHasSuffix added in v0.8.9

func DelegateIDHasSuffix(v string) predicate.ActionPlanHistory

DelegateIDHasSuffix applies the HasSuffix predicate on the "delegate_id" field.

func DelegateIDIn added in v0.8.9

func DelegateIDIn(vs ...string) predicate.ActionPlanHistory

DelegateIDIn applies the In predicate on the "delegate_id" field.

func DelegateIDIsNil added in v0.8.9

func DelegateIDIsNil() predicate.ActionPlanHistory

DelegateIDIsNil applies the IsNil predicate on the "delegate_id" field.

func DelegateIDLT added in v0.8.9

func DelegateIDLT(v string) predicate.ActionPlanHistory

DelegateIDLT applies the LT predicate on the "delegate_id" field.

func DelegateIDLTE added in v0.8.9

func DelegateIDLTE(v string) predicate.ActionPlanHistory

DelegateIDLTE applies the LTE predicate on the "delegate_id" field.

func DelegateIDNEQ added in v0.8.9

func DelegateIDNEQ(v string) predicate.ActionPlanHistory

DelegateIDNEQ applies the NEQ predicate on the "delegate_id" field.

func DelegateIDNotIn added in v0.8.9

func DelegateIDNotIn(vs ...string) predicate.ActionPlanHistory

DelegateIDNotIn applies the NotIn predicate on the "delegate_id" field.

func DelegateIDNotNil added in v0.8.9

func DelegateIDNotNil() predicate.ActionPlanHistory

DelegateIDNotNil applies the NotNil predicate on the "delegate_id" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.ActionPlanHistory

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.ActionPlanHistory

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.ActionPlanHistory

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.ActionPlanHistory

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.ActionPlanHistory

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.ActionPlanHistory

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.ActionPlanHistory

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.ActionPlanHistory

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.ActionPlanHistory

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

func DeletedBy

func DeletedBy(v string) predicate.ActionPlanHistory

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

func DeletedByContains

func DeletedByContains(v string) predicate.ActionPlanHistory

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.ActionPlanHistory

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.ActionPlanHistory

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.ActionPlanHistory

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

func DeletedByGT

func DeletedByGT(v string) predicate.ActionPlanHistory

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.ActionPlanHistory

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.ActionPlanHistory

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.ActionPlanHistory

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.ActionPlanHistory

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

func DeletedByLT

func DeletedByLT(v string) predicate.ActionPlanHistory

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.ActionPlanHistory

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.ActionPlanHistory

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.ActionPlanHistory

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

func Details added in v0.7.5

Details applies equality check predicate on the "details" field. It's identical to DetailsEQ.

func DetailsContains added in v0.7.5

func DetailsContains(v string) predicate.ActionPlanHistory

DetailsContains applies the Contains predicate on the "details" field.

func DetailsContainsFold added in v0.7.5

func DetailsContainsFold(v string) predicate.ActionPlanHistory

DetailsContainsFold applies the ContainsFold predicate on the "details" field.

func DetailsEQ added in v0.7.5

func DetailsEQ(v string) predicate.ActionPlanHistory

DetailsEQ applies the EQ predicate on the "details" field.

func DetailsEqualFold added in v0.7.5

func DetailsEqualFold(v string) predicate.ActionPlanHistory

DetailsEqualFold applies the EqualFold predicate on the "details" field.

func DetailsGT added in v0.7.5

func DetailsGT(v string) predicate.ActionPlanHistory

DetailsGT applies the GT predicate on the "details" field.

func DetailsGTE added in v0.7.5

func DetailsGTE(v string) predicate.ActionPlanHistory

DetailsGTE applies the GTE predicate on the "details" field.

func DetailsHasPrefix added in v0.7.5

func DetailsHasPrefix(v string) predicate.ActionPlanHistory

DetailsHasPrefix applies the HasPrefix predicate on the "details" field.

func DetailsHasSuffix added in v0.7.5

func DetailsHasSuffix(v string) predicate.ActionPlanHistory

DetailsHasSuffix applies the HasSuffix predicate on the "details" field.

func DetailsIn added in v0.7.5

func DetailsIn(vs ...string) predicate.ActionPlanHistory

DetailsIn applies the In predicate on the "details" field.

func DetailsIsNil

func DetailsIsNil() predicate.ActionPlanHistory

DetailsIsNil applies the IsNil predicate on the "details" field.

func DetailsLT added in v0.7.5

func DetailsLT(v string) predicate.ActionPlanHistory

DetailsLT applies the LT predicate on the "details" field.

func DetailsLTE added in v0.7.5

func DetailsLTE(v string) predicate.ActionPlanHistory

DetailsLTE applies the LTE predicate on the "details" field.

func DetailsNEQ added in v0.7.5

func DetailsNEQ(v string) predicate.ActionPlanHistory

DetailsNEQ applies the NEQ predicate on the "details" field.

func DetailsNotIn added in v0.7.5

func DetailsNotIn(vs ...string) predicate.ActionPlanHistory

DetailsNotIn applies the NotIn predicate on the "details" field.

func DetailsNotNil

func DetailsNotNil() predicate.ActionPlanHistory

DetailsNotNil applies the NotNil predicate on the "details" field.

func DismissedControlSuggestionsIsNil added in v0.19.0

func DismissedControlSuggestionsIsNil() predicate.ActionPlanHistory

DismissedControlSuggestionsIsNil applies the IsNil predicate on the "dismissed_control_suggestions" field.

func DismissedControlSuggestionsNotNil added in v0.19.0

func DismissedControlSuggestionsNotNil() predicate.ActionPlanHistory

DismissedControlSuggestionsNotNil applies the NotNil predicate on the "dismissed_control_suggestions" field.

func DismissedImprovementSuggestionsIsNil added in v0.19.0

func DismissedImprovementSuggestionsIsNil() predicate.ActionPlanHistory

DismissedImprovementSuggestionsIsNil applies the IsNil predicate on the "dismissed_improvement_suggestions" field.

func DismissedImprovementSuggestionsNotNil added in v0.19.0

func DismissedImprovementSuggestionsNotNil() predicate.ActionPlanHistory

DismissedImprovementSuggestionsNotNil applies the NotNil predicate on the "dismissed_improvement_suggestions" field.

func DismissedTagSuggestionsIsNil added in v0.19.0

func DismissedTagSuggestionsIsNil() predicate.ActionPlanHistory

DismissedTagSuggestionsIsNil applies the IsNil predicate on the "dismissed_tag_suggestions" field.

func DismissedTagSuggestionsNotNil added in v0.19.0

func DismissedTagSuggestionsNotNil() predicate.ActionPlanHistory

DismissedTagSuggestionsNotNil applies the NotNil predicate on the "dismissed_tag_suggestions" field.

func DueDate

DueDate applies equality check predicate on the "due_date" field. It's identical to DueDateEQ.

func DueDateEQ

func DueDateEQ(v time.Time) predicate.ActionPlanHistory

DueDateEQ applies the EQ predicate on the "due_date" field.

func DueDateGT

func DueDateGT(v time.Time) predicate.ActionPlanHistory

DueDateGT applies the GT predicate on the "due_date" field.

func DueDateGTE

func DueDateGTE(v time.Time) predicate.ActionPlanHistory

DueDateGTE applies the GTE predicate on the "due_date" field.

func DueDateIn

func DueDateIn(vs ...time.Time) predicate.ActionPlanHistory

DueDateIn applies the In predicate on the "due_date" field.

func DueDateIsNil

func DueDateIsNil() predicate.ActionPlanHistory

DueDateIsNil applies the IsNil predicate on the "due_date" field.

func DueDateLT

func DueDateLT(v time.Time) predicate.ActionPlanHistory

DueDateLT applies the LT predicate on the "due_date" field.

func DueDateLTE

func DueDateLTE(v time.Time) predicate.ActionPlanHistory

DueDateLTE applies the LTE predicate on the "due_date" field.

func DueDateNEQ

func DueDateNEQ(v time.Time) predicate.ActionPlanHistory

DueDateNEQ applies the NEQ predicate on the "due_date" field.

func DueDateNotIn

func DueDateNotIn(vs ...time.Time) predicate.ActionPlanHistory

DueDateNotIn applies the NotIn predicate on the "due_date" field.

func DueDateNotNil

func DueDateNotNil() predicate.ActionPlanHistory

DueDateNotNil applies the NotNil predicate on the "due_date" field.

func HistoryTime

func HistoryTime(v time.Time) predicate.ActionPlanHistory

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

func HistoryTimeEQ

func HistoryTimeEQ(v time.Time) predicate.ActionPlanHistory

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

func HistoryTimeGT

func HistoryTimeGT(v time.Time) predicate.ActionPlanHistory

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

func HistoryTimeGTE

func HistoryTimeGTE(v time.Time) predicate.ActionPlanHistory

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

func HistoryTimeIn

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

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

func HistoryTimeLT

func HistoryTimeLT(v time.Time) predicate.ActionPlanHistory

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

func HistoryTimeLTE

func HistoryTimeLTE(v time.Time) predicate.ActionPlanHistory

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

func HistoryTimeNEQ

func HistoryTimeNEQ(v time.Time) predicate.ActionPlanHistory

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

func HistoryTimeNotIn

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

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

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

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

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

IDNotIn applies the NotIn predicate on the ID field.

func ImprovementSuggestionsIsNil added in v0.19.0

func ImprovementSuggestionsIsNil() predicate.ActionPlanHistory

ImprovementSuggestionsIsNil applies the IsNil predicate on the "improvement_suggestions" field.

func ImprovementSuggestionsNotNil added in v0.19.0

func ImprovementSuggestionsNotNil() predicate.ActionPlanHistory

ImprovementSuggestionsNotNil applies the NotNil predicate on the "improvement_suggestions" field.

func Name

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

func NameContains

func NameContains(v string) predicate.ActionPlanHistory

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

func NameContainsFold

func NameContainsFold(v string) predicate.ActionPlanHistory

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

func NameEQ

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

func NameEqualFold

func NameEqualFold(v string) predicate.ActionPlanHistory

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

func NameGT

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

func NameGTE

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.ActionPlanHistory

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.ActionPlanHistory

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

func NameIn

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

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

func NameLT

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

func NameLTE

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

func NameNEQ

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

func NameNotIn

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

NameNotIn applies the NotIn predicate on the "name" 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

func OperationIn(vs ...history.OpType) predicate.ActionPlanHistory

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

func OperationNEQ

func OperationNEQ(v history.OpType) predicate.ActionPlanHistory

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

func OperationNotIn

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

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 added in v0.7.5

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

func OwnerIDContains added in v0.7.5

func OwnerIDContains(v string) predicate.ActionPlanHistory

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

func OwnerIDContainsFold added in v0.7.5

func OwnerIDContainsFold(v string) predicate.ActionPlanHistory

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

func OwnerIDEQ added in v0.7.5

func OwnerIDEQ(v string) predicate.ActionPlanHistory

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

func OwnerIDEqualFold added in v0.7.5

func OwnerIDEqualFold(v string) predicate.ActionPlanHistory

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

func OwnerIDGT added in v0.7.5

func OwnerIDGT(v string) predicate.ActionPlanHistory

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

func OwnerIDGTE added in v0.7.5

func OwnerIDGTE(v string) predicate.ActionPlanHistory

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

func OwnerIDHasPrefix added in v0.7.5

func OwnerIDHasPrefix(v string) predicate.ActionPlanHistory

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

func OwnerIDHasSuffix added in v0.7.5

func OwnerIDHasSuffix(v string) predicate.ActionPlanHistory

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

func OwnerIDIn added in v0.7.5

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

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

func OwnerIDIsNil added in v0.7.5

func OwnerIDIsNil() predicate.ActionPlanHistory

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

func OwnerIDLT added in v0.7.5

func OwnerIDLT(v string) predicate.ActionPlanHistory

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

func OwnerIDLTE added in v0.7.5

func OwnerIDLTE(v string) predicate.ActionPlanHistory

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

func OwnerIDNEQ added in v0.7.5

func OwnerIDNEQ(v string) predicate.ActionPlanHistory

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

func OwnerIDNotIn added in v0.7.5

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

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

func OwnerIDNotNil added in v0.7.5

func OwnerIDNotNil() predicate.ActionPlanHistory

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

func PriorityEQ

PriorityEQ applies the EQ predicate on the "priority" field.

func PriorityIn

func PriorityIn(vs ...enums.Priority) predicate.ActionPlanHistory

PriorityIn applies the In predicate on the "priority" field.

func PriorityIsNil

func PriorityIsNil() predicate.ActionPlanHistory

PriorityIsNil applies the IsNil predicate on the "priority" field.

func PriorityNEQ

PriorityNEQ applies the NEQ predicate on the "priority" field.

func PriorityNotIn

func PriorityNotIn(vs ...enums.Priority) predicate.ActionPlanHistory

PriorityNotIn applies the NotIn predicate on the "priority" field.

func PriorityNotNil

func PriorityNotNil() predicate.ActionPlanHistory

PriorityNotNil applies the NotNil predicate on the "priority" field.

func PriorityValidator added in v0.7.5

func PriorityValidator(pr enums.Priority) error

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

func Ref

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

func RefContains

func RefContains(v string) predicate.ActionPlanHistory

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

func RefContainsFold

func RefContainsFold(v string) predicate.ActionPlanHistory

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

func RefEQ

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

func RefEqualFold

func RefEqualFold(v string) predicate.ActionPlanHistory

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

func RefHasPrefix(v string) predicate.ActionPlanHistory

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

func RefHasSuffix

func RefHasSuffix(v string) predicate.ActionPlanHistory

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

func RefIn

func RefIn(vs ...string) predicate.ActionPlanHistory

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

func RefIsNil

func RefIsNil() predicate.ActionPlanHistory

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

func RefNotIn(vs ...string) predicate.ActionPlanHistory

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

func RefNotNil

func RefNotNil() predicate.ActionPlanHistory

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

func ReviewDue added in v0.7.5

func ReviewDue(v time.Time) predicate.ActionPlanHistory

ReviewDue applies equality check predicate on the "review_due" field. It's identical to ReviewDueEQ.

func ReviewDueEQ added in v0.7.5

func ReviewDueEQ(v time.Time) predicate.ActionPlanHistory

ReviewDueEQ applies the EQ predicate on the "review_due" field.

func ReviewDueGT added in v0.7.5

func ReviewDueGT(v time.Time) predicate.ActionPlanHistory

ReviewDueGT applies the GT predicate on the "review_due" field.

func ReviewDueGTE added in v0.7.5

func ReviewDueGTE(v time.Time) predicate.ActionPlanHistory

ReviewDueGTE applies the GTE predicate on the "review_due" field.

func ReviewDueIn added in v0.7.5

func ReviewDueIn(vs ...time.Time) predicate.ActionPlanHistory

ReviewDueIn applies the In predicate on the "review_due" field.

func ReviewDueIsNil added in v0.7.5

func ReviewDueIsNil() predicate.ActionPlanHistory

ReviewDueIsNil applies the IsNil predicate on the "review_due" field.

func ReviewDueLT added in v0.7.5

func ReviewDueLT(v time.Time) predicate.ActionPlanHistory

ReviewDueLT applies the LT predicate on the "review_due" field.

func ReviewDueLTE added in v0.7.5

func ReviewDueLTE(v time.Time) predicate.ActionPlanHistory

ReviewDueLTE applies the LTE predicate on the "review_due" field.

func ReviewDueNEQ added in v0.7.5

func ReviewDueNEQ(v time.Time) predicate.ActionPlanHistory

ReviewDueNEQ applies the NEQ predicate on the "review_due" field.

func ReviewDueNotIn added in v0.7.5

func ReviewDueNotIn(vs ...time.Time) predicate.ActionPlanHistory

ReviewDueNotIn applies the NotIn predicate on the "review_due" field.

func ReviewDueNotNil added in v0.7.5

func ReviewDueNotNil() predicate.ActionPlanHistory

ReviewDueNotNil applies the NotNil predicate on the "review_due" field.

func ReviewFrequencyEQ added in v0.7.5

func ReviewFrequencyEQ(v enums.Frequency) predicate.ActionPlanHistory

ReviewFrequencyEQ applies the EQ predicate on the "review_frequency" field.

func ReviewFrequencyIn added in v0.7.5

func ReviewFrequencyIn(vs ...enums.Frequency) predicate.ActionPlanHistory

ReviewFrequencyIn applies the In predicate on the "review_frequency" field.

func ReviewFrequencyIsNil added in v0.7.5

func ReviewFrequencyIsNil() predicate.ActionPlanHistory

ReviewFrequencyIsNil applies the IsNil predicate on the "review_frequency" field.

func ReviewFrequencyNEQ added in v0.7.5

func ReviewFrequencyNEQ(v enums.Frequency) predicate.ActionPlanHistory

ReviewFrequencyNEQ applies the NEQ predicate on the "review_frequency" field.

func ReviewFrequencyNotIn added in v0.7.5

func ReviewFrequencyNotIn(vs ...enums.Frequency) predicate.ActionPlanHistory

ReviewFrequencyNotIn applies the NotIn predicate on the "review_frequency" field.

func ReviewFrequencyNotNil added in v0.7.5

func ReviewFrequencyNotNil() predicate.ActionPlanHistory

ReviewFrequencyNotNil applies the NotNil predicate on the "review_frequency" field.

func ReviewFrequencyValidator added in v0.7.5

func ReviewFrequencyValidator(rf enums.Frequency) error

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

func Revision added in v0.7.5

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

func RevisionContains added in v0.7.5

func RevisionContains(v string) predicate.ActionPlanHistory

RevisionContains applies the Contains predicate on the "revision" field.

func RevisionContainsFold added in v0.7.5

func RevisionContainsFold(v string) predicate.ActionPlanHistory

RevisionContainsFold applies the ContainsFold predicate on the "revision" field.

func RevisionEQ added in v0.7.5

func RevisionEQ(v string) predicate.ActionPlanHistory

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

func RevisionEqualFold added in v0.7.5

func RevisionEqualFold(v string) predicate.ActionPlanHistory

RevisionEqualFold applies the EqualFold predicate on the "revision" field.

func RevisionGT added in v0.7.5

func RevisionGT(v string) predicate.ActionPlanHistory

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

func RevisionGTE added in v0.7.5

func RevisionGTE(v string) predicate.ActionPlanHistory

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

func RevisionHasPrefix added in v0.7.5

func RevisionHasPrefix(v string) predicate.ActionPlanHistory

RevisionHasPrefix applies the HasPrefix predicate on the "revision" field.

func RevisionHasSuffix added in v0.7.5

func RevisionHasSuffix(v string) predicate.ActionPlanHistory

RevisionHasSuffix applies the HasSuffix predicate on the "revision" field.

func RevisionIn added in v0.7.5

func RevisionIn(vs ...string) predicate.ActionPlanHistory

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

func RevisionIsNil added in v0.7.5

func RevisionIsNil() predicate.ActionPlanHistory

RevisionIsNil applies the IsNil predicate on the "revision" field.

func RevisionLT added in v0.7.5

func RevisionLT(v string) predicate.ActionPlanHistory

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

func RevisionLTE added in v0.7.5

func RevisionLTE(v string) predicate.ActionPlanHistory

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

func RevisionNEQ added in v0.7.5

func RevisionNEQ(v string) predicate.ActionPlanHistory

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

func RevisionNotIn added in v0.7.5

func RevisionNotIn(vs ...string) predicate.ActionPlanHistory

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

func RevisionNotNil added in v0.7.5

func RevisionNotNil() predicate.ActionPlanHistory

RevisionNotNil applies the NotNil predicate on the "revision" field.

func Source

Source applies equality check predicate on the "source" field. It's identical to SourceEQ.

func SourceContains

func SourceContains(v string) predicate.ActionPlanHistory

SourceContains applies the Contains predicate on the "source" field.

func SourceContainsFold

func SourceContainsFold(v string) predicate.ActionPlanHistory

SourceContainsFold applies the ContainsFold predicate on the "source" field.

func SourceEQ

SourceEQ applies the EQ predicate on the "source" field.

func SourceEqualFold

func SourceEqualFold(v string) predicate.ActionPlanHistory

SourceEqualFold applies the EqualFold predicate on the "source" field.

func SourceGT

SourceGT applies the GT predicate on the "source" field.

func SourceGTE

func SourceGTE(v string) predicate.ActionPlanHistory

SourceGTE applies the GTE predicate on the "source" field.

func SourceHasPrefix

func SourceHasPrefix(v string) predicate.ActionPlanHistory

SourceHasPrefix applies the HasPrefix predicate on the "source" field.

func SourceHasSuffix

func SourceHasSuffix(v string) predicate.ActionPlanHistory

SourceHasSuffix applies the HasSuffix predicate on the "source" field.

func SourceIn

func SourceIn(vs ...string) predicate.ActionPlanHistory

SourceIn applies the In predicate on the "source" field.

func SourceIsNil

func SourceIsNil() predicate.ActionPlanHistory

SourceIsNil applies the IsNil predicate on the "source" field.

func SourceLT

SourceLT applies the LT predicate on the "source" field.

func SourceLTE

func SourceLTE(v string) predicate.ActionPlanHistory

SourceLTE applies the LTE predicate on the "source" field.

func SourceNEQ

func SourceNEQ(v string) predicate.ActionPlanHistory

SourceNEQ applies the NEQ predicate on the "source" field.

func SourceNotIn

func SourceNotIn(vs ...string) predicate.ActionPlanHistory

SourceNotIn applies the NotIn predicate on the "source" field.

func SourceNotNil

func SourceNotNil() predicate.ActionPlanHistory

SourceNotNil applies the NotNil predicate on the "source" field.

func StatusEQ

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

func StatusIn

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

func StatusIsNil

func StatusIsNil() predicate.ActionPlanHistory

StatusIsNil applies the IsNil predicate on the "status" field.

func StatusNEQ

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

func StatusNotIn

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

func StatusNotNil

func StatusNotNil() predicate.ActionPlanHistory

StatusNotNil applies the NotNil predicate on the "status" field.

func StatusValidator added in v0.7.5

func StatusValidator(s enums.DocumentStatus) error

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

func Summary added in v0.11.0

Summary applies equality check predicate on the "summary" field. It's identical to SummaryEQ.

func SummaryContains added in v0.11.0

func SummaryContains(v string) predicate.ActionPlanHistory

SummaryContains applies the Contains predicate on the "summary" field.

func SummaryContainsFold added in v0.11.0

func SummaryContainsFold(v string) predicate.ActionPlanHistory

SummaryContainsFold applies the ContainsFold predicate on the "summary" field.

func SummaryEQ added in v0.11.0

func SummaryEQ(v string) predicate.ActionPlanHistory

SummaryEQ applies the EQ predicate on the "summary" field.

func SummaryEqualFold added in v0.11.0

func SummaryEqualFold(v string) predicate.ActionPlanHistory

SummaryEqualFold applies the EqualFold predicate on the "summary" field.

func SummaryGT added in v0.11.0

func SummaryGT(v string) predicate.ActionPlanHistory

SummaryGT applies the GT predicate on the "summary" field.

func SummaryGTE added in v0.11.0

func SummaryGTE(v string) predicate.ActionPlanHistory

SummaryGTE applies the GTE predicate on the "summary" field.

func SummaryHasPrefix added in v0.11.0

func SummaryHasPrefix(v string) predicate.ActionPlanHistory

SummaryHasPrefix applies the HasPrefix predicate on the "summary" field.

func SummaryHasSuffix added in v0.11.0

func SummaryHasSuffix(v string) predicate.ActionPlanHistory

SummaryHasSuffix applies the HasSuffix predicate on the "summary" field.

func SummaryIn added in v0.11.0

func SummaryIn(vs ...string) predicate.ActionPlanHistory

SummaryIn applies the In predicate on the "summary" field.

func SummaryIsNil added in v0.11.0

func SummaryIsNil() predicate.ActionPlanHistory

SummaryIsNil applies the IsNil predicate on the "summary" field.

func SummaryLT added in v0.11.0

func SummaryLT(v string) predicate.ActionPlanHistory

SummaryLT applies the LT predicate on the "summary" field.

func SummaryLTE added in v0.11.0

func SummaryLTE(v string) predicate.ActionPlanHistory

SummaryLTE applies the LTE predicate on the "summary" field.

func SummaryNEQ added in v0.11.0

func SummaryNEQ(v string) predicate.ActionPlanHistory

SummaryNEQ applies the NEQ predicate on the "summary" field.

func SummaryNotIn added in v0.11.0

func SummaryNotIn(vs ...string) predicate.ActionPlanHistory

SummaryNotIn applies the NotIn predicate on the "summary" field.

func SummaryNotNil added in v0.11.0

func SummaryNotNil() predicate.ActionPlanHistory

SummaryNotNil applies the NotNil predicate on the "summary" field.

func TagSuggestionsIsNil added in v0.19.0

func TagSuggestionsIsNil() predicate.ActionPlanHistory

TagSuggestionsIsNil applies the IsNil predicate on the "tag_suggestions" field.

func TagSuggestionsNotNil added in v0.19.0

func TagSuggestionsNotNil() predicate.ActionPlanHistory

TagSuggestionsNotNil applies the NotNil predicate on the "tag_suggestions" field.

func TagsIsNil

func TagsIsNil() predicate.ActionPlanHistory

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

func TagsNotNil

func TagsNotNil() predicate.ActionPlanHistory

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.ActionPlanHistory

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.ActionPlanHistory

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.ActionPlanHistory

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.ActionPlanHistory

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.ActionPlanHistory

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.ActionPlanHistory

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.ActionPlanHistory

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.ActionPlanHistory

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.ActionPlanHistory

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

func UpdatedBy

func UpdatedBy(v string) predicate.ActionPlanHistory

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.ActionPlanHistory

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.ActionPlanHistory

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.ActionPlanHistory

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.ActionPlanHistory

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.ActionPlanHistory

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.ActionPlanHistory

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.ActionPlanHistory

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.ActionPlanHistory

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.ActionPlanHistory

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.ActionPlanHistory

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.ActionPlanHistory

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.ActionPlanHistory

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.ActionPlanHistory

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the ActionPlanHistory queries.

func ByActionPlanType added in v0.7.5

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

ByActionPlanType orders the results by the action_plan_type field.

func ByApprovalRequired added in v0.7.5

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

ByApprovalRequired orders the results by the approval_required field.

func ByApproverID added in v0.8.9

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

ByApproverID orders the results by the approver_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 ByDelegateID added in v0.8.9

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

ByDelegateID orders the results by the delegate_id 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 ByDetails added in v0.7.5

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

ByDetails orders the results by the details field.

func ByDueDate

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

ByDueDate orders the results by the due_date 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 ByName

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

ByName orders the results by the name field.

func ByOperation

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

ByOperation orders the results by the operation field.

func ByOwnerID added in v0.7.5

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

ByOwnerID orders the results by the owner_id field.

func ByPriority

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

ByPriority orders the results by the priority field.

func ByRef

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

ByRef orders the results by the ref field.

func ByReviewDue added in v0.7.5

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

ByReviewDue orders the results by the review_due field.

func ByReviewFrequency added in v0.7.5

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

ByReviewFrequency orders the results by the review_frequency field.

func ByRevision added in v0.7.5

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

ByRevision orders the results by the revision field.

func BySource

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

BySource orders the results by the source field.

func ByStatus

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

ByStatus orders the results by the status field.

func BySummary added in v0.11.0

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

BySummary orders the results by the summary 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.

Jump to

Keyboard shortcuts

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