backlogitem

package
v1.37.0 Latest Latest
Warning

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

Go to latest
Published: Jul 14, 2026 License: AGPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the backlogitem type in the database.
	Label = "backlog_item"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldTitle holds the string denoting the title field in the database.
	FieldTitle = "title"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldAcceptanceCriteria holds the string denoting the acceptance_criteria field in the database.
	FieldAcceptanceCriteria = "acceptance_criteria"
	// FieldPriority holds the string denoting the priority field in the database.
	FieldPriority = "priority"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldRepoPath holds the string denoting the repo_path field in the database.
	FieldRepoPath = "repo_path"
	// FieldSkipReviewGate holds the string denoting the skip_review_gate field in the database.
	FieldSkipReviewGate = "skip_review_gate"
	// FieldSkipPlanning holds the string denoting the skip_planning field in the database.
	FieldSkipPlanning = "skip_planning"
	// FieldPlanApproved holds the string denoting the plan_approved field in the database.
	FieldPlanApproved = "plan_approved"
	// FieldPlanApprovedAt holds the string denoting the plan_approved_at field in the database.
	FieldPlanApprovedAt = "plan_approved_at"
	// FieldPlanArtifactsPath holds the string denoting the plan_artifacts_path field in the database.
	FieldPlanArtifactsPath = "plan_artifacts_path"
	// FieldUserModifiedFields holds the string denoting the user_modified_fields field in the database.
	FieldUserModifiedFields = "user_modified_fields"
	// FieldNotes holds the string denoting the notes field in the database.
	FieldNotes = "notes"
	// FieldExternalID holds the string denoting the external_id field in the database.
	FieldExternalID = "external_id"
	// FieldUserModifiedStatusAt holds the string denoting the user_modified_status_at field in the database.
	FieldUserModifiedStatusAt = "user_modified_status_at"
	// FieldArchivedAt holds the string denoting the archived_at field in the database.
	FieldArchivedAt = "archived_at"
	// FieldPrURL holds the string denoting the pr_url field in the database.
	FieldPrURL = "pr_url"
	// FieldPrNumber holds the string denoting the pr_number field in the database.
	FieldPrNumber = "pr_number"
	// 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"
	// EdgeItemSessions holds the string denoting the item_sessions edge name in mutations.
	EdgeItemSessions = "item_sessions"
	// EdgeSessions holds the string denoting the sessions edge name in mutations.
	EdgeSessions = "sessions"
	// EdgeStatusEvents holds the string denoting the status_events edge name in mutations.
	EdgeStatusEvents = "status_events"
	// EdgeSource holds the string denoting the source edge name in mutations.
	EdgeSource = "source"
	// Table holds the table name of the backlogitem in the database.
	Table = "backlog_items"
	// ItemSessionsTable is the table that holds the item_sessions relation/edge.
	ItemSessionsTable = "item_sessions"
	// ItemSessionsInverseTable is the table name for the ItemSession entity.
	// It exists in this package in order to avoid circular dependency with the "itemsession" package.
	ItemSessionsInverseTable = "item_sessions"
	// ItemSessionsColumn is the table column denoting the item_sessions relation/edge.
	ItemSessionsColumn = "backlog_item_item_sessions"
	// SessionsTable is the table that holds the sessions relation/edge. The primary key declared below.
	SessionsTable = "backlog_item_sessions"
	// SessionsInverseTable is the table name for the Session entity.
	// It exists in this package in order to avoid circular dependency with the "session" package.
	SessionsInverseTable = "sessions"
	// StatusEventsTable is the table that holds the status_events relation/edge.
	StatusEventsTable = "backlog_status_events"
	// StatusEventsInverseTable is the table name for the BacklogStatusEvent entity.
	// It exists in this package in order to avoid circular dependency with the "backlogstatusevent" package.
	StatusEventsInverseTable = "backlog_status_events"
	// StatusEventsColumn is the table column denoting the status_events relation/edge.
	StatusEventsColumn = "item_id"
	// SourceTable is the table that holds the source relation/edge.
	SourceTable = "backlog_items"
	// SourceInverseTable is the table name for the ItemSource entity.
	// It exists in this package in order to avoid circular dependency with the "itemsource" package.
	SourceInverseTable = "item_sources"
	// SourceColumn is the table column denoting the source relation/edge.
	SourceColumn = "item_source_backlog_items"
)

Variables

