task

package
v1.1.59 Latest Latest
Warning

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

Go to latest
Published: Jan 20, 2026 License: AGPL-3.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the task type in the database.
	Label = "task"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldTenantID holds the string denoting the tenant_id field in the database.
	FieldTenantID = "tenant_id"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// 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"
	// FieldEnvironmentID holds the string denoting the environment_id field in the database.
	FieldEnvironmentID = "environment_id"
	// FieldTaskType holds the string denoting the task_type field in the database.
	FieldTaskType = "task_type"
	// FieldEntityType holds the string denoting the entity_type field in the database.
	FieldEntityType = "entity_type"
	// FieldScheduledTaskID holds the string denoting the scheduled_task_id field in the database.
	FieldScheduledTaskID = "scheduled_task_id"
	// FieldWorkflowID holds the string denoting the workflow_id field in the database.
	FieldWorkflowID = "workflow_id"
	// FieldFileURL holds the string denoting the file_url field in the database.
	FieldFileURL = "file_url"
	// FieldFileName holds the string denoting the file_name field in the database.
	FieldFileName = "file_name"
	// FieldFileType holds the string denoting the file_type field in the database.
	FieldFileType = "file_type"
	// FieldTaskStatus holds the string denoting the task_status field in the database.
	FieldTaskStatus = "task_status"
	// FieldTotalRecords holds the string denoting the total_records field in the database.
	FieldTotalRecords = "total_records"
	// FieldProcessedRecords holds the string denoting the processed_records field in the database.
	FieldProcessedRecords = "processed_records"
	// FieldSuccessfulRecords holds the string denoting the successful_records field in the database.
	FieldSuccessfulRecords = "successful_records"
	// FieldFailedRecords holds the string denoting the failed_records field in the database.
	FieldFailedRecords = "failed_records"
	// FieldErrorSummary holds the string denoting the error_summary field in the database.
	FieldErrorSummary = "error_summary"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// FieldStartedAt holds the string denoting the started_at field in the database.
	FieldStartedAt = "started_at"
	// FieldCompletedAt holds the string denoting the completed_at field in the database.
	FieldCompletedAt = "completed_at"
	// FieldFailedAt holds the string denoting the failed_at field in the database.
	FieldFailedAt = "failed_at"
	// Table holds the table name of the task in the database.
	Table = "tasks"
)

Variables

View Source
var (
	// TenantIDValidator is a validator for the "tenant_id" field. It is called by the builders before save.
	TenantIDValidator func(string) error
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus string
	// 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
	// DefaultEnvironmentID holds the default value on creation for the "environment_id" field.
	DefaultEnvironmentID string
	// TaskTypeValidator is a validator for the "task_type" field. It is called by the builders before save.
	TaskTypeValidator func(string) error
	// EntityTypeValidator is a validator for the "entity_type" field. It is called by the builders before save.
	EntityTypeValidator func(string) error
	// DefaultFileURL holds the default value on creation for the "file_url" field.
	DefaultFileURL string
	// FileTypeValidator is a validator for the "file_type" field. It is called by the builders before save.
	FileTypeValidator func(string) error
	// DefaultTaskStatus holds the default value on creation for the "task_status" field.
	DefaultTaskStatus string
	// DefaultProcessedRecords holds the default value on creation for the "processed_records" field.
	DefaultProcessedRecords int
	// DefaultSuccessfulRecords holds the default value on creation for the "successful_records" field.
	DefaultSuccessfulRecords int
	// DefaultFailedRecords holds the default value on creation for the "failed_records" field.
	DefaultFailedRecords int
)

Columns holds all SQL columns for task fields.

Functions

func And

func And(predicates ...predicate.Task) predicate.Task

And groups predicates with the AND operator between them.

func CompletedAt

func CompletedAt(v time.Time) predicate.Task

CompletedAt applies equality check predicate on the "completed_at" field. It's identical to CompletedAtEQ.

func CompletedAtEQ

func CompletedAtEQ(v time.Time) predicate.Task

CompletedAtEQ applies the EQ predicate on the "completed_at" field.

func CompletedAtGT

func CompletedAtGT(v time.Time) predicate.Task

CompletedAtGT applies the GT predicate on the "completed_at" field.

func CompletedAtGTE

func CompletedAtGTE(v time.Time) predicate.Task

CompletedAtGTE applies the GTE predicate on the "completed_at" field.

func CompletedAtIn

func CompletedAtIn(vs ...time.Time) predicate.Task

CompletedAtIn applies the In predicate on the "completed_at" field.

func CompletedAtIsNil

func CompletedAtIsNil() predicate.Task

CompletedAtIsNil applies the IsNil predicate on the "completed_at" field.

func CompletedAtLT

func CompletedAtLT(v time.Time) predicate.Task

CompletedAtLT applies the LT predicate on the "completed_at" field.

func CompletedAtLTE

func CompletedAtLTE(v time.Time) predicate.Task

CompletedAtLTE applies the LTE predicate on the "completed_at" field.

func CompletedAtNEQ

func CompletedAtNEQ(v time.Time) predicate.Task

CompletedAtNEQ applies the NEQ predicate on the "completed_at" field.

func CompletedAtNotIn

func CompletedAtNotIn(vs ...time.Time) predicate.Task

CompletedAtNotIn applies the NotIn predicate on the "completed_at" field.

func CompletedAtNotNil

func CompletedAtNotNil() predicate.Task

CompletedAtNotNil applies the NotNil predicate on the "completed_at" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Task

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Task

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Task

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Task

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Task

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Task

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Task

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

func CreatedAtNotIn

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

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

func CreatedBy

func CreatedBy(v string) predicate.Task

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

func CreatedByContains

func CreatedByContains(v string) predicate.Task

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.Task

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.Task

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.Task

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

func CreatedByGT

func CreatedByGT(v string) predicate.Task

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.Task

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.Task

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.Task

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.Task

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

func CreatedByLT

func CreatedByLT(v string) predicate.Task

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.Task

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.Task

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.Task

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

func EntityType

func EntityType(v string) predicate.Task

EntityType applies equality check predicate on the "entity_type" field. It's identical to EntityTypeEQ.

func EntityTypeContains

func EntityTypeContains(v string) predicate.Task

EntityTypeContains applies the Contains predicate on the "entity_type" field.

func EntityTypeContainsFold

func EntityTypeContainsFold(v string) predicate.Task

EntityTypeContainsFold applies the ContainsFold predicate on the "entity_type" field.

func EntityTypeEQ

func EntityTypeEQ(v string) predicate.Task

EntityTypeEQ applies the EQ predicate on the "entity_type" field.

func EntityTypeEqualFold

func EntityTypeEqualFold(v string) predicate.Task

EntityTypeEqualFold applies the EqualFold predicate on the "entity_type" field.

func EntityTypeGT

func EntityTypeGT(v string) predicate.Task

EntityTypeGT applies the GT predicate on the "entity_type" field.

func EntityTypeGTE

func EntityTypeGTE(v string) predicate.Task

EntityTypeGTE applies the GTE predicate on the "entity_type" field.

func EntityTypeHasPrefix

func EntityTypeHasPrefix(v string) predicate.Task

EntityTypeHasPrefix applies the HasPrefix predicate on the "entity_type" field.

func EntityTypeHasSuffix

func EntityTypeHasSuffix(v string) predicate.Task

EntityTypeHasSuffix applies the HasSuffix predicate on the "entity_type" field.

func EntityTypeIn

func EntityTypeIn(vs ...string) predicate.Task

EntityTypeIn applies the In predicate on the "entity_type" field.

func EntityTypeLT

func EntityTypeLT(v string) predicate.Task

EntityTypeLT applies the LT predicate on the "entity_type" field.

func EntityTypeLTE

func EntityTypeLTE(v string) predicate.Task

EntityTypeLTE applies the LTE predicate on the "entity_type" field.

func EntityTypeNEQ

func EntityTypeNEQ(v string) predicate.Task

EntityTypeNEQ applies the NEQ predicate on the "entity_type" field.

func EntityTypeNotIn

func EntityTypeNotIn(vs ...string) predicate.Task

EntityTypeNotIn applies the NotIn predicate on the "entity_type" field.

func EnvironmentID

func EnvironmentID(v string) predicate.Task

EnvironmentID applies equality check predicate on the "environment_id" field. It's identical to EnvironmentIDEQ.

func EnvironmentIDContains

func EnvironmentIDContains(v string) predicate.Task

EnvironmentIDContains applies the Contains predicate on the "environment_id" field.

func EnvironmentIDContainsFold

func EnvironmentIDContainsFold(v string) predicate.Task

EnvironmentIDContainsFold applies the ContainsFold predicate on the "environment_id" field.

func EnvironmentIDEQ

func EnvironmentIDEQ(v string) predicate.Task

EnvironmentIDEQ applies the EQ predicate on the "environment_id" field.

func EnvironmentIDEqualFold

func EnvironmentIDEqualFold(v string) predicate.Task

EnvironmentIDEqualFold applies the EqualFold predicate on the "environment_id" field.

func EnvironmentIDGT

func EnvironmentIDGT(v string) predicate.Task

EnvironmentIDGT applies the GT predicate on the "environment_id" field.

func EnvironmentIDGTE

func EnvironmentIDGTE(v string) predicate.Task

EnvironmentIDGTE applies the GTE predicate on the "environment_id" field.

func EnvironmentIDHasPrefix

func EnvironmentIDHasPrefix(v string) predicate.Task

EnvironmentIDHasPrefix applies the HasPrefix predicate on the "environment_id" field.

func EnvironmentIDHasSuffix

func EnvironmentIDHasSuffix(v string) predicate.Task

EnvironmentIDHasSuffix applies the HasSuffix predicate on the "environment_id" field.

func EnvironmentIDIn

func EnvironmentIDIn(vs ...string) predicate.Task

EnvironmentIDIn applies the In predicate on the "environment_id" field.

func EnvironmentIDIsNil

func EnvironmentIDIsNil() predicate.Task

EnvironmentIDIsNil applies the IsNil predicate on the "environment_id" field.

func EnvironmentIDLT

func EnvironmentIDLT(v string) predicate.Task

EnvironmentIDLT applies the LT predicate on the "environment_id" field.

func EnvironmentIDLTE

func EnvironmentIDLTE(v string) predicate.Task

EnvironmentIDLTE applies the LTE predicate on the "environment_id" field.

func EnvironmentIDNEQ

func EnvironmentIDNEQ(v string) predicate.Task

EnvironmentIDNEQ applies the NEQ predicate on the "environment_id" field.

func EnvironmentIDNotIn

func EnvironmentIDNotIn(vs ...string) predicate.Task

EnvironmentIDNotIn applies the NotIn predicate on the "environment_id" field.

func EnvironmentIDNotNil

func EnvironmentIDNotNil() predicate.Task

EnvironmentIDNotNil applies the NotNil predicate on the "environment_id" field.

func ErrorSummary

func ErrorSummary(v string) predicate.Task

ErrorSummary applies equality check predicate on the "error_summary" field. It's identical to ErrorSummaryEQ.

func ErrorSummaryContains

func ErrorSummaryContains(v string) predicate.Task

ErrorSummaryContains applies the Contains predicate on the "error_summary" field.

func ErrorSummaryContainsFold

func ErrorSummaryContainsFold(v string) predicate.Task