View Source
var (
	// TitleValidator is a validator for the "title" field. It is called by the builders before save.
	TitleValidator func(string) error
	// DefaultPriority holds the default value on creation for the "priority" field.
	DefaultPriority int
	// PriorityValidator is a validator for the "priority" field. It is called by the builders before save.
	PriorityValidator func(int) error
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus string
	// DefaultSkipReviewGate holds the default value on creation for the "skip_review_gate" field.
	DefaultSkipReviewGate bool
	// DefaultSkipPlanning holds the default value on creation for the "skip_planning" field.
	DefaultSkipPlanning bool
	// DefaultPlanApproved holds the default value on creation for the "plan_approved" field.
	DefaultPlanApproved bool
	// DefaultPrNumber holds the default value on creation for the "pr_number" field.
	DefaultPrNumber int
	// 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
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for backlogitem fields.

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

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

View Source
var (
	// SessionsPrimaryKey and SessionsColumn2 are the table columns denoting the
	// primary key for the sessions relation (M2M).
	SessionsPrimaryKey = []string{"backlog_item_id", "session_id"}
)

Functions

func AcceptanceCriteria

func AcceptanceCriteria(v string) predicate.BacklogItem

AcceptanceCriteria applies equality check predicate on the "acceptance_criteria" field. It's identical to AcceptanceCriteriaEQ.

func AcceptanceCriteriaContains

func AcceptanceCriteriaContains(v string) predicate.BacklogItem

AcceptanceCriteriaContains applies the Contains predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaContainsFold

func AcceptanceCriteriaContainsFold(v string) predicate.BacklogItem

AcceptanceCriteriaContainsFold applies the ContainsFold predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaEQ

func AcceptanceCriteriaEQ(v string) predicate.BacklogItem

AcceptanceCriteriaEQ applies the EQ predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaEqualFold

func AcceptanceCriteriaEqualFold(v string) predicate.BacklogItem

AcceptanceCriteriaEqualFold applies the EqualFold predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaGT

func AcceptanceCriteriaGT(v string) predicate.BacklogItem

AcceptanceCriteriaGT applies the GT predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaGTE

func AcceptanceCriteriaGTE(v string) predicate.BacklogItem

AcceptanceCriteriaGTE applies the GTE predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaHasPrefix

func AcceptanceCriteriaHasPrefix(v string) predicate.BacklogItem

AcceptanceCriteriaHasPrefix applies the HasPrefix predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaHasSuffix

func AcceptanceCriteriaHasSuffix(v string) predicate.BacklogItem

AcceptanceCriteriaHasSuffix applies the HasSuffix predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaIn

func AcceptanceCriteriaIn(vs ...string) predicate.BacklogItem

AcceptanceCriteriaIn applies the In predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaIsNil

func AcceptanceCriteriaIsNil() predicate.BacklogItem

AcceptanceCriteriaIsNil applies the IsNil predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaLT

func AcceptanceCriteriaLT(v string) predicate.BacklogItem

AcceptanceCriteriaLT applies the LT predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaLTE

func AcceptanceCriteriaLTE(v string) predicate.BacklogItem

AcceptanceCriteriaLTE applies the LTE predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaNEQ

func AcceptanceCriteriaNEQ(v string) predicate.BacklogItem

AcceptanceCriteriaNEQ applies the NEQ predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaNotIn

func AcceptanceCriteriaNotIn(vs ...string) predicate.BacklogItem

AcceptanceCriteriaNotIn applies the NotIn predicate on the "acceptance_criteria" field.

func AcceptanceCriteriaNotNil

func AcceptanceCriteriaNotNil() predicate.BacklogItem

AcceptanceCriteriaNotNil applies the NotNil predicate on the "acceptance_criteria" field.

func And

func And(predicates ...predicate.BacklogItem) predicate.BacklogItem

And groups predicates with the AND operator between them.

func ArchivedAt

func ArchivedAt(v time.Time) predicate.BacklogItem

ArchivedAt applies equality check predicate on the "archived_at" field. It's identical to ArchivedAtEQ.

func ArchivedAtEQ

func ArchivedAtEQ(v time.Time) predicate.BacklogItem

ArchivedAtEQ applies the EQ predicate on the "archived_at" field.

func ArchivedAtGT

func ArchivedAtGT(v time.Time) predicate.BacklogItem

ArchivedAtGT applies the GT predicate on the "archived_at" field.

func ArchivedAtGTE

func ArchivedAtGTE(v time.Time) predicate.BacklogItem

ArchivedAtGTE applies the GTE predicate on the "archived_at" field.

func ArchivedAtIn

func ArchivedAtIn(vs ...time.Time) predicate.BacklogItem

ArchivedAtIn applies the In predicate on the "archived_at" field.

func ArchivedAtIsNil

func ArchivedAtIsNil() predicate.BacklogItem

ArchivedAtIsNil applies the IsNil predicate on the "archived_at" field.

func ArchivedAtLT

func ArchivedAtLT(v time.Time) predicate.BacklogItem

ArchivedAtLT applies the LT predicate on the "archived_at" field.

func ArchivedAtLTE

func ArchivedAtLTE(v time.Time) predicate.BacklogItem

ArchivedAtLTE applies the LTE predicate on the "archived_at" field.

func ArchivedAtNEQ

func ArchivedAtNEQ(v time.Time) predicate.BacklogItem

ArchivedAtNEQ applies the NEQ predicate on the "archived_at" field.

func ArchivedAtNotIn

func ArchivedAtNotIn(vs ...time.Time) predicate.BacklogItem

ArchivedAtNotIn applies the NotIn predicate on the "archived_at" field.

func ArchivedAtNotNil

func ArchivedAtNotNil() predicate.BacklogItem

ArchivedAtNotNil applies the NotNil predicate on the "archived_at" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.BacklogItem

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.BacklogItem

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.BacklogItem

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.BacklogItem

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.BacklogItem

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.BacklogItem

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.BacklogItem

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

func CreatedAtNotIn

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

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

func Description

func Description(v string) predicate.BacklogItem

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.BacklogItem

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.BacklogItem

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.BacklogItem

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.BacklogItem

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.BacklogItem

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.BacklogItem

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.BacklogItem

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.BacklogItem

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.BacklogItem

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.BacklogItem

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.BacklogItem

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.BacklogItem

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.BacklogItem

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.BacklogItem

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.BacklogItem

DescriptionNotNil applies the NotNil predicate on the "description" field.

func ExternalID

func ExternalID(v string) predicate.BacklogItem

ExternalID applies equality check predicate on the "external_id" field. It's identical to ExternalIDEQ.

func ExternalIDContains

func ExternalIDContains(v string) predicate.BacklogItem

ExternalIDContains applies the Contains predicate on the "external_id" field.

func ExternalIDContainsFold

func ExternalIDContainsFold(v string) predicate.BacklogItem

ExternalIDContainsFold applies the ContainsFold predicate on the "external_id" field.

func ExternalIDEQ

func ExternalIDEQ(v string) predicate.BacklogItem

ExternalIDEQ applies the EQ predicate on the "external_id" field.

func ExternalIDEqualFold

func ExternalIDEqualFold(v string) predicate.BacklogItem

ExternalIDEqualFold applies the EqualFold predicate on the "external_id" field.

func ExternalIDGT

func ExternalIDGT(v string) predicate.BacklogItem

ExternalIDGT applies the GT predicate on the "external_id" field.

func ExternalIDGTE

func ExternalIDGTE(v string) predicate.BacklogItem

ExternalIDGTE applies the GTE predicate on the "external_id" field.

func ExternalIDHasPrefix

func ExternalIDHasPrefix(v string) predicate.BacklogItem

ExternalIDHasPrefix applies the HasPrefix predicate on the "external_id" field.

func ExternalIDHasSuffix

func ExternalIDHasSuffix(v string) predicate.BacklogItem

ExternalIDHasSuffix applies the HasSuffix predicate on the "external_id" field.

func ExternalIDIn

func ExternalIDIn(vs ...string) predicate.BacklogItem

ExternalIDIn applies the In predicate on the "external_id" field.

func ExternalIDIsNil

func ExternalIDIsNil() predicate.BacklogItem

ExternalIDIsNil applies the IsNil predicate on the "external_id" field.

func ExternalIDLT

func ExternalIDLT(v string) predicate.BacklogItem

ExternalIDLT applies the LT predicate on the "external_id" field.

func ExternalIDLTE

func ExternalIDLTE(v string) predicate.BacklogItem

ExternalIDLTE applies the LTE predicate on the "external_id" field.

func ExternalIDNEQ

func ExternalIDNEQ(v string) predicate.BacklogItem

ExternalIDNEQ applies the NEQ predicate on the "external_id" field.

func ExternalIDNotIn

func ExternalIDNotIn(vs ...string) predicate.BacklogItem

ExternalIDNotIn applies the NotIn predicate on the "external_id" field.

func ExternalIDNotNil

func ExternalIDNotNil() predicate.BacklogItem

ExternalIDNotNil applies the NotNil predicate on the "external_id" field.

func HasItemSessions

func HasItemSessions() predicate.BacklogItem

HasItemSessions applies the HasEdge predicate on the "item_sessions" edge.

func HasItemSessionsWith

func HasItemSessionsWith(preds ...predicate.ItemSession) predicate.BacklogItem

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

func HasSessions

func HasSessions() predicate.BacklogItem

HasSessions applies the HasEdge predicate on the "sessions" edge.

func HasSessionsWith

func HasSessionsWith(preds ...predicate.Session) predicate.BacklogItem

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

func HasSource

func HasSource() predicate.BacklogItem

HasSource applies the HasEdge predicate on the "source" edge.

func HasSourceWith

func HasSourceWith(preds ...predicate.ItemSource) predicate.BacklogItem

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

func HasStatusEvents

func HasStatusEvents() predicate.BacklogItem

HasStatusEvents applies the HasEdge predicate on the "status_events" edge.

func HasStatusEventsWith

func HasStatusEventsWith(preds ...predicate.BacklogStatusEvent) predicate.BacklogItem

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

func ID

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.BacklogItem

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.BacklogItem

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.BacklogItem

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.BacklogItem

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.BacklogItem

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.BacklogItem

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.BacklogItem

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.BacklogItem

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Notes

func Notes(v string) predicate.BacklogItem

Notes applies equality check predicate on the "notes" field. It's identical to NotesEQ.

func NotesContains

func NotesContains(v string) predicate.BacklogItem

NotesContains applies the Contains predicate on the "notes" field.

func NotesContainsFold

func NotesContainsFold(v string) predicate.BacklogItem

NotesContainsFold applies the ContainsFold predicate on the "notes" field.

func NotesEQ

func NotesEQ(v string) predicate.BacklogItem

NotesEQ applies the EQ predicate on the "notes" field.

func NotesEqualFold

func NotesEqualFold(v string) predicate.BacklogItem

NotesEqualFold applies the EqualFold predicate on the "notes" field.

func NotesGT

func NotesGT(v string) predicate.BacklogItem

NotesGT applies the GT predicate on the "notes" field.

func NotesGTE

func NotesGTE(v string) predicate.BacklogItem

NotesGTE applies the GTE predicate on the "notes" field.

func NotesHasPrefix

func NotesHasPrefix(v string) predicate.BacklogItem

NotesHasPrefix applies the HasPrefix predicate on the "notes" field.

func NotesHasSuffix

func NotesHasSuffix(v string) predicate.BacklogItem

NotesHasSuffix applies the HasSuffix predicate on the "notes" field.

func NotesIn

func NotesIn(vs ...string) predicate.BacklogItem

NotesIn applies the In predicate on the "notes" field.

func NotesIsNil

func NotesIsNil() predicate.BacklogItem

NotesIsNil applies the IsNil predicate on the "notes" field.

func NotesLT

func NotesLT(v string) predicate.BacklogItem

NotesLT applies the LT predicate on the "notes" field.

func NotesLTE

func NotesLTE(v string) predicate.BacklogItem

NotesLTE applies the LTE predicate on the "notes" field.

func NotesNEQ

func NotesNEQ(v string) predicate.BacklogItem

NotesNEQ applies the NEQ predicate on the "notes" field.

func NotesNotIn

func NotesNotIn(vs ...string) predicate.BacklogItem

NotesNotIn applies the NotIn predicate on the "notes" field.

func NotesNotNil

func NotesNotNil() predicate.BacklogItem

NotesNotNil applies the NotNil predicate on the "notes" field.

func Or

func Or(predicates ...predicate.BacklogItem) predicate.BacklogItem

Or groups predicates with the OR operator between them.

func PlanApproved

func PlanApproved(v bool) predicate.BacklogItem

PlanApproved applies equality check predicate on the "plan_approved" field. It's identical to PlanApprovedEQ.

func PlanApprovedAt

func PlanApprovedAt(v time.Time) predicate.BacklogItem

PlanApprovedAt applies equality check predicate on the "plan_approved_at" field. It's identical to PlanApprovedAtEQ.

func PlanApprovedAtEQ

func PlanApprovedAtEQ(v time.Time) predicate.BacklogItem

PlanApprovedAtEQ applies the EQ predicate on the "plan_approved_at" field.

func PlanApprovedAtGT

func PlanApprovedAtGT(v time.Time) predicate.BacklogItem

PlanApprovedAtGT applies the GT predicate on the "plan_approved_at" field.

func PlanApprovedAtGTE

func PlanApprovedAtGTE(v time.Time) predicate.BacklogItem

PlanApprovedAtGTE applies the GTE predicate on the "plan_approved_at" field.

func PlanApprovedAtIn

func PlanApprovedAtIn(vs ...time.Time) predicate.BacklogItem

PlanApprovedAtIn applies the In predicate on the "plan_approved_at" field.

func PlanApprovedAtIsNil

func PlanApprovedAtIsNil() predicate.BacklogItem

PlanApprovedAtIsNil applies the IsNil predicate on the "plan_approved_at" field.

func PlanApprovedAtLT

func PlanApprovedAtLT(v time.Time) predicate.BacklogItem

PlanApprovedAtLT applies the LT predicate on the "plan_approved_at" field.

func PlanApprovedAtLTE

func PlanApprovedAtLTE(v time.Time) predicate.BacklogItem

PlanApprovedAtLTE applies the LTE predicate on the "plan_approved_at" field.

func PlanApprovedAtNEQ

func PlanApprovedAtNEQ(v time.Time) predicate.BacklogItem

PlanApprovedAtNEQ applies the NEQ predicate on the "plan_approved_at" field.

func PlanApprovedAtNotIn

func PlanApprovedAtNotIn(vs ...time.Time) predicate.BacklogItem

PlanApprovedAtNotIn applies the NotIn predicate on the "plan_approved_at" field.

func PlanApprovedAtNotNil

func PlanApprovedAtNotNil() predicate.BacklogItem

PlanApprovedAtNotNil applies the NotNil predicate on the "plan_approved_at" field.

func PlanApprovedEQ

func PlanApprovedEQ(v bool) predicate.BacklogItem

PlanApprovedEQ applies the EQ predicate on the "plan_approved" field.

func PlanApprovedNEQ

func PlanApprovedNEQ(v bool) predicate.BacklogItem

PlanApprovedNEQ applies the NEQ predicate on the "plan_approved" field.

func PlanArtifactsPath

func PlanArtifactsPath(v string) predicate.BacklogItem

PlanArtifactsPath applies equality check predicate on the "plan_artifacts_path" field. It's identical to PlanArtifactsPathEQ.

func PlanArtifactsPathContains

func PlanArtifactsPathContains(v string) predicate.BacklogItem

PlanArtifactsPathContains applies the Contains predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathContainsFold

func PlanArtifactsPathContainsFold(v string) predicate.BacklogItem

PlanArtifactsPathContainsFold applies the ContainsFold predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathEQ

func PlanArtifactsPathEQ(v string) predicate.BacklogItem

PlanArtifactsPathEQ applies the EQ predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathEqualFold

func PlanArtifactsPathEqualFold(v string) predicate.BacklogItem

PlanArtifactsPathEqualFold applies the EqualFold predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathGT

func PlanArtifactsPathGT(v string) predicate.BacklogItem

PlanArtifactsPathGT applies the GT predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathGTE

func PlanArtifactsPathGTE(v string) predicate.BacklogItem

PlanArtifactsPathGTE applies the GTE predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathHasPrefix

func PlanArtifactsPathHasPrefix(v string) predicate.BacklogItem

PlanArtifactsPathHasPrefix applies the HasPrefix predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathHasSuffix

func PlanArtifactsPathHasSuffix(v string) predicate.BacklogItem

PlanArtifactsPathHasSuffix applies the HasSuffix predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathIn

func PlanArtifactsPathIn(vs ...string) predicate.BacklogItem

PlanArtifactsPathIn applies the In predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathIsNil

func PlanArtifactsPathIsNil() predicate.BacklogItem

PlanArtifactsPathIsNil applies the IsNil predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathLT

func PlanArtifactsPathLT(v string) predicate.BacklogItem

PlanArtifactsPathLT applies the LT predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathLTE

func PlanArtifactsPathLTE(v string) predicate.BacklogItem

PlanArtifactsPathLTE applies the LTE predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathNEQ

func PlanArtifactsPathNEQ(v string) predicate.BacklogItem

PlanArtifactsPathNEQ applies the NEQ predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathNotIn

func PlanArtifactsPathNotIn(vs ...string) predicate.BacklogItem

PlanArtifactsPathNotIn applies the NotIn predicate on the "plan_artifacts_path" field.

func PlanArtifactsPathNotNil

func PlanArtifactsPathNotNil() predicate.BacklogItem

PlanArtifactsPathNotNil applies the NotNil predicate on the "plan_artifacts_path" field.

func PrNumber added in v1.37.0

func PrNumber(v int) predicate.BacklogItem

PrNumber applies equality check predicate on the "pr_number" field. It's identical to PrNumberEQ.

func PrNumberEQ added in v1.37.0

func PrNumberEQ(v int) predicate.BacklogItem

PrNumberEQ applies the EQ predicate on the "pr_number" field.

func PrNumberGT added in v1.37.0

func PrNumberGT(v int) predicate.BacklogItem

PrNumberGT applies the GT predicate on the "pr_number" field.

func PrNumberGTE added in v1.37.0

func PrNumberGTE(v int) predicate.BacklogItem

PrNumberGTE applies the GTE predicate on the "pr_number" field.

func PrNumberIn added in v1.37.0

func PrNumberIn(vs ...int) predicate.BacklogItem

PrNumberIn applies the In predicate on the "pr_number" field.

func PrNumberIsNil added in v1.37.0

func PrNumberIsNil() predicate.BacklogItem

PrNumberIsNil applies the IsNil predicate on the "pr_number" field.

func PrNumberLT added in v1.37.0

func PrNumberLT(v int) predicate.BacklogItem

PrNumberLT applies the LT predicate on the "pr_number" field.

func PrNumberLTE added in v1.37.0

func PrNumberLTE(v int) predicate.BacklogItem

PrNumberLTE applies the LTE predicate on the "pr_number" field.

func PrNumberNEQ added in v1.37.0

func PrNumberNEQ(v int) predicate.BacklogItem

PrNumberNEQ applies the NEQ predicate on the "pr_number" field.

func PrNumberNotIn added in v1.37.0

func PrNumberNotIn(vs ...int) predicate.BacklogItem

PrNumberNotIn applies the NotIn predicate on the "pr_number" field.

func PrNumberNotNil added in v1.37.0

func PrNumberNotNil() predicate.BacklogItem

PrNumberNotNil applies the NotNil predicate on the "pr_number" field.

func PrURL added in v1.37.0

func PrURL(v string) predicate.BacklogItem

PrURL applies equality check predicate on the "pr_url" field. It's identical to PrURLEQ.

func PrURLContains added in v1.37.0

func PrURLContains(v string) predicate.BacklogItem

PrURLContains applies the Contains predicate on the "pr_url" field.

func PrURLContainsFold added in v1.37.0

func PrURLContainsFold(v string) predicate.BacklogItem

PrURLContainsFold applies the ContainsFold predicate on the "pr_url" field.

func PrURLEQ added in v1.37.0

func PrURLEQ(v string) predicate.BacklogItem

PrURLEQ applies the EQ predicate on the "pr_url" field.

func PrURLEqualFold added in v1.37.0

func PrURLEqualFold(v string) predicate.BacklogItem

PrURLEqualFold applies the EqualFold predicate on the "pr_url" field.

func PrURLGT added in v1.37.0

func PrURLGT(v string) predicate.BacklogItem

PrURLGT applies the GT predicate on the "pr_url" field.

func PrURLGTE added in v1.37.0

func PrURLGTE(v string) predicate.BacklogItem

PrURLGTE applies the GTE predicate on the "pr_url" field.

func PrURLHasPrefix added in v1.37.0

func PrURLHasPrefix(v string) predicate.BacklogItem

PrURLHasPrefix applies the HasPrefix predicate on the "pr_url" field.

func PrURLHasSuffix added in v1.37.0

func PrURLHasSuffix(v string) predicate.BacklogItem

PrURLHasSuffix applies the HasSuffix predicate on the "pr_url" field.

func PrURLIn added in v1.37.0

func PrURLIn(vs ...string) predicate.BacklogItem

PrURLIn applies the In predicate on the "pr_url" field.

func PrURLIsNil added in v1.37.0

func PrURLIsNil() predicate.BacklogItem

PrURLIsNil applies the IsNil predicate on the "pr_url" field.

func PrURLLT added in v1.37.0

func PrURLLT(v string) predicate.BacklogItem

PrURLLT applies the LT predicate on the "pr_url" field.

func PrURLLTE added in v1.37.0

func PrURLLTE(v string) predicate.BacklogItem

PrURLLTE applies the LTE predicate on the "pr_url" field.

func PrURLNEQ added in v1.37.0

func PrURLNEQ(v string) predicate.BacklogItem

PrURLNEQ applies the NEQ predicate on the "pr_url" field.

func PrURLNotIn added in v1.37.0

func PrURLNotIn(vs ...string) predicate.BacklogItem

PrURLNotIn applies the NotIn predicate on the "pr_url" field.

func PrURLNotNil added in v1.37.0

func PrURLNotNil() predicate.BacklogItem

PrURLNotNil applies the NotNil predicate on the "pr_url" field.

func Priority

func Priority(v int) predicate.BacklogItem

Priority applies equality check predicate on the "priority" field. It's identical to PriorityEQ.

func PriorityEQ

func PriorityEQ(v int) predicate.BacklogItem

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

func PriorityGT

func PriorityGT(v int) predicate.BacklogItem

PriorityGT applies the GT predicate on the "priority" field.

func PriorityGTE

func PriorityGTE(v int) predicate.BacklogItem

PriorityGTE applies the GTE predicate on the "priority" field.

func PriorityIn

func PriorityIn(vs ...int) predicate.BacklogItem

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

func PriorityLT

func PriorityLT(v int) predicate.BacklogItem

PriorityLT applies the LT predicate on the "priority" field.

func PriorityLTE

func PriorityLTE(v int) predicate.BacklogItem

PriorityLTE applies the LTE predicate on the "priority" field.

func PriorityNEQ

func PriorityNEQ(v int) predicate.BacklogItem

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

func PriorityNotIn

func PriorityNotIn(vs ...int) predicate.BacklogItem

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

func RepoPath

func RepoPath(v string) predicate.BacklogItem

RepoPath applies equality check predicate on the "repo_path" field. It's identical to RepoPathEQ.

func RepoPathContains

func RepoPathContains(v string) predicate.BacklogItem

RepoPathContains applies the Contains predicate on the "repo_path" field.

func RepoPathContainsFold

func RepoPathContainsFold(v string) predicate.BacklogItem

RepoPathContainsFold applies the ContainsFold predicate on the "repo_path" field.

func RepoPathEQ

func RepoPathEQ(v string) predicate.BacklogItem

RepoPathEQ applies the EQ predicate on the "repo_path" field.

func RepoPathEqualFold

func RepoPathEqualFold(v string) predicate.BacklogItem

RepoPathEqualFold applies the EqualFold predicate on the "repo_path" field.

func RepoPathGT

func RepoPathGT(v string) predicate.BacklogItem

RepoPathGT applies the GT predicate on the "repo_path" field.

func RepoPathGTE

func RepoPathGTE(v string) predicate.BacklogItem

RepoPathGTE applies the GTE predicate on the "repo_path" field.

func RepoPathHasPrefix

func RepoPathHasPrefix(v string) predicate.BacklogItem

RepoPathHasPrefix applies the HasPrefix predicate on the "repo_path" field.

func RepoPathHasSuffix

func RepoPathHasSuffix(v string) predicate.BacklogItem

RepoPathHasSuffix applies the HasSuffix predicate on the "repo_path" field.

func RepoPathIn

func RepoPathIn(vs ...string) predicate.BacklogItem

RepoPathIn applies the In predicate on the "repo_path" field.

func RepoPathIsNil

func RepoPathIsNil() predicate.BacklogItem

RepoPathIsNil applies the IsNil predicate on the "repo_path" field.

func RepoPathLT

func RepoPathLT(v string) predicate.BacklogItem

RepoPathLT applies the LT predicate on the "repo_path" field.

func RepoPathLTE

func RepoPathLTE(v string) predicate.BacklogItem

RepoPathLTE applies the LTE predicate on the "repo_path" field.

func RepoPathNEQ

func RepoPathNEQ(v string) predicate.BacklogItem

RepoPathNEQ applies the NEQ predicate on the "repo_path" field.

func RepoPathNotIn

func RepoPathNotIn(vs ...string) predicate.BacklogItem

RepoPathNotIn applies the NotIn predicate on the "repo_path" field.

func RepoPathNotNil

func RepoPathNotNil() predicate.BacklogItem

RepoPathNotNil applies the NotNil predicate on the "repo_path" field.

func SkipPlanning

func SkipPlanning(v bool) predicate.BacklogItem

SkipPlanning applies equality check predicate on the "skip_planning" field. It's identical to SkipPlanningEQ.

func SkipPlanningEQ

func SkipPlanningEQ(v bool) predicate.BacklogItem

SkipPlanningEQ applies the EQ predicate on the "skip_planning" field.

func SkipPlanningNEQ

func SkipPlanningNEQ(v bool) predicate.BacklogItem

SkipPlanningNEQ applies the NEQ predicate on the "skip_planning" field.

func SkipReviewGate

func SkipReviewGate(v bool) predicate.BacklogItem

SkipReviewGate applies equality check predicate on the "skip_review_gate" field. It's identical to SkipReviewGateEQ.

func SkipReviewGateEQ

func SkipReviewGateEQ(v bool) predicate.BacklogItem

SkipReviewGateEQ applies the EQ predicate on the "skip_review_gate" field.

func SkipReviewGateNEQ

func SkipReviewGateNEQ(v bool) predicate.BacklogItem

SkipReviewGateNEQ applies the NEQ predicate on the "skip_review_gate" field.

func Status

func Status(v string) predicate.BacklogItem

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

func StatusContains

func StatusContains(v string) predicate.BacklogItem

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

func StatusContainsFold

func StatusContainsFold(v string) predicate.BacklogItem

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

func StatusEQ

func StatusEQ(v string) predicate.BacklogItem

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

func StatusEqualFold

func StatusEqualFold(v string) predicate.BacklogItem

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

func StatusGT

func StatusGT(v string) predicate.BacklogItem

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

func StatusGTE

func StatusGTE(v string) predicate.BacklogItem

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

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.BacklogItem

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

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.BacklogItem

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

func StatusIn

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

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

func StatusLT

func StatusLT(v string) predicate.BacklogItem

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

func StatusLTE

func StatusLTE(v string) predicate.BacklogItem

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

func StatusNEQ

func StatusNEQ(v string) predicate.BacklogItem

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

func StatusNotIn

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

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

func Title

func Title(v string) predicate.BacklogItem

Title applies equality check predicate on the "title" field. It's identical to TitleEQ.

func TitleContains

func TitleContains(v string) predicate.BacklogItem

TitleContains applies the Contains predicate on the "title" field.

func TitleContainsFold

func TitleContainsFold(v string) predicate.BacklogItem

TitleContainsFold applies the ContainsFold predicate on the "title" field.

func TitleEQ

func TitleEQ(v string) predicate.BacklogItem

TitleEQ applies the EQ predicate on the "title" field.

func TitleEqualFold

func TitleEqualFold(v string) predicate.BacklogItem

TitleEqualFold applies the EqualFold predicate on the "title" field.

func TitleGT

func TitleGT(v string) predicate.BacklogItem

TitleGT applies the GT predicate on the "title" field.

func TitleGTE

func TitleGTE(v string) predicate.BacklogItem

TitleGTE applies the GTE predicate on the "title" field.

func TitleHasPrefix

func TitleHasPrefix(v string) predicate.BacklogItem

TitleHasPrefix applies the HasPrefix predicate on the "title" field.

func TitleHasSuffix

func TitleHasSuffix(v string) predicate.BacklogItem

TitleHasSuffix applies the HasSuffix predicate on the "title" field.

func TitleIn

func TitleIn(vs ...string) predicate.BacklogItem

TitleIn applies the In predicate on the "title" field.

func TitleLT

func TitleLT(v string) predicate.BacklogItem

TitleLT applies the LT predicate on the "title" field.

func TitleLTE

func TitleLTE(v string) predicate.BacklogItem

TitleLTE applies the LTE predicate on the "title" field.

func TitleNEQ

func TitleNEQ(v string) predicate.BacklogItem

TitleNEQ applies the NEQ predicate on the "title" field.

func TitleNotIn

func TitleNotIn(vs ...string) predicate.BacklogItem

TitleNotIn applies the NotIn predicate on the "title" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.BacklogItem

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.BacklogItem

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.BacklogItem

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.BacklogItem

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.BacklogItem

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.BacklogItem

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.BacklogItem

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

func UpdatedAtNotIn

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

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

func UserModifiedFields

func UserModifiedFields(v string) predicate.BacklogItem

UserModifiedFields applies equality check predicate on the "user_modified_fields" field. It's identical to UserModifiedFieldsEQ.

func UserModifiedFieldsContains

func UserModifiedFieldsContains(v string) predicate.BacklogItem

UserModifiedFieldsContains applies the Contains predicate on the "user_modified_fields" field.

func UserModifiedFieldsContainsFold

func UserModifiedFieldsContainsFold(v string) predicate.BacklogItem

UserModifiedFieldsContainsFold applies the ContainsFold predicate on the "user_modified_fields" field.

func UserModifiedFieldsEQ

func UserModifiedFieldsEQ(v string) predicate.BacklogItem

UserModifiedFieldsEQ applies the EQ predicate on the "user_modified_fields" field.

func UserModifiedFieldsEqualFold

func UserModifiedFieldsEqualFold(v string) predicate.BacklogItem

UserModifiedFieldsEqualFold applies the EqualFold predicate on the "user_modified_fields" field.

func UserModifiedFieldsGT

func UserModifiedFieldsGT(v string) predicate.BacklogItem

UserModifiedFieldsGT applies the GT predicate on the "user_modified_fields" field.

func UserModifiedFieldsGTE

func UserModifiedFieldsGTE(v string) predicate.BacklogItem

UserModifiedFieldsGTE applies the GTE predicate on the "user_modified_fields" field.

func UserModifiedFieldsHasPrefix

func UserModifiedFieldsHasPrefix(v string) predicate.BacklogItem

UserModifiedFieldsHasPrefix applies the HasPrefix predicate on the "user_modified_fields" field.

func UserModifiedFieldsHasSuffix

func UserModifiedFieldsHasSuffix(v string) predicate.BacklogItem

UserModifiedFieldsHasSuffix applies the HasSuffix predicate on the "user_modified_fields" field.

func UserModifiedFieldsIn

func UserModifiedFieldsIn(vs ...string) predicate.BacklogItem

UserModifiedFieldsIn applies the In predicate on the "user_modified_fields" field.

func UserModifiedFieldsIsNil

func UserModifiedFieldsIsNil() predicate.BacklogItem

UserModifiedFieldsIsNil applies the IsNil predicate on the "user_modified_fields" field.

func UserModifiedFieldsLT

func UserModifiedFieldsLT(v string) predicate.BacklogItem

UserModifiedFieldsLT applies the LT predicate on the "user_modified_fields" field.

func UserModifiedFieldsLTE

func UserModifiedFieldsLTE(v string) predicate.BacklogItem

UserModifiedFieldsLTE applies the LTE predicate on the "user_modified_fields" field.

func UserModifiedFieldsNEQ

func UserModifiedFieldsNEQ(v string) predicate.BacklogItem

UserModifiedFieldsNEQ applies the NEQ predicate on the "user_modified_fields" field.

func UserModifiedFieldsNotIn

func UserModifiedFieldsNotIn(vs ...string) predicate.BacklogItem

UserModifiedFieldsNotIn applies the NotIn predicate on the "user_modified_fields" field.

func UserModifiedFieldsNotNil

func UserModifiedFieldsNotNil() predicate.BacklogItem

UserModifiedFieldsNotNil applies the NotNil predicate on the "user_modified_fields" field.

func UserModifiedStatusAt

func UserModifiedStatusAt(v time.Time) predicate.BacklogItem

UserModifiedStatusAt applies equality check predicate on the "user_modified_status_at" field. It's identical to UserModifiedStatusAtEQ.

func UserModifiedStatusAtEQ

func UserModifiedStatusAtEQ(v time.Time) predicate.BacklogItem

UserModifiedStatusAtEQ applies the EQ predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtGT

func UserModifiedStatusAtGT(v time.Time) predicate.BacklogItem

UserModifiedStatusAtGT applies the GT predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtGTE

func UserModifiedStatusAtGTE(v time.Time) predicate.BacklogItem

UserModifiedStatusAtGTE applies the GTE predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtIn

func UserModifiedStatusAtIn(vs ...time.Time) predicate.BacklogItem

UserModifiedStatusAtIn applies the In predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtIsNil

func UserModifiedStatusAtIsNil() predicate.BacklogItem

UserModifiedStatusAtIsNil applies the IsNil predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtLT

func UserModifiedStatusAtLT(v time.Time) predicate.BacklogItem

UserModifiedStatusAtLT applies the LT predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtLTE

func UserModifiedStatusAtLTE(v time.Time) predicate.BacklogItem

UserModifiedStatusAtLTE applies the LTE predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtNEQ

func UserModifiedStatusAtNEQ(v time.Time) predicate.BacklogItem

UserModifiedStatusAtNEQ applies the NEQ predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtNotIn

func UserModifiedStatusAtNotIn(vs ...time.Time) predicate.BacklogItem

UserModifiedStatusAtNotIn applies the NotIn predicate on the "user_modified_status_at" field.

func UserModifiedStatusAtNotNil

func UserModifiedStatusAtNotNil() predicate.BacklogItem

UserModifiedStatusAtNotNil applies the NotNil predicate on the "user_modified_status_at" 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 BacklogItem queries.

func ByAcceptanceCriteria

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

ByAcceptanceCriteria orders the results by the acceptance_criteria field.

func ByArchivedAt

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

ByArchivedAt orders the results by the archived_at field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDescription

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

ByDescription orders the results by the description field.

func ByExternalID

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

ByExternalID orders the results by the external_id field.

func ByID

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

ByID orders the results by the id field.

func ByItemSessions

func ByItemSessions(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByItemSessions orders the results by item_sessions terms.

func ByItemSessionsCount

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

ByItemSessionsCount orders the results by item_sessions count.

func ByNotes

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

ByNotes orders the results by the notes field.

func ByPlanApproved

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

ByPlanApproved orders the results by the plan_approved field.

func ByPlanApprovedAt

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

ByPlanApprovedAt orders the results by the plan_approved_at field.

func ByPlanArtifactsPath

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

ByPlanArtifactsPath orders the results by the plan_artifacts_path field.

func ByPrNumber added in v1.37.0

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

ByPrNumber orders the results by the pr_number field.

func ByPrURL added in v1.37.0

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

ByPrURL orders the results by the pr_url field.

func ByPriority

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

ByPriority orders the results by the priority field.

func ByRepoPath

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

ByRepoPath orders the results by the repo_path field.

func BySessions

func BySessions(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

BySessions orders the results by sessions terms.

func BySessionsCount

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

BySessionsCount orders the results by sessions count.

func BySkipPlanning

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

BySkipPlanning orders the results by the skip_planning field.

func BySkipReviewGate

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

BySkipReviewGate orders the results by the skip_review_gate field.

func BySourceField

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

BySourceField orders the results by source field.

func ByStatus

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

ByStatus orders the results by the status field.

func ByStatusEvents

func ByStatusEvents(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByStatusEvents orders the results by status_events terms.

func ByStatusEventsCount

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

ByStatusEventsCount orders the results by status_events count.

func ByTitle

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

ByTitle orders the results by the title field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUserModifiedFields

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

ByUserModifiedFields orders the results by the user_modified_fields field.

func ByUserModifiedStatusAt

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

ByUserModifiedStatusAt orders the results by the user_modified_status_at field.

Jump to

Keyboard shortcuts

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