ErrorSummaryContainsFold applies the ContainsFold predicate on the "error_summary" field.

func ErrorSummaryEQ

func ErrorSummaryEQ(v string) predicate.Task

ErrorSummaryEQ applies the EQ predicate on the "error_summary" field.

func ErrorSummaryEqualFold

func ErrorSummaryEqualFold(v string) predicate.Task

ErrorSummaryEqualFold applies the EqualFold predicate on the "error_summary" field.

func ErrorSummaryGT

func ErrorSummaryGT(v string) predicate.Task

ErrorSummaryGT applies the GT predicate on the "error_summary" field.

func ErrorSummaryGTE

func ErrorSummaryGTE(v string) predicate.Task

ErrorSummaryGTE applies the GTE predicate on the "error_summary" field.

func ErrorSummaryHasPrefix

func ErrorSummaryHasPrefix(v string) predicate.Task

ErrorSummaryHasPrefix applies the HasPrefix predicate on the "error_summary" field.

func ErrorSummaryHasSuffix

func ErrorSummaryHasSuffix(v string) predicate.Task

ErrorSummaryHasSuffix applies the HasSuffix predicate on the "error_summary" field.

func ErrorSummaryIn

func ErrorSummaryIn(vs ...string) predicate.Task

ErrorSummaryIn applies the In predicate on the "error_summary" field.

func ErrorSummaryIsNil

func ErrorSummaryIsNil() predicate.Task

ErrorSummaryIsNil applies the IsNil predicate on the "error_summary" field.

func ErrorSummaryLT

func ErrorSummaryLT(v string) predicate.Task

ErrorSummaryLT applies the LT predicate on the "error_summary" field.

func ErrorSummaryLTE

func ErrorSummaryLTE(v string) predicate.Task

ErrorSummaryLTE applies the LTE predicate on the "error_summary" field.

func ErrorSummaryNEQ

func ErrorSummaryNEQ(v string) predicate.Task

ErrorSummaryNEQ applies the NEQ predicate on the "error_summary" field.

func ErrorSummaryNotIn

func ErrorSummaryNotIn(vs ...string) predicate.Task

ErrorSummaryNotIn applies the NotIn predicate on the "error_summary" field.

func ErrorSummaryNotNil

func ErrorSummaryNotNil() predicate.Task

ErrorSummaryNotNil applies the NotNil predicate on the "error_summary" field.

func FailedAt

func FailedAt(v time.Time) predicate.Task

FailedAt applies equality check predicate on the "failed_at" field. It's identical to FailedAtEQ.

func FailedAtEQ

func FailedAtEQ(v time.Time) predicate.Task

FailedAtEQ applies the EQ predicate on the "failed_at" field.

func FailedAtGT

func FailedAtGT(v time.Time) predicate.Task

FailedAtGT applies the GT predicate on the "failed_at" field.

func FailedAtGTE

func FailedAtGTE(v time.Time) predicate.Task

FailedAtGTE applies the GTE predicate on the "failed_at" field.

func FailedAtIn

func FailedAtIn(vs ...time.Time) predicate.Task

FailedAtIn applies the In predicate on the "failed_at" field.

func FailedAtIsNil

func FailedAtIsNil() predicate.Task

FailedAtIsNil applies the IsNil predicate on the "failed_at" field.

func FailedAtLT

func FailedAtLT(v time.Time) predicate.Task

FailedAtLT applies the LT predicate on the "failed_at" field.

func FailedAtLTE

func FailedAtLTE(v time.Time) predicate.Task

FailedAtLTE applies the LTE predicate on the "failed_at" field.

func FailedAtNEQ

func FailedAtNEQ(v time.Time) predicate.Task

FailedAtNEQ applies the NEQ predicate on the "failed_at" field.

func FailedAtNotIn

func FailedAtNotIn(vs ...time.Time) predicate.Task

FailedAtNotIn applies the NotIn predicate on the "failed_at" field.

func FailedAtNotNil

func FailedAtNotNil() predicate.Task

FailedAtNotNil applies the NotNil predicate on the "failed_at" field.

func FailedRecords

func FailedRecords(v int) predicate.Task

FailedRecords applies equality check predicate on the "failed_records" field. It's identical to FailedRecordsEQ.

func FailedRecordsEQ

func FailedRecordsEQ(v int) predicate.Task

FailedRecordsEQ applies the EQ predicate on the "failed_records" field.

func FailedRecordsGT

func FailedRecordsGT(v int) predicate.Task

FailedRecordsGT applies the GT predicate on the "failed_records" field.

func FailedRecordsGTE

func FailedRecordsGTE(v int) predicate.Task

FailedRecordsGTE applies the GTE predicate on the "failed_records" field.

func FailedRecordsIn

func FailedRecordsIn(vs ...int) predicate.Task

FailedRecordsIn applies the In predicate on the "failed_records" field.

func FailedRecordsLT

func FailedRecordsLT(v int) predicate.Task

FailedRecordsLT applies the LT predicate on the "failed_records" field.

func FailedRecordsLTE

func FailedRecordsLTE(v int) predicate.Task

FailedRecordsLTE applies the LTE predicate on the "failed_records" field.

func FailedRecordsNEQ

func FailedRecordsNEQ(v int) predicate.Task

FailedRecordsNEQ applies the NEQ predicate on the "failed_records" field.

func FailedRecordsNotIn

func FailedRecordsNotIn(vs ...int) predicate.Task

FailedRecordsNotIn applies the NotIn predicate on the "failed_records" field.

func FileName

func FileName(v string) predicate.Task

FileName applies equality check predicate on the "file_name" field. It's identical to FileNameEQ.

func FileNameContains

func FileNameContains(v string) predicate.Task

FileNameContains applies the Contains predicate on the "file_name" field.

func FileNameContainsFold

func FileNameContainsFold(v string) predicate.Task

FileNameContainsFold applies the ContainsFold predicate on the "file_name" field.

func FileNameEQ

func FileNameEQ(v string) predicate.Task

FileNameEQ applies the EQ predicate on the "file_name" field.

func FileNameEqualFold

func FileNameEqualFold(v string) predicate.Task

FileNameEqualFold applies the EqualFold predicate on the "file_name" field.

func FileNameGT

func FileNameGT(v string) predicate.Task

FileNameGT applies the GT predicate on the "file_name" field.

func FileNameGTE

func FileNameGTE(v string) predicate.Task

FileNameGTE applies the GTE predicate on the "file_name" field.

func FileNameHasPrefix

func FileNameHasPrefix(v string) predicate.Task

FileNameHasPrefix applies the HasPrefix predicate on the "file_name" field.

func FileNameHasSuffix

func FileNameHasSuffix(v string) predicate.Task

FileNameHasSuffix applies the HasSuffix predicate on the "file_name" field.

func FileNameIn

func FileNameIn(vs ...string) predicate.Task

FileNameIn applies the In predicate on the "file_name" field.

func FileNameIsNil

func FileNameIsNil() predicate.Task

FileNameIsNil applies the IsNil predicate on the "file_name" field.

func FileNameLT

func FileNameLT(v string) predicate.Task

FileNameLT applies the LT predicate on the "file_name" field.

func FileNameLTE

func FileNameLTE(v string) predicate.Task

FileNameLTE applies the LTE predicate on the "file_name" field.

func FileNameNEQ

func FileNameNEQ(v string) predicate.Task

FileNameNEQ applies the NEQ predicate on the "file_name" field.

func FileNameNotIn

func FileNameNotIn(vs ...string) predicate.Task

FileNameNotIn applies the NotIn predicate on the "file_name" field.

func FileNameNotNil

func FileNameNotNil() predicate.Task

FileNameNotNil applies the NotNil predicate on the "file_name" field.

func FileType

func FileType(v string) predicate.Task

FileType applies equality check predicate on the "file_type" field. It's identical to FileTypeEQ.

func FileTypeContains

func FileTypeContains(v string) predicate.Task

FileTypeContains applies the Contains predicate on the "file_type" field.

func FileTypeContainsFold

func FileTypeContainsFold(v string) predicate.Task

FileTypeContainsFold applies the ContainsFold predicate on the "file_type" field.

func FileTypeEQ

func FileTypeEQ(v string) predicate.Task

FileTypeEQ applies the EQ predicate on the "file_type" field.

func FileTypeEqualFold

func FileTypeEqualFold(v string) predicate.Task

FileTypeEqualFold applies the EqualFold predicate on the "file_type" field.

func FileTypeGT

func FileTypeGT(v string) predicate.Task

FileTypeGT applies the GT predicate on the "file_type" field.

func FileTypeGTE

func FileTypeGTE(v string) predicate.Task

FileTypeGTE applies the GTE predicate on the "file_type" field.

func FileTypeHasPrefix

func FileTypeHasPrefix(v string) predicate.Task

FileTypeHasPrefix applies the HasPrefix predicate on the "file_type" field.

func FileTypeHasSuffix

func FileTypeHasSuffix(v string) predicate.Task

FileTypeHasSuffix applies the HasSuffix predicate on the "file_type" field.

func FileTypeIn

func FileTypeIn(vs ...string) predicate.Task

FileTypeIn applies the In predicate on the "file_type" field.

func FileTypeLT

func FileTypeLT(v string) predicate.Task

FileTypeLT applies the LT predicate on the "file_type" field.

func FileTypeLTE

func FileTypeLTE(v string) predicate.Task

FileTypeLTE applies the LTE predicate on the "file_type" field.

func FileTypeNEQ

func FileTypeNEQ(v string) predicate.Task

FileTypeNEQ applies the NEQ predicate on the "file_type" field.

func FileTypeNotIn

func FileTypeNotIn(vs ...string) predicate.Task

FileTypeNotIn applies the NotIn predicate on the "file_type" field.

func FileURL

func FileURL(v string) predicate.Task

FileURL applies equality check predicate on the "file_url" field. It's identical to FileURLEQ.

func FileURLContains

func FileURLContains(v string) predicate.Task

FileURLContains applies the Contains predicate on the "file_url" field.

func FileURLContainsFold

func FileURLContainsFold(v string) predicate.Task

FileURLContainsFold applies the ContainsFold predicate on the "file_url" field.

func FileURLEQ

func FileURLEQ(v string) predicate.Task

FileURLEQ applies the EQ predicate on the "file_url" field.

func FileURLEqualFold

func FileURLEqualFold(v string) predicate.Task

FileURLEqualFold applies the EqualFold predicate on the "file_url" field.

func FileURLGT

func FileURLGT(v string) predicate.Task

FileURLGT applies the GT predicate on the "file_url" field.

func FileURLGTE

func FileURLGTE(v string) predicate.Task

FileURLGTE applies the GTE predicate on the "file_url" field.

func FileURLHasPrefix

func FileURLHasPrefix(v string) predicate.Task

FileURLHasPrefix applies the HasPrefix predicate on the "file_url" field.

func FileURLHasSuffix

func FileURLHasSuffix(v string) predicate.Task

FileURLHasSuffix applies the HasSuffix predicate on the "file_url" field.

func FileURLIn

func FileURLIn(vs ...string) predicate.Task

FileURLIn applies the In predicate on the "file_url" field.

func FileURLLT

func FileURLLT(v string) predicate.Task

FileURLLT applies the LT predicate on the "file_url" field.

func FileURLLTE

func FileURLLTE(v string) predicate.Task

FileURLLTE applies the LTE predicate on the "file_url" field.

func FileURLNEQ

func FileURLNEQ(v string) predicate.Task

FileURLNEQ applies the NEQ predicate on the "file_url" field.

func FileURLNotIn

func FileURLNotIn(vs ...string) predicate.Task

FileURLNotIn applies the NotIn predicate on the "file_url" field.

func ID

func ID(id string) predicate.Task

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.Task

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.Task

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.Task

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Task

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Task

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Task

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Task

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Task

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func MetadataIsNil

func MetadataIsNil() predicate.Task

MetadataIsNil applies the IsNil predicate on the "metadata" field.

func MetadataNotNil

func MetadataNotNil() predicate.Task

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Task) predicate.Task

Or groups predicates with the OR operator between them.

func ProcessedRecords

func ProcessedRecords(v int) predicate.Task

ProcessedRecords applies equality check predicate on the "processed_records" field. It's identical to ProcessedRecordsEQ.

func ProcessedRecordsEQ

func ProcessedRecordsEQ(v int) predicate.Task

ProcessedRecordsEQ applies the EQ predicate on the "processed_records" field.

func ProcessedRecordsGT

func ProcessedRecordsGT(v int) predicate.Task

ProcessedRecordsGT applies the GT predicate on the "processed_records" field.

func ProcessedRecordsGTE

func ProcessedRecordsGTE(v int) predicate.Task

ProcessedRecordsGTE applies the GTE predicate on the "processed_records" field.

func ProcessedRecordsIn

func ProcessedRecordsIn(vs ...int) predicate.Task

ProcessedRecordsIn applies the In predicate on the "processed_records" field.

func ProcessedRecordsLT

func ProcessedRecordsLT(v int) predicate.Task

ProcessedRecordsLT applies the LT predicate on the "processed_records" field.

func ProcessedRecordsLTE

func ProcessedRecordsLTE(v int) predicate.Task

ProcessedRecordsLTE applies the LTE predicate on the "processed_records" field.

func ProcessedRecordsNEQ

func ProcessedRecordsNEQ(v int) predicate.Task

ProcessedRecordsNEQ applies the NEQ predicate on the "processed_records" field.

func ProcessedRecordsNotIn

func ProcessedRecordsNotIn(vs ...int) predicate.Task

ProcessedRecordsNotIn applies the NotIn predicate on the "processed_records" field.

func ScheduledTaskID added in v1.0.32

func ScheduledTaskID(v string) predicate.Task

ScheduledTaskID applies equality check predicate on the "scheduled_task_id" field. It's identical to ScheduledTaskIDEQ.

func ScheduledTaskIDContains added in v1.0.32

func ScheduledTaskIDContains(v string) predicate.Task

ScheduledTaskIDContains applies the Contains predicate on the "scheduled_task_id" field.

func ScheduledTaskIDContainsFold added in v1.0.32

func ScheduledTaskIDContainsFold(v string) predicate.Task

ScheduledTaskIDContainsFold applies the ContainsFold predicate on the "scheduled_task_id" field.

func ScheduledTaskIDEQ added in v1.0.32

func ScheduledTaskIDEQ(v string) predicate.Task

ScheduledTaskIDEQ applies the EQ predicate on the "scheduled_task_id" field.

func ScheduledTaskIDEqualFold added in v1.0.32

func ScheduledTaskIDEqualFold(v string) predicate.Task

ScheduledTaskIDEqualFold applies the EqualFold predicate on the "scheduled_task_id" field.

func ScheduledTaskIDGT added in v1.0.32

func ScheduledTaskIDGT(v string) predicate.Task

ScheduledTaskIDGT applies the GT predicate on the "scheduled_task_id" field.

func ScheduledTaskIDGTE added in v1.0.32

func ScheduledTaskIDGTE(v string) predicate.Task

ScheduledTaskIDGTE applies the GTE predicate on the "scheduled_task_id" field.

func ScheduledTaskIDHasPrefix added in v1.0.32

func ScheduledTaskIDHasPrefix(v string) predicate.Task

ScheduledTaskIDHasPrefix applies the HasPrefix predicate on the "scheduled_task_id" field.

func ScheduledTaskIDHasSuffix added in v1.0.32

func ScheduledTaskIDHasSuffix(v string) predicate.Task

ScheduledTaskIDHasSuffix applies the HasSuffix predicate on the "scheduled_task_id" field.

func ScheduledTaskIDIn added in v1.0.32

func ScheduledTaskIDIn(vs ...string) predicate.Task

ScheduledTaskIDIn applies the In predicate on the "scheduled_task_id" field.

func ScheduledTaskIDIsNil added in v1.0.32

func ScheduledTaskIDIsNil() predicate.Task

ScheduledTaskIDIsNil applies the IsNil predicate on the "scheduled_task_id" field.

func ScheduledTaskIDLT added in v1.0.32

func ScheduledTaskIDLT(v string) predicate.Task

ScheduledTaskIDLT applies the LT predicate on the "scheduled_task_id" field.

func ScheduledTaskIDLTE added in v1.0.32

func ScheduledTaskIDLTE(v string) predicate.Task

ScheduledTaskIDLTE applies the LTE predicate on the "scheduled_task_id" field.

func ScheduledTaskIDNEQ added in v1.0.32

func ScheduledTaskIDNEQ(v string) predicate.Task

ScheduledTaskIDNEQ applies the NEQ predicate on the "scheduled_task_id" field.

func ScheduledTaskIDNotIn added in v1.0.32

func ScheduledTaskIDNotIn(vs ...string) predicate.Task

ScheduledTaskIDNotIn applies the NotIn predicate on the "scheduled_task_id" field.

func ScheduledTaskIDNotNil added in v1.0.32

func ScheduledTaskIDNotNil() predicate.Task

ScheduledTaskIDNotNil applies the NotNil predicate on the "scheduled_task_id" field.

func StartedAt

func StartedAt(v time.Time) predicate.Task

StartedAt applies equality check predicate on the "started_at" field. It's identical to StartedAtEQ.

func StartedAtEQ

func StartedAtEQ(v time.Time) predicate.Task

StartedAtEQ applies the EQ predicate on the "started_at" field.

func StartedAtGT

func StartedAtGT(v time.Time) predicate.Task

StartedAtGT applies the GT predicate on the "started_at" field.

func StartedAtGTE

func StartedAtGTE(v time.Time) predicate.Task

StartedAtGTE applies the GTE predicate on the "started_at" field.

func StartedAtIn

func StartedAtIn(vs ...time.Time) predicate.Task

StartedAtIn applies the In predicate on the "started_at" field.

func StartedAtIsNil

func StartedAtIsNil() predicate.Task

StartedAtIsNil applies the IsNil predicate on the "started_at" field.

func StartedAtLT

func StartedAtLT(v time.Time) predicate.Task

StartedAtLT applies the LT predicate on the "started_at" field.

func StartedAtLTE

func StartedAtLTE(v time.Time) predicate.Task

StartedAtLTE applies the LTE predicate on the "started_at" field.

func StartedAtNEQ

func StartedAtNEQ(v time.Time) predicate.Task

StartedAtNEQ applies the NEQ predicate on the "started_at" field.

func StartedAtNotIn

func StartedAtNotIn(vs ...time.Time) predicate.Task

StartedAtNotIn applies the NotIn predicate on the "started_at" field.

func StartedAtNotNil

func StartedAtNotNil() predicate.Task

StartedAtNotNil applies the NotNil predicate on the "started_at" field.

func Status

func Status(v string) predicate.Task

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

func StatusContains

func StatusContains(v string) predicate.Task

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

func StatusContainsFold

func StatusContainsFold(v string) predicate.Task

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

func StatusEQ

func StatusEQ(v string) predicate.Task

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

func StatusEqualFold

func StatusEqualFold(v string) predicate.Task

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

func StatusGT

func StatusGT(v string) predicate.Task

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

func StatusGTE

func StatusGTE(v string) predicate.Task

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

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.Task

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

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.Task

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

func StatusIn

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

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

func StatusLT

func StatusLT(v string) predicate.Task

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

func StatusLTE

func StatusLTE(v string) predicate.Task

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

func StatusNEQ

func StatusNEQ(v string) predicate.Task

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

func StatusNotIn

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

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

func SuccessfulRecords

func SuccessfulRecords(v int) predicate.Task

SuccessfulRecords applies equality check predicate on the "successful_records" field. It's identical to SuccessfulRecordsEQ.

func SuccessfulRecordsEQ

func SuccessfulRecordsEQ(v int) predicate.Task

SuccessfulRecordsEQ applies the EQ predicate on the "successful_records" field.

func SuccessfulRecordsGT

func SuccessfulRecordsGT(v int) predicate.Task

SuccessfulRecordsGT applies the GT predicate on the "successful_records" field.

func SuccessfulRecordsGTE

func SuccessfulRecordsGTE(v int) predicate.Task

SuccessfulRecordsGTE applies the GTE predicate on the "successful_records" field.

func SuccessfulRecordsIn

func SuccessfulRecordsIn(vs ...int) predicate.Task

SuccessfulRecordsIn applies the In predicate on the "successful_records" field.

func SuccessfulRecordsLT

func SuccessfulRecordsLT(v int) predicate.Task

SuccessfulRecordsLT applies the LT predicate on the "successful_records" field.

func SuccessfulRecordsLTE

func SuccessfulRecordsLTE(v int) predicate.Task

SuccessfulRecordsLTE applies the LTE predicate on the "successful_records" field.

func SuccessfulRecordsNEQ

func SuccessfulRecordsNEQ(v int) predicate.Task

SuccessfulRecordsNEQ applies the NEQ predicate on the "successful_records" field.

func SuccessfulRecordsNotIn

func SuccessfulRecordsNotIn(vs ...int) predicate.Task

SuccessfulRecordsNotIn applies the NotIn predicate on the "successful_records" field.

func TaskStatus

func TaskStatus(v string) predicate.Task

TaskStatus applies equality check predicate on the "task_status" field. It's identical to TaskStatusEQ.

func TaskStatusContains

func TaskStatusContains(v string) predicate.Task

TaskStatusContains applies the Contains predicate on the "task_status" field.

func TaskStatusContainsFold

func TaskStatusContainsFold(v string) predicate.Task

TaskStatusContainsFold applies the ContainsFold predicate on the "task_status" field.

func TaskStatusEQ

func TaskStatusEQ(v string) predicate.Task

TaskStatusEQ applies the EQ predicate on the "task_status" field.

func TaskStatusEqualFold

func TaskStatusEqualFold(v string) predicate.Task

TaskStatusEqualFold applies the EqualFold predicate on the "task_status" field.

func TaskStatusGT

func TaskStatusGT(v string) predicate.Task

TaskStatusGT applies the GT predicate on the "task_status" field.

func TaskStatusGTE

func TaskStatusGTE(v string) predicate.Task

TaskStatusGTE applies the GTE predicate on the "task_status" field.

func TaskStatusHasPrefix

func TaskStatusHasPrefix(v string) predicate.Task

TaskStatusHasPrefix applies the HasPrefix predicate on the "task_status" field.

func TaskStatusHasSuffix

func TaskStatusHasSuffix(v string) predicate.Task

TaskStatusHasSuffix applies the HasSuffix predicate on the "task_status" field.

func TaskStatusIn

func TaskStatusIn(vs ...string) predicate.Task

TaskStatusIn applies the In predicate on the "task_status" field.

func TaskStatusLT

func TaskStatusLT(v string) predicate.Task

TaskStatusLT applies the LT predicate on the "task_status" field.

func TaskStatusLTE

func TaskStatusLTE(v string) predicate.Task

TaskStatusLTE applies the LTE predicate on the "task_status" field.

func TaskStatusNEQ

func TaskStatusNEQ(v string) predicate.Task

TaskStatusNEQ applies the NEQ predicate on the "task_status" field.

func TaskStatusNotIn

func TaskStatusNotIn(vs ...string) predicate.Task

TaskStatusNotIn applies the NotIn predicate on the "task_status" field.

func TaskType

func TaskType(v string) predicate.Task

TaskType applies equality check predicate on the "task_type" field. It's identical to TaskTypeEQ.

func TaskTypeContains

func TaskTypeContains(v string) predicate.Task

TaskTypeContains applies the Contains predicate on the "task_type" field.

func TaskTypeContainsFold

func TaskTypeContainsFold(v string) predicate.Task

TaskTypeContainsFold applies the ContainsFold predicate on the "task_type" field.

func TaskTypeEQ

func TaskTypeEQ(v string) predicate.Task

TaskTypeEQ applies the EQ predicate on the "task_type" field.

func TaskTypeEqualFold

func TaskTypeEqualFold(v string) predicate.Task

TaskTypeEqualFold applies the EqualFold predicate on the "task_type" field.

func TaskTypeGT

func TaskTypeGT(v string) predicate.Task

TaskTypeGT applies the GT predicate on the "task_type" field.

func TaskTypeGTE

func TaskTypeGTE(v string) predicate.Task

TaskTypeGTE applies the GTE predicate on the "task_type" field.

func TaskTypeHasPrefix

func TaskTypeHasPrefix(v string) predicate.Task

TaskTypeHasPrefix applies the HasPrefix predicate on the "task_type" field.

func TaskTypeHasSuffix

func TaskTypeHasSuffix(v string) predicate.Task

TaskTypeHasSuffix applies the HasSuffix predicate on the "task_type" field.

func TaskTypeIn

func TaskTypeIn(vs ...string) predicate.Task

TaskTypeIn applies the In predicate on the "task_type" field.

func TaskTypeLT

func TaskTypeLT(v string) predicate.Task

TaskTypeLT applies the LT predicate on the "task_type" field.

func TaskTypeLTE

func TaskTypeLTE(v string) predicate.Task

TaskTypeLTE applies the LTE predicate on the "task_type" field.

func TaskTypeNEQ

func TaskTypeNEQ(v string) predicate.Task

TaskTypeNEQ applies the NEQ predicate on the "task_type" field.

func TaskTypeNotIn

func TaskTypeNotIn(vs ...string) predicate.Task

TaskTypeNotIn applies the NotIn predicate on the "task_type" field.

func TenantID

func TenantID(v string) predicate.Task

TenantID applies equality check predicate on the "tenant_id" field. It's identical to TenantIDEQ.

func TenantIDContains

func TenantIDContains(v string) predicate.Task

TenantIDContains applies the Contains predicate on the "tenant_id" field.

func TenantIDContainsFold

func TenantIDContainsFold(v string) predicate.Task

TenantIDContainsFold applies the ContainsFold predicate on the "tenant_id" field.

func TenantIDEQ

func TenantIDEQ(v string) predicate.Task

TenantIDEQ applies the EQ predicate on the "tenant_id" field.

func TenantIDEqualFold

func TenantIDEqualFold(v string) predicate.Task

TenantIDEqualFold applies the EqualFold predicate on the "tenant_id" field.

func TenantIDGT

func TenantIDGT(v string) predicate.Task

TenantIDGT applies the GT predicate on the "tenant_id" field.

func TenantIDGTE

func TenantIDGTE(v string) predicate.Task

TenantIDGTE applies the GTE predicate on the "tenant_id" field.

func TenantIDHasPrefix

func TenantIDHasPrefix(v string) predicate.Task

TenantIDHasPrefix applies the HasPrefix predicate on the "tenant_id" field.

func TenantIDHasSuffix

func TenantIDHasSuffix(v string) predicate.Task

TenantIDHasSuffix applies the HasSuffix predicate on the "tenant_id" field.

func TenantIDIn

func TenantIDIn(vs ...string) predicate.Task

TenantIDIn applies the In predicate on the "tenant_id" field.

func TenantIDLT

func TenantIDLT(v string) predicate.Task

TenantIDLT applies the LT predicate on the "tenant_id" field.

func TenantIDLTE

func TenantIDLTE(v string) predicate.Task

TenantIDLTE applies the LTE predicate on the "tenant_id" field.

func TenantIDNEQ

func TenantIDNEQ(v string) predicate.Task

TenantIDNEQ applies the NEQ predicate on the "tenant_id" field.

func TenantIDNotIn

func TenantIDNotIn(vs ...string) predicate.Task

TenantIDNotIn applies the NotIn predicate on the "tenant_id" field.

func TotalRecords

func TotalRecords(v int) predicate.Task

TotalRecords applies equality check predicate on the "total_records" field. It's identical to TotalRecordsEQ.

func TotalRecordsEQ

func TotalRecordsEQ(v int) predicate.Task

TotalRecordsEQ applies the EQ predicate on the "total_records" field.

func TotalRecordsGT

func TotalRecordsGT(v int) predicate.Task

TotalRecordsGT applies the GT predicate on the "total_records" field.

func TotalRecordsGTE

func TotalRecordsGTE(v int) predicate.Task

TotalRecordsGTE applies the GTE predicate on the "total_records" field.

func TotalRecordsIn

func TotalRecordsIn(vs ...int) predicate.Task

TotalRecordsIn applies the In predicate on the "total_records" field.

func TotalRecordsIsNil

func TotalRecordsIsNil() predicate.Task

TotalRecordsIsNil applies the IsNil predicate on the "total_records" field.

func TotalRecordsLT

func TotalRecordsLT(v int) predicate.Task

TotalRecordsLT applies the LT predicate on the "total_records" field.

func TotalRecordsLTE

func TotalRecordsLTE(v int) predicate.Task

TotalRecordsLTE applies the LTE predicate on the "total_records" field.

func TotalRecordsNEQ

func TotalRecordsNEQ(v int) predicate.Task

TotalRecordsNEQ applies the NEQ predicate on the "total_records" field.

func TotalRecordsNotIn

func TotalRecordsNotIn(vs ...int) predicate.Task

TotalRecordsNotIn applies the NotIn predicate on the "total_records" field.

func TotalRecordsNotNil

func TotalRecordsNotNil() predicate.Task

TotalRecordsNotNil applies the NotNil predicate on the "total_records" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Task

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Task

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Task

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Task

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Task

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Task

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Task

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

func UpdatedAtNotIn

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

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

func UpdatedBy

func UpdatedBy(v string) predicate.Task

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.Task

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.Task

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.Task

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.Task

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.Task

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.Task

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.Task

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.Task

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.Task

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.Task

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.Task

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.Task

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.Task

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 WorkflowID added in v1.0.32

func WorkflowID(v string) predicate.Task

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

func WorkflowIDContains added in v1.0.32

func WorkflowIDContains(v string) predicate.Task

WorkflowIDContains applies the Contains predicate on the "workflow_id" field.

func WorkflowIDContainsFold added in v1.0.32

func WorkflowIDContainsFold(v string) predicate.Task

WorkflowIDContainsFold applies the ContainsFold predicate on the "workflow_id" field.

func WorkflowIDEQ added in v1.0.32

func WorkflowIDEQ(v string) predicate.Task

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

func WorkflowIDEqualFold added in v1.0.32

func WorkflowIDEqualFold(v string) predicate.Task

WorkflowIDEqualFold applies the EqualFold predicate on the "workflow_id" field.

func WorkflowIDGT added in v1.0.32

func WorkflowIDGT(v string) predicate.Task

WorkflowIDGT applies the GT predicate on the "workflow_id" field.

func WorkflowIDGTE added in v1.0.32

func WorkflowIDGTE(v string) predicate.Task

WorkflowIDGTE applies the GTE predicate on the "workflow_id" field.

func WorkflowIDHasPrefix added in v1.0.32

func WorkflowIDHasPrefix(v string) predicate.Task

WorkflowIDHasPrefix applies the HasPrefix predicate on the "workflow_id" field.

func WorkflowIDHasSuffix added in v1.0.32

func WorkflowIDHasSuffix(v string) predicate.Task

WorkflowIDHasSuffix applies the HasSuffix predicate on the "workflow_id" field.

func WorkflowIDIn added in v1.0.32

func WorkflowIDIn(vs ...string) predicate.Task

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

func WorkflowIDIsNil added in v1.0.32

func WorkflowIDIsNil() predicate.Task

WorkflowIDIsNil applies the IsNil predicate on the "workflow_id" field.

func WorkflowIDLT added in v1.0.32

func WorkflowIDLT(v string) predicate.Task

WorkflowIDLT applies the LT predicate on the "workflow_id" field.

func WorkflowIDLTE added in v1.0.32

func WorkflowIDLTE(v string) predicate.Task

WorkflowIDLTE applies the LTE predicate on the "workflow_id" field.

func WorkflowIDNEQ added in v1.0.32

func WorkflowIDNEQ(v string) predicate.Task

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

func WorkflowIDNotIn added in v1.0.32

func WorkflowIDNotIn(vs ...string) predicate.Task

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

func WorkflowIDNotNil added in v1.0.32

func WorkflowIDNotNil() predicate.Task

WorkflowIDNotNil applies the NotNil predicate on the "workflow_id" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Task queries.

func ByCompletedAt

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

ByCompletedAt orders the results by the completed_at 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 ByEntityType

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

ByEntityType orders the results by the entity_type field.

func ByEnvironmentID

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

ByEnvironmentID orders the results by the environment_id field.

func ByErrorSummary

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

ByErrorSummary orders the results by the error_summary field.

func ByFailedAt

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

ByFailedAt orders the results by the failed_at field.

func ByFailedRecords

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

ByFailedRecords orders the results by the failed_records field.

func ByFileName

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

ByFileName orders the results by the file_name field.

func ByFileType

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

ByFileType orders the results by the file_type field.

func ByFileURL

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

ByFileURL orders the results by the file_url field.

func ByID

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

ByID orders the results by the id field.

func ByProcessedRecords

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

ByProcessedRecords orders the results by the processed_records field.

func ByScheduledTaskID added in v1.0.32

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

ByScheduledTaskID orders the results by the scheduled_task_id field.

func ByStartedAt

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

ByStartedAt orders the results by the started_at field.

func ByStatus

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

ByStatus orders the results by the status field.

func BySuccessfulRecords

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

BySuccessfulRecords orders the results by the successful_records field.

func ByTaskStatus

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

ByTaskStatus orders the results by the task_status field.

func ByTaskType

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

ByTaskType orders the results by the task_type field.

func ByTenantID

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

ByTenantID orders the results by the tenant_id field.

func ByTotalRecords

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

ByTotalRecords orders the results by the total_records 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 ByWorkflowID added in v1.0.32

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

ByWorkflowID orders the results by the workflow_id field.

Jump to

Keyboard shortcuts

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