itemsession

package
v1.42.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the itemsession type in the database.
	Label = "item_session"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldSessionUUID holds the string denoting the session_uuid field in the database.
	FieldSessionUUID = "session_uuid"
	// FieldSessionRole holds the string denoting the session_role field in the database.
	FieldSessionRole = "session_role"
	// FieldStartedAt holds the string denoting the started_at field in the database.
	FieldStartedAt = "started_at"
	// FieldEndedAt holds the string denoting the ended_at field in the database.
	FieldEndedAt = "ended_at"
	// FieldEndReason holds the string denoting the end_reason field in the database.
	FieldEndReason = "end_reason"
	// FieldFailureCapturePath holds the string denoting the failure_capture_path field in the database.
	FieldFailureCapturePath = "failure_capture_path"
	// FieldAcSnapshot holds the string denoting the ac_snapshot field in the database.
	FieldAcSnapshot = "ac_snapshot"
	// FieldPipelineModeSnapshot holds the string denoting the pipeline_mode_snapshot field in the database.
	FieldPipelineModeSnapshot = "pipeline_mode_snapshot"
	// FieldPipelineModeSnapshotHash holds the string denoting the pipeline_mode_snapshot_hash field in the database.
	FieldPipelineModeSnapshotHash = "pipeline_mode_snapshot_hash"
	// FieldTriageResult holds the string denoting the triage_result field in the database.
	FieldTriageResult = "triage_result"
	// FieldVerificationNotes holds the string denoting the verification_notes field in the database.
	FieldVerificationNotes = "verification_notes"
	// FieldBaseCommitSha holds the string denoting the base_commit_sha field in the database.
	FieldBaseCommitSha = "base_commit_sha"
	// FieldLastCommitSha holds the string denoting the last_commit_sha field in the database.
	FieldLastCommitSha = "last_commit_sha"
	// FieldLastCommitAt holds the string denoting the last_commit_at field in the database.
	FieldLastCommitAt = "last_commit_at"
	// FieldLastCommitMessage holds the string denoting the last_commit_message field in the database.
	FieldLastCommitMessage = "last_commit_message"
	// FieldCommitCountSinceSpawn holds the string denoting the commit_count_since_spawn field in the database.
	FieldCommitCountSinceSpawn = "commit_count_since_spawn"
	// FieldLastFileTouchAt holds the string denoting the last_file_touch_at field in the database.
	FieldLastFileTouchAt = "last_file_touch_at"
	// FieldLastProgressAt holds the string denoting the last_progress_at field in the database.
	FieldLastProgressAt = "last_progress_at"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldEstimatedCostUsd holds the string denoting the estimated_cost_usd field in the database.
	FieldEstimatedCostUsd = "estimated_cost_usd"
	// EdgeBacklogItem holds the string denoting the backlog_item edge name in mutations.
	EdgeBacklogItem = "backlog_item"
	// EdgeReviewVerdict holds the string denoting the review_verdict edge name in mutations.
	EdgeReviewVerdict = "review_verdict"
	// Table holds the table name of the itemsession in the database.
	Table = "item_sessions"
	// BacklogItemTable is the table that holds the backlog_item relation/edge.
	BacklogItemTable = "item_sessions"
	// BacklogItemInverseTable is the table name for the BacklogItem entity.
	// It exists in this package in order to avoid circular dependency with the "backlogitem" package.
	BacklogItemInverseTable = "backlog_items"
	// BacklogItemColumn is the table column denoting the backlog_item relation/edge.
	BacklogItemColumn = "backlog_item_item_sessions"
	// ReviewVerdictTable is the table that holds the review_verdict relation/edge.
	ReviewVerdictTable = "review_verdicts"
	// ReviewVerdictInverseTable is the table name for the ReviewVerdict entity.
	// It exists in this package in order to avoid circular dependency with the "reviewverdict" package.
	ReviewVerdictInverseTable = "review_verdicts"
	// ReviewVerdictColumn is the table column denoting the review_verdict relation/edge.
	ReviewVerdictColumn = "item_session_review_verdict"
)

Variables

View Source
var (
	// DefaultEndReason holds the default value on creation for the "end_reason" field.
	DefaultEndReason string
	// DefaultFailureCapturePath holds the default value on creation for the "failure_capture_path" field.
	DefaultFailureCapturePath string
	// DefaultPipelineModeSnapshot holds the default value on creation for the "pipeline_mode_snapshot" field.
	DefaultPipelineModeSnapshot string
	// DefaultPipelineModeSnapshotHash holds the default value on creation for the "pipeline_mode_snapshot_hash" field.
	DefaultPipelineModeSnapshotHash string
	// DefaultBaseCommitSha holds the default value on creation for the "base_commit_sha" field.
	DefaultBaseCommitSha string
	// DefaultCommitCountSinceSpawn holds the default value on creation for the "commit_count_since_spawn" field.
	DefaultCommitCountSinceSpawn int
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultEstimatedCostUsd holds the default value on creation for the "estimated_cost_usd" field.
	DefaultEstimatedCostUsd float64
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for itemsession fields.

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

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

Functions

func AcSnapshot

func AcSnapshot(v string) predicate.ItemSession

AcSnapshot applies equality check predicate on the "ac_snapshot" field. It's identical to AcSnapshotEQ.

func AcSnapshotContains

func AcSnapshotContains(v string) predicate.ItemSession

AcSnapshotContains applies the Contains predicate on the "ac_snapshot" field.

func AcSnapshotContainsFold

func AcSnapshotContainsFold(v string) predicate.ItemSession

AcSnapshotContainsFold applies the ContainsFold predicate on the "ac_snapshot" field.

func AcSnapshotEQ

func AcSnapshotEQ(v string) predicate.ItemSession

AcSnapshotEQ applies the EQ predicate on the "ac_snapshot" field.

func AcSnapshotEqualFold

func AcSnapshotEqualFold(v string) predicate.ItemSession

AcSnapshotEqualFold applies the EqualFold predicate on the "ac_snapshot" field.

func AcSnapshotGT

func AcSnapshotGT(v string) predicate.ItemSession

AcSnapshotGT applies the GT predicate on the "ac_snapshot" field.

func AcSnapshotGTE

func AcSnapshotGTE(v string) predicate.ItemSession

AcSnapshotGTE applies the GTE predicate on the "ac_snapshot" field.

func AcSnapshotHasPrefix

func AcSnapshotHasPrefix(v string) predicate.ItemSession

AcSnapshotHasPrefix applies the HasPrefix predicate on the "ac_snapshot" field.

func AcSnapshotHasSuffix

func AcSnapshotHasSuffix(v string) predicate.ItemSession

AcSnapshotHasSuffix applies the HasSuffix predicate on the "ac_snapshot" field.

func AcSnapshotIn

func AcSnapshotIn(vs ...string) predicate.ItemSession

AcSnapshotIn applies the In predicate on the "ac_snapshot" field.

func AcSnapshotIsNil

func AcSnapshotIsNil() predicate.ItemSession

AcSnapshotIsNil applies the IsNil predicate on the "ac_snapshot" field.

func AcSnapshotLT

func AcSnapshotLT(v string) predicate.ItemSession

AcSnapshotLT applies the LT predicate on the "ac_snapshot" field.

func AcSnapshotLTE

func AcSnapshotLTE(v string) predicate.ItemSession

AcSnapshotLTE applies the LTE predicate on the "ac_snapshot" field.

func AcSnapshotNEQ

func AcSnapshotNEQ(v string) predicate.ItemSession

AcSnapshotNEQ applies the NEQ predicate on the "ac_snapshot" field.

func AcSnapshotNotIn

func AcSnapshotNotIn(vs ...string) predicate.ItemSession

AcSnapshotNotIn applies the NotIn predicate on the "ac_snapshot" field.

func AcSnapshotNotNil

func AcSnapshotNotNil() predicate.ItemSession

AcSnapshotNotNil applies the NotNil predicate on the "ac_snapshot" field.

func And

func And(predicates ...predicate.ItemSession) predicate.ItemSession

And groups predicates with the AND operator between them.

func BaseCommitSha added in v1.41.0

func BaseCommitSha(v string) predicate.ItemSession

BaseCommitSha applies equality check predicate on the "base_commit_sha" field. It's identical to BaseCommitShaEQ.

func BaseCommitShaContains added in v1.41.0

func BaseCommitShaContains(v string) predicate.ItemSession

BaseCommitShaContains applies the Contains predicate on the "base_commit_sha" field.

func BaseCommitShaContainsFold added in v1.41.0

func BaseCommitShaContainsFold(v string) predicate.ItemSession

BaseCommitShaContainsFold applies the ContainsFold predicate on the "base_commit_sha" field.

func BaseCommitShaEQ added in v1.41.0

func BaseCommitShaEQ(v string) predicate.ItemSession

BaseCommitShaEQ applies the EQ predicate on the "base_commit_sha" field.

func BaseCommitShaEqualFold added in v1.41.0

func BaseCommitShaEqualFold(v string) predicate.ItemSession

BaseCommitShaEqualFold applies the EqualFold predicate on the "base_commit_sha" field.

func BaseCommitShaGT added in v1.41.0

func BaseCommitShaGT(v string) predicate.ItemSession

BaseCommitShaGT applies the GT predicate on the "base_commit_sha" field.

func BaseCommitShaGTE added in v1.41.0

func BaseCommitShaGTE(v string) predicate.ItemSession

BaseCommitShaGTE applies the GTE predicate on the "base_commit_sha" field.

func BaseCommitShaHasPrefix added in v1.41.0

func BaseCommitShaHasPrefix(v string) predicate.ItemSession

BaseCommitShaHasPrefix applies the HasPrefix predicate on the "base_commit_sha" field.

func BaseCommitShaHasSuffix added in v1.41.0

func BaseCommitShaHasSuffix(v string) predicate.ItemSession

BaseCommitShaHasSuffix applies the HasSuffix predicate on the "base_commit_sha" field.

func BaseCommitShaIn added in v1.41.0

func BaseCommitShaIn(vs ...string) predicate.ItemSession

BaseCommitShaIn applies the In predicate on the "base_commit_sha" field.

func BaseCommitShaIsNil added in v1.41.0

func BaseCommitShaIsNil() predicate.ItemSession

BaseCommitShaIsNil applies the IsNil predicate on the "base_commit_sha" field.

func BaseCommitShaLT added in v1.41.0

func BaseCommitShaLT(v string) predicate.ItemSession

BaseCommitShaLT applies the LT predicate on the "base_commit_sha" field.

func BaseCommitShaLTE added in v1.41.0

func BaseCommitShaLTE(v string) predicate.ItemSession

BaseCommitShaLTE applies the LTE predicate on the "base_commit_sha" field.

func BaseCommitShaNEQ added in v1.41.0

func BaseCommitShaNEQ(v string) predicate.ItemSession

BaseCommitShaNEQ applies the NEQ predicate on the "base_commit_sha" field.

func BaseCommitShaNotIn added in v1.41.0

func BaseCommitShaNotIn(vs ...string) predicate.ItemSession

BaseCommitShaNotIn applies the NotIn predicate on the "base_commit_sha" field.

func BaseCommitShaNotNil added in v1.41.0

func BaseCommitShaNotNil() predicate.ItemSession

BaseCommitShaNotNil applies the NotNil predicate on the "base_commit_sha" field.

func CommitCountSinceSpawn

func CommitCountSinceSpawn(v int) predicate.ItemSession

CommitCountSinceSpawn applies equality check predicate on the "commit_count_since_spawn" field. It's identical to CommitCountSinceSpawnEQ.

func CommitCountSinceSpawnEQ

func CommitCountSinceSpawnEQ(v int) predicate.ItemSession

CommitCountSinceSpawnEQ applies the EQ predicate on the "commit_count_since_spawn" field.

func CommitCountSinceSpawnGT

func CommitCountSinceSpawnGT(v int) predicate.ItemSession

CommitCountSinceSpawnGT applies the GT predicate on the "commit_count_since_spawn" field.

func CommitCountSinceSpawnGTE

func CommitCountSinceSpawnGTE(v int) predicate.ItemSession

CommitCountSinceSpawnGTE applies the GTE predicate on the "commit_count_since_spawn" field.

func CommitCountSinceSpawnIn

func CommitCountSinceSpawnIn(vs ...int) predicate.ItemSession

CommitCountSinceSpawnIn applies the In predicate on the "commit_count_since_spawn" field.

func CommitCountSinceSpawnLT

func CommitCountSinceSpawnLT(v int) predicate.ItemSession

CommitCountSinceSpawnLT applies the LT predicate on the "commit_count_since_spawn" field.

func CommitCountSinceSpawnLTE

func CommitCountSinceSpawnLTE(v int) predicate.ItemSession

CommitCountSinceSpawnLTE applies the LTE predicate on the "commit_count_since_spawn" field.

func CommitCountSinceSpawnNEQ

func CommitCountSinceSpawnNEQ(v int) predicate.ItemSession

CommitCountSinceSpawnNEQ applies the NEQ predicate on the "commit_count_since_spawn" field.

func CommitCountSinceSpawnNotIn

func CommitCountSinceSpawnNotIn(vs ...int) predicate.ItemSession

CommitCountSinceSpawnNotIn applies the NotIn predicate on the "commit_count_since_spawn" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.ItemSession

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ItemSession

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ItemSession

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ItemSession

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ItemSession

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ItemSession

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ItemSession

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

func CreatedAtNotIn

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

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

func EndReason added in v1.41.0

func EndReason(v string) predicate.ItemSession

EndReason applies equality check predicate on the "end_reason" field. It's identical to EndReasonEQ.

func EndReasonContains added in v1.41.0

func EndReasonContains(v string) predicate.ItemSession

EndReasonContains applies the Contains predicate on the "end_reason" field.

func EndReasonContainsFold added in v1.41.0

func EndReasonContainsFold(v string) predicate.ItemSession

EndReasonContainsFold applies the ContainsFold predicate on the "end_reason" field.

func EndReasonEQ added in v1.41.0

func EndReasonEQ(v string) predicate.ItemSession

EndReasonEQ applies the EQ predicate on the "end_reason" field.

func EndReasonEqualFold added in v1.41.0

func EndReasonEqualFold(v string) predicate.ItemSession

EndReasonEqualFold applies the EqualFold predicate on the "end_reason" field.

func EndReasonGT added in v1.41.0

func EndReasonGT(v string) predicate.ItemSession

EndReasonGT applies the GT predicate on the "end_reason" field.

func EndReasonGTE added in v1.41.0

func EndReasonGTE(v string) predicate.ItemSession

EndReasonGTE applies the GTE predicate on the "end_reason" field.

func EndReasonHasPrefix added in v1.41.0

func EndReasonHasPrefix(v string) predicate.ItemSession

EndReasonHasPrefix applies the HasPrefix predicate on the "end_reason" field.

func EndReasonHasSuffix added in v1.41.0

func EndReasonHasSuffix(v string) predicate.ItemSession

EndReasonHasSuffix applies the HasSuffix predicate on the "end_reason" field.

func EndReasonIn added in v1.41.0

func EndReasonIn(vs ...string) predicate.ItemSession

EndReasonIn applies the In predicate on the "end_reason" field.

func EndReasonIsNil added in v1.41.0

func EndReasonIsNil() predicate.ItemSession

EndReasonIsNil applies the IsNil predicate on the "end_reason" field.

func EndReasonLT added in v1.41.0

func EndReasonLT(v string) predicate.ItemSession

EndReasonLT applies the LT predicate on the "end_reason" field.

func EndReasonLTE added in v1.41.0

func EndReasonLTE(v string) predicate.ItemSession

EndReasonLTE applies the LTE predicate on the "end_reason" field.

func EndReasonNEQ added in v1.41.0

func EndReasonNEQ(v string) predicate.ItemSession

EndReasonNEQ applies the NEQ predicate on the "end_reason" field.

func EndReasonNotIn added in v1.41.0

func EndReasonNotIn(vs ...string) predicate.ItemSession

EndReasonNotIn applies the NotIn predicate on the "end_reason" field.

func EndReasonNotNil added in v1.41.0

func EndReasonNotNil() predicate.ItemSession

EndReasonNotNil applies the NotNil predicate on the "end_reason" field.

func EndedAt

func EndedAt(v time.Time) predicate.ItemSession

EndedAt applies equality check predicate on the "ended_at" field. It's identical to EndedAtEQ.

func EndedAtEQ

func EndedAtEQ(v time.Time) predicate.ItemSession

EndedAtEQ applies the EQ predicate on the "ended_at" field.

func EndedAtGT

func EndedAtGT(v time.Time) predicate.ItemSession

EndedAtGT applies the GT predicate on the "ended_at" field.

func EndedAtGTE

func EndedAtGTE(v time.Time) predicate.ItemSession

EndedAtGTE applies the GTE predicate on the "ended_at" field.

func EndedAtIn

func EndedAtIn(vs ...time.Time) predicate.ItemSession

EndedAtIn applies the In predicate on the "ended_at" field.

func EndedAtIsNil

func EndedAtIsNil() predicate.ItemSession

EndedAtIsNil applies the IsNil predicate on the "ended_at" field.

func EndedAtLT

func EndedAtLT(v time.Time) predicate.ItemSession

EndedAtLT applies the LT predicate on the "ended_at" field.

func EndedAtLTE

func EndedAtLTE(v time.Time) predicate.ItemSession

EndedAtLTE applies the LTE predicate on the "ended_at" field.

func EndedAtNEQ

func EndedAtNEQ(v time.Time) predicate.ItemSession

EndedAtNEQ applies the NEQ predicate on the "ended_at" field.

func EndedAtNotIn

func EndedAtNotIn(vs ...time.Time) predicate.ItemSession

EndedAtNotIn applies the NotIn predicate on the "ended_at" field.

func EndedAtNotNil

func EndedAtNotNil() predicate.ItemSession

EndedAtNotNil applies the NotNil predicate on the "ended_at" field.

func EstimatedCostUsd added in v1.37.0

func EstimatedCostUsd(v float64) predicate.ItemSession

EstimatedCostUsd applies equality check predicate on the "estimated_cost_usd" field. It's identical to EstimatedCostUsdEQ.

func EstimatedCostUsdEQ added in v1.37.0

func EstimatedCostUsdEQ(v float64) predicate.ItemSession

EstimatedCostUsdEQ applies the EQ predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdGT added in v1.37.0

func EstimatedCostUsdGT(v float64) predicate.ItemSession

EstimatedCostUsdGT applies the GT predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdGTE added in v1.37.0

func EstimatedCostUsdGTE(v float64) predicate.ItemSession

EstimatedCostUsdGTE applies the GTE predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdIn added in v1.37.0

func EstimatedCostUsdIn(vs ...float64) predicate.ItemSession

EstimatedCostUsdIn applies the In predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdIsNil added in v1.37.0

func EstimatedCostUsdIsNil() predicate.ItemSession

EstimatedCostUsdIsNil applies the IsNil predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdLT added in v1.37.0

func EstimatedCostUsdLT(v float64) predicate.ItemSession

EstimatedCostUsdLT applies the LT predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdLTE added in v1.37.0

func EstimatedCostUsdLTE(v float64) predicate.ItemSession

EstimatedCostUsdLTE applies the LTE predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdNEQ added in v1.37.0

func EstimatedCostUsdNEQ(v float64) predicate.ItemSession

EstimatedCostUsdNEQ applies the NEQ predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdNotIn added in v1.37.0

func EstimatedCostUsdNotIn(vs ...float64) predicate.ItemSession

EstimatedCostUsdNotIn applies the NotIn predicate on the "estimated_cost_usd" field.

func EstimatedCostUsdNotNil added in v1.37.0

func EstimatedCostUsdNotNil() predicate.ItemSession

EstimatedCostUsdNotNil applies the NotNil predicate on the "estimated_cost_usd" field.

func FailureCapturePath added in v1.42.0

func FailureCapturePath(v string) predicate.ItemSession

FailureCapturePath applies equality check predicate on the "failure_capture_path" field. It's identical to FailureCapturePathEQ.

func FailureCapturePathContains added in v1.42.0

func FailureCapturePathContains(v string) predicate.ItemSession

FailureCapturePathContains applies the Contains predicate on the "failure_capture_path" field.

func FailureCapturePathContainsFold added in v1.42.0

func FailureCapturePathContainsFold(v string) predicate.ItemSession

FailureCapturePathContainsFold applies the ContainsFold predicate on the "failure_capture_path" field.

func FailureCapturePathEQ added in v1.42.0

func FailureCapturePathEQ(v string) predicate.ItemSession

FailureCapturePathEQ applies the EQ predicate on the "failure_capture_path" field.

func FailureCapturePathEqualFold added in v1.42.0

func FailureCapturePathEqualFold(v string) predicate.ItemSession

FailureCapturePathEqualFold applies the EqualFold predicate on the "failure_capture_path" field.

func FailureCapturePathGT added in v1.42.0

func FailureCapturePathGT(v string) predicate.ItemSession

FailureCapturePathGT applies the GT predicate on the "failure_capture_path" field.

func FailureCapturePathGTE added in v1.42.0

func FailureCapturePathGTE(v string) predicate.ItemSession

FailureCapturePathGTE applies the GTE predicate on the "failure_capture_path" field.

func FailureCapturePathHasPrefix added in v1.42.0

func FailureCapturePathHasPrefix(v string) predicate.ItemSession

FailureCapturePathHasPrefix applies the HasPrefix predicate on the "failure_capture_path" field.

func FailureCapturePathHasSuffix added in v1.42.0

func FailureCapturePathHasSuffix(v string) predicate.ItemSession

FailureCapturePathHasSuffix applies the HasSuffix predicate on the "failure_capture_path" field.

func FailureCapturePathIn added in v1.42.0

func FailureCapturePathIn(vs ...string) predicate.ItemSession

FailureCapturePathIn applies the In predicate on the "failure_capture_path" field.

func FailureCapturePathIsNil added in v1.42.0

func FailureCapturePathIsNil() predicate.ItemSession

FailureCapturePathIsNil applies the IsNil predicate on the "failure_capture_path" field.

func FailureCapturePathLT added in v1.42.0

func FailureCapturePathLT(v string) predicate.ItemSession

FailureCapturePathLT applies the LT predicate on the "failure_capture_path" field.

func FailureCapturePathLTE added in v1.42.0

func FailureCapturePathLTE(v string) predicate.ItemSession

FailureCapturePathLTE applies the LTE predicate on the "failure_capture_path" field.

func FailureCapturePathNEQ added in v1.42.0

func FailureCapturePathNEQ(v string) predicate.ItemSession

FailureCapturePathNEQ applies the NEQ predicate on the "failure_capture_path" field.

func FailureCapturePathNotIn added in v1.42.0

func FailureCapturePathNotIn(vs ...string) predicate.ItemSession

FailureCapturePathNotIn applies the NotIn predicate on the "failure_capture_path" field.

func FailureCapturePathNotNil added in v1.42.0

func FailureCapturePathNotNil() predicate.ItemSession

FailureCapturePathNotNil applies the NotNil predicate on the "failure_capture_path" field.

func HasBacklogItem

func HasBacklogItem() predicate.ItemSession

HasBacklogItem applies the HasEdge predicate on the "backlog_item" edge.

func HasBacklogItemWith

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

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

func HasReviewVerdict

func HasReviewVerdict() predicate.ItemSession

HasReviewVerdict applies the HasEdge predicate on the "review_verdict" edge.

func HasReviewVerdictWith

func HasReviewVerdictWith(preds ...predicate.ReviewVerdict) predicate.ItemSession

HasReviewVerdictWith applies the HasEdge predicate on the "review_verdict" 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.ItemSession

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.ItemSession

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.ItemSession

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.ItemSession

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.ItemSession

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.ItemSession

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func LastCommitAt

func LastCommitAt(v time.Time) predicate.ItemSession

LastCommitAt applies equality check predicate on the "last_commit_at" field. It's identical to LastCommitAtEQ.

func LastCommitAtEQ

func LastCommitAtEQ(v time.Time) predicate.ItemSession

LastCommitAtEQ applies the EQ predicate on the "last_commit_at" field.

func LastCommitAtGT

func LastCommitAtGT(v time.Time) predicate.ItemSession

LastCommitAtGT applies the GT predicate on the "last_commit_at" field.

func LastCommitAtGTE

func LastCommitAtGTE(v time.Time) predicate.ItemSession

LastCommitAtGTE applies the GTE predicate on the "last_commit_at" field.

func LastCommitAtIn

func LastCommitAtIn(vs ...time.Time) predicate.ItemSession

LastCommitAtIn applies the In predicate on the "last_commit_at" field.

func LastCommitAtIsNil

func LastCommitAtIsNil() predicate.ItemSession

LastCommitAtIsNil applies the IsNil predicate on the "last_commit_at" field.

func LastCommitAtLT

func LastCommitAtLT(v time.Time) predicate.ItemSession

LastCommitAtLT applies the LT predicate on the "last_commit_at" field.

func LastCommitAtLTE

func LastCommitAtLTE(v time.Time) predicate.ItemSession

LastCommitAtLTE applies the LTE predicate on the "last_commit_at" field.

func LastCommitAtNEQ

func LastCommitAtNEQ(v time.Time) predicate.ItemSession

LastCommitAtNEQ applies the NEQ predicate on the "last_commit_at" field.

func LastCommitAtNotIn

func LastCommitAtNotIn(vs ...time.Time) predicate.ItemSession

LastCommitAtNotIn applies the NotIn predicate on the "last_commit_at" field.

func LastCommitAtNotNil

func LastCommitAtNotNil() predicate.ItemSession

LastCommitAtNotNil applies the NotNil predicate on the "last_commit_at" field.

func LastCommitMessage

func LastCommitMessage(v string) predicate.ItemSession

LastCommitMessage applies equality check predicate on the "last_commit_message" field. It's identical to LastCommitMessageEQ.

func LastCommitMessageContains

func LastCommitMessageContains(v string) predicate.ItemSession

LastCommitMessageContains applies the Contains predicate on the "last_commit_message" field.

func LastCommitMessageContainsFold

func LastCommitMessageContainsFold(v string) predicate.ItemSession

LastCommitMessageContainsFold applies the ContainsFold predicate on the "last_commit_message" field.

func LastCommitMessageEQ

func LastCommitMessageEQ(v string) predicate.ItemSession

LastCommitMessageEQ applies the EQ predicate on the "last_commit_message" field.

func LastCommitMessageEqualFold

func LastCommitMessageEqualFold(v string) predicate.ItemSession

LastCommitMessageEqualFold applies the EqualFold predicate on the "last_commit_message" field.

func LastCommitMessageGT

func LastCommitMessageGT(v string) predicate.ItemSession

LastCommitMessageGT applies the GT predicate on the "last_commit_message" field.

func LastCommitMessageGTE

func LastCommitMessageGTE(v string) predicate.ItemSession

LastCommitMessageGTE applies the GTE predicate on the "last_commit_message" field.

func LastCommitMessageHasPrefix

func LastCommitMessageHasPrefix(v string) predicate.ItemSession

LastCommitMessageHasPrefix applies the HasPrefix predicate on the "last_commit_message" field.

func LastCommitMessageHasSuffix

func LastCommitMessageHasSuffix(v string) predicate.ItemSession

LastCommitMessageHasSuffix applies the HasSuffix predicate on the "last_commit_message" field.

func LastCommitMessageIn

func LastCommitMessageIn(vs ...string) predicate.ItemSession

LastCommitMessageIn applies the In predicate on the "last_commit_message" field.

func LastCommitMessageIsNil

func LastCommitMessageIsNil() predicate.ItemSession

LastCommitMessageIsNil applies the IsNil predicate on the "last_commit_message" field.

func LastCommitMessageLT

func LastCommitMessageLT(v string) predicate.ItemSession

LastCommitMessageLT applies the LT predicate on the "last_commit_message" field.

func LastCommitMessageLTE

func LastCommitMessageLTE(v string) predicate.ItemSession

LastCommitMessageLTE applies the LTE predicate on the "last_commit_message" field.

func LastCommitMessageNEQ

func LastCommitMessageNEQ(v string) predicate.ItemSession

LastCommitMessageNEQ applies the NEQ predicate on the "last_commit_message" field.

func LastCommitMessageNotIn

func LastCommitMessageNotIn(vs ...string) predicate.ItemSession

LastCommitMessageNotIn applies the NotIn predicate on the "last_commit_message" field.

func LastCommitMessageNotNil

func LastCommitMessageNotNil() predicate.ItemSession

LastCommitMessageNotNil applies the NotNil predicate on the "last_commit_message" field.

func LastCommitSha

func LastCommitSha(v string) predicate.ItemSession

LastCommitSha applies equality check predicate on the "last_commit_sha" field. It's identical to LastCommitShaEQ.

func LastCommitShaContains

func LastCommitShaContains(v string) predicate.ItemSession

LastCommitShaContains applies the Contains predicate on the "last_commit_sha" field.

func LastCommitShaContainsFold

func LastCommitShaContainsFold(v string) predicate.ItemSession

LastCommitShaContainsFold applies the ContainsFold predicate on the "last_commit_sha" field.

func LastCommitShaEQ

func LastCommitShaEQ(v string) predicate.ItemSession

LastCommitShaEQ applies the EQ predicate on the "last_commit_sha" field.

func LastCommitShaEqualFold

func LastCommitShaEqualFold(v string) predicate.ItemSession

LastCommitShaEqualFold applies the EqualFold predicate on the "last_commit_sha" field.

func LastCommitShaGT

func LastCommitShaGT(v string) predicate.ItemSession

LastCommitShaGT applies the GT predicate on the "last_commit_sha" field.

func LastCommitShaGTE

func LastCommitShaGTE(v string) predicate.ItemSession

LastCommitShaGTE applies the GTE predicate on the "last_commit_sha" field.

func LastCommitShaHasPrefix

func LastCommitShaHasPrefix(v string) predicate.ItemSession

LastCommitShaHasPrefix applies the HasPrefix predicate on the "last_commit_sha" field.

func LastCommitShaHasSuffix

func LastCommitShaHasSuffix(v string) predicate.ItemSession

LastCommitShaHasSuffix applies the HasSuffix predicate on the "last_commit_sha" field.

func LastCommitShaIn

func LastCommitShaIn(vs ...string) predicate.ItemSession

LastCommitShaIn applies the In predicate on the "last_commit_sha" field.

func LastCommitShaIsNil

func LastCommitShaIsNil() predicate.ItemSession

LastCommitShaIsNil applies the IsNil predicate on the "last_commit_sha" field.

func LastCommitShaLT

func LastCommitShaLT(v string) predicate.ItemSession

LastCommitShaLT applies the LT predicate on the "last_commit_sha" field.

func LastCommitShaLTE

func LastCommitShaLTE(v string) predicate.ItemSession

LastCommitShaLTE applies the LTE predicate on the "last_commit_sha" field.

func LastCommitShaNEQ

func LastCommitShaNEQ(v string) predicate.ItemSession

LastCommitShaNEQ applies the NEQ predicate on the "last_commit_sha" field.

func LastCommitShaNotIn

func LastCommitShaNotIn(vs ...string) predicate.ItemSession

LastCommitShaNotIn applies the NotIn predicate on the "last_commit_sha" field.

func LastCommitShaNotNil

func LastCommitShaNotNil() predicate.ItemSession

LastCommitShaNotNil applies the NotNil predicate on the "last_commit_sha" field.

func LastFileTouchAt

func LastFileTouchAt(v time.Time) predicate.ItemSession

LastFileTouchAt applies equality check predicate on the "last_file_touch_at" field. It's identical to LastFileTouchAtEQ.

func LastFileTouchAtEQ

func LastFileTouchAtEQ(v time.Time) predicate.ItemSession

LastFileTouchAtEQ applies the EQ predicate on the "last_file_touch_at" field.

func LastFileTouchAtGT

func LastFileTouchAtGT(v time.Time) predicate.ItemSession

LastFileTouchAtGT applies the GT predicate on the "last_file_touch_at" field.

func LastFileTouchAtGTE

func LastFileTouchAtGTE(v time.Time) predicate.ItemSession

LastFileTouchAtGTE applies the GTE predicate on the "last_file_touch_at" field.

func LastFileTouchAtIn

func LastFileTouchAtIn(vs ...time.Time) predicate.ItemSession

LastFileTouchAtIn applies the In predicate on the "last_file_touch_at" field.

func LastFileTouchAtIsNil

func LastFileTouchAtIsNil() predicate.ItemSession

LastFileTouchAtIsNil applies the IsNil predicate on the "last_file_touch_at" field.

func LastFileTouchAtLT

func LastFileTouchAtLT(v time.Time) predicate.ItemSession

LastFileTouchAtLT applies the LT predicate on the "last_file_touch_at" field.

func LastFileTouchAtLTE

func LastFileTouchAtLTE(v time.Time) predicate.ItemSession

LastFileTouchAtLTE applies the LTE predicate on the "last_file_touch_at" field.

func LastFileTouchAtNEQ

func LastFileTouchAtNEQ(v time.Time) predicate.ItemSession

LastFileTouchAtNEQ applies the NEQ predicate on the "last_file_touch_at" field.

func LastFileTouchAtNotIn

func LastFileTouchAtNotIn(vs ...time.Time) predicate.ItemSession

LastFileTouchAtNotIn applies the NotIn predicate on the "last_file_touch_at" field.

func LastFileTouchAtNotNil

func LastFileTouchAtNotNil() predicate.ItemSession

LastFileTouchAtNotNil applies the NotNil predicate on the "last_file_touch_at" field.

func LastProgressAt

func LastProgressAt(v time.Time) predicate.ItemSession

LastProgressAt applies equality check predicate on the "last_progress_at" field. It's identical to LastProgressAtEQ.

func LastProgressAtEQ

func LastProgressAtEQ(v time.Time) predicate.ItemSession

LastProgressAtEQ applies the EQ predicate on the "last_progress_at" field.

func LastProgressAtGT

func LastProgressAtGT(v time.Time) predicate.ItemSession

LastProgressAtGT applies the GT predicate on the "last_progress_at" field.

func LastProgressAtGTE

func LastProgressAtGTE(v time.Time) predicate.ItemSession

LastProgressAtGTE applies the GTE predicate on the "last_progress_at" field.

func LastProgressAtIn

func LastProgressAtIn(vs ...time.Time) predicate.ItemSession

LastProgressAtIn applies the In predicate on the "last_progress_at" field.

func LastProgressAtIsNil

func LastProgressAtIsNil() predicate.ItemSession

LastProgressAtIsNil applies the IsNil predicate on the "last_progress_at" field.

func LastProgressAtLT

func LastProgressAtLT(v time.Time) predicate.ItemSession

LastProgressAtLT applies the LT predicate on the "last_progress_at" field.

func LastProgressAtLTE

func LastProgressAtLTE(v time.Time) predicate.ItemSession

LastProgressAtLTE applies the LTE predicate on the "last_progress_at" field.

func LastProgressAtNEQ

func LastProgressAtNEQ(v time.Time) predicate.ItemSession

LastProgressAtNEQ applies the NEQ predicate on the "last_progress_at" field.

func LastProgressAtNotIn

func LastProgressAtNotIn(vs ...time.Time) predicate.ItemSession

LastProgressAtNotIn applies the NotIn predicate on the "last_progress_at" field.

func LastProgressAtNotNil

func LastProgressAtNotNil() predicate.ItemSession

LastProgressAtNotNil applies the NotNil predicate on the "last_progress_at" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.ItemSession) predicate.ItemSession

Or groups predicates with the OR operator between them.

func PipelineModeSnapshot added in v1.38.0

func PipelineModeSnapshot(v string) predicate.ItemSession

PipelineModeSnapshot applies equality check predicate on the "pipeline_mode_snapshot" field. It's identical to PipelineModeSnapshotEQ.

func PipelineModeSnapshotContains added in v1.38.0

func PipelineModeSnapshotContains(v string) predicate.ItemSession

PipelineModeSnapshotContains applies the Contains predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotContainsFold added in v1.38.0

func PipelineModeSnapshotContainsFold(v string) predicate.ItemSession

PipelineModeSnapshotContainsFold applies the ContainsFold predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotEQ added in v1.38.0

func PipelineModeSnapshotEQ(v string) predicate.ItemSession

PipelineModeSnapshotEQ applies the EQ predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotEqualFold added in v1.38.0

func PipelineModeSnapshotEqualFold(v string) predicate.ItemSession

PipelineModeSnapshotEqualFold applies the EqualFold predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotGT added in v1.38.0

func PipelineModeSnapshotGT(v string) predicate.ItemSession

PipelineModeSnapshotGT applies the GT predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotGTE added in v1.38.0

func PipelineModeSnapshotGTE(v string) predicate.ItemSession

PipelineModeSnapshotGTE applies the GTE predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotHasPrefix added in v1.38.0

func PipelineModeSnapshotHasPrefix(v string) predicate.ItemSession

PipelineModeSnapshotHasPrefix applies the HasPrefix predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotHasSuffix added in v1.38.0

func PipelineModeSnapshotHasSuffix(v string) predicate.ItemSession

PipelineModeSnapshotHasSuffix applies the HasSuffix predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotHash added in v1.38.0

func PipelineModeSnapshotHash(v string) predicate.ItemSession

PipelineModeSnapshotHash applies equality check predicate on the "pipeline_mode_snapshot_hash" field. It's identical to PipelineModeSnapshotHashEQ.

func PipelineModeSnapshotHashContains added in v1.38.0

func PipelineModeSnapshotHashContains(v string) predicate.ItemSession

PipelineModeSnapshotHashContains applies the Contains predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashContainsFold added in v1.38.0

func PipelineModeSnapshotHashContainsFold(v string) predicate.ItemSession

PipelineModeSnapshotHashContainsFold applies the ContainsFold predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashEQ added in v1.38.0

func PipelineModeSnapshotHashEQ(v string) predicate.ItemSession

PipelineModeSnapshotHashEQ applies the EQ predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashEqualFold added in v1.38.0

func PipelineModeSnapshotHashEqualFold(v string) predicate.ItemSession

PipelineModeSnapshotHashEqualFold applies the EqualFold predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashGT added in v1.38.0

func PipelineModeSnapshotHashGT(v string) predicate.ItemSession

PipelineModeSnapshotHashGT applies the GT predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashGTE added in v1.38.0

func PipelineModeSnapshotHashGTE(v string) predicate.ItemSession

PipelineModeSnapshotHashGTE applies the GTE predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashHasPrefix added in v1.38.0

func PipelineModeSnapshotHashHasPrefix(v string) predicate.ItemSession

PipelineModeSnapshotHashHasPrefix applies the HasPrefix predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashHasSuffix added in v1.38.0

func PipelineModeSnapshotHashHasSuffix(v string) predicate.ItemSession

PipelineModeSnapshotHashHasSuffix applies the HasSuffix predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashIn added in v1.38.0

func PipelineModeSnapshotHashIn(vs ...string) predicate.ItemSession

PipelineModeSnapshotHashIn applies the In predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashLT added in v1.38.0

func PipelineModeSnapshotHashLT(v string) predicate.ItemSession

PipelineModeSnapshotHashLT applies the LT predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashLTE added in v1.38.0

func PipelineModeSnapshotHashLTE(v string) predicate.ItemSession

PipelineModeSnapshotHashLTE applies the LTE predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashNEQ added in v1.38.0

func PipelineModeSnapshotHashNEQ(v string) predicate.ItemSession

PipelineModeSnapshotHashNEQ applies the NEQ predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotHashNotIn added in v1.38.0

func PipelineModeSnapshotHashNotIn(vs ...string) predicate.ItemSession

PipelineModeSnapshotHashNotIn applies the NotIn predicate on the "pipeline_mode_snapshot_hash" field.

func PipelineModeSnapshotIn added in v1.38.0

func PipelineModeSnapshotIn(vs ...string) predicate.ItemSession

PipelineModeSnapshotIn applies the In predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotLT added in v1.38.0

func PipelineModeSnapshotLT(v string) predicate.ItemSession

PipelineModeSnapshotLT applies the LT predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotLTE added in v1.38.0

func PipelineModeSnapshotLTE(v string) predicate.ItemSession

PipelineModeSnapshotLTE applies the LTE predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotNEQ added in v1.38.0

func PipelineModeSnapshotNEQ(v string) predicate.ItemSession

PipelineModeSnapshotNEQ applies the NEQ predicate on the "pipeline_mode_snapshot" field.

func PipelineModeSnapshotNotIn added in v1.38.0

func PipelineModeSnapshotNotIn(vs ...string) predicate.ItemSession

PipelineModeSnapshotNotIn applies the NotIn predicate on the "pipeline_mode_snapshot" field.

func SessionRole

func SessionRole(v string) predicate.ItemSession

SessionRole applies equality check predicate on the "session_role" field. It's identical to SessionRoleEQ.

func SessionRoleContains

func SessionRoleContains(v string) predicate.ItemSession

SessionRoleContains applies the Contains predicate on the "session_role" field.

func SessionRoleContainsFold

func SessionRoleContainsFold(v string) predicate.ItemSession

SessionRoleContainsFold applies the ContainsFold predicate on the "session_role" field.

func SessionRoleEQ

func SessionRoleEQ(v string) predicate.ItemSession

SessionRoleEQ applies the EQ predicate on the "session_role" field.

func SessionRoleEqualFold

func SessionRoleEqualFold(v string) predicate.ItemSession

SessionRoleEqualFold applies the EqualFold predicate on the "session_role" field.

func SessionRoleGT

func SessionRoleGT(v string) predicate.ItemSession

SessionRoleGT applies the GT predicate on the "session_role" field.

func SessionRoleGTE

func SessionRoleGTE(v string) predicate.ItemSession

SessionRoleGTE applies the GTE predicate on the "session_role" field.

func SessionRoleHasPrefix

func SessionRoleHasPrefix(v string) predicate.ItemSession

SessionRoleHasPrefix applies the HasPrefix predicate on the "session_role" field.

func SessionRoleHasSuffix

func SessionRoleHasSuffix(v string) predicate.ItemSession

SessionRoleHasSuffix applies the HasSuffix predicate on the "session_role" field.

func SessionRoleIn

func SessionRoleIn(vs ...string) predicate.ItemSession

SessionRoleIn applies the In predicate on the "session_role" field.

func SessionRoleLT

func SessionRoleLT(v string) predicate.ItemSession

SessionRoleLT applies the LT predicate on the "session_role" field.

func SessionRoleLTE

func SessionRoleLTE(v string) predicate.ItemSession

SessionRoleLTE applies the LTE predicate on the "session_role" field.

func SessionRoleNEQ

func SessionRoleNEQ(v string) predicate.ItemSession

SessionRoleNEQ applies the NEQ predicate on the "session_role" field.

func SessionRoleNotIn

func SessionRoleNotIn(vs ...string) predicate.ItemSession

SessionRoleNotIn applies the NotIn predicate on the "session_role" field.

func SessionUUID

func SessionUUID(v string) predicate.ItemSession

SessionUUID applies equality check predicate on the "session_uuid" field. It's identical to SessionUUIDEQ.

func SessionUUIDContains

func SessionUUIDContains(v string) predicate.ItemSession

SessionUUIDContains applies the Contains predicate on the "session_uuid" field.

func SessionUUIDContainsFold

func SessionUUIDContainsFold(v string) predicate.ItemSession

SessionUUIDContainsFold applies the ContainsFold predicate on the "session_uuid" field.

func SessionUUIDEQ

func SessionUUIDEQ(v string) predicate.ItemSession

SessionUUIDEQ applies the EQ predicate on the "session_uuid" field.

func SessionUUIDEqualFold

func SessionUUIDEqualFold(v string) predicate.ItemSession

SessionUUIDEqualFold applies the EqualFold predicate on the "session_uuid" field.

func SessionUUIDGT

func SessionUUIDGT(v string) predicate.ItemSession

SessionUUIDGT applies the GT predicate on the "session_uuid" field.

func SessionUUIDGTE

func SessionUUIDGTE(v string) predicate.ItemSession

SessionUUIDGTE applies the GTE predicate on the "session_uuid" field.

func SessionUUIDHasPrefix

func SessionUUIDHasPrefix(v string) predicate.ItemSession

SessionUUIDHasPrefix applies the HasPrefix predicate on the "session_uuid" field.

func SessionUUIDHasSuffix

func SessionUUIDHasSuffix(v string) predicate.ItemSession

SessionUUIDHasSuffix applies the HasSuffix predicate on the "session_uuid" field.

func SessionUUIDIn

func SessionUUIDIn(vs ...string) predicate.ItemSession

SessionUUIDIn applies the In predicate on the "session_uuid" field.

func SessionUUIDLT

func SessionUUIDLT(v string) predicate.ItemSession

SessionUUIDLT applies the LT predicate on the "session_uuid" field.

func SessionUUIDLTE

func SessionUUIDLTE(v string) predicate.ItemSession

SessionUUIDLTE applies the LTE predicate on the "session_uuid" field.

func SessionUUIDNEQ

func SessionUUIDNEQ(v string) predicate.ItemSession

SessionUUIDNEQ applies the NEQ predicate on the "session_uuid" field.

func SessionUUIDNotIn

func SessionUUIDNotIn(vs ...string) predicate.ItemSession

SessionUUIDNotIn applies the NotIn predicate on the "session_uuid" field.

func StartedAt

func StartedAt(v time.Time) predicate.ItemSession

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

func StartedAtEQ

func StartedAtEQ(v time.Time) predicate.ItemSession

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

func StartedAtGT

func StartedAtGT(v time.Time) predicate.ItemSession

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

func StartedAtGTE

func StartedAtGTE(v time.Time) predicate.ItemSession

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

func StartedAtIn

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

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

func StartedAtIsNil

func StartedAtIsNil() predicate.ItemSession

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

func StartedAtLT

func StartedAtLT(v time.Time) predicate.ItemSession

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

func StartedAtLTE

func StartedAtLTE(v time.Time) predicate.ItemSession

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

func StartedAtNEQ

func StartedAtNEQ(v time.Time) predicate.ItemSession

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

func StartedAtNotIn

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

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

func StartedAtNotNil

func StartedAtNotNil() predicate.ItemSession

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

func TriageResult

func TriageResult(v string) predicate.ItemSession

TriageResult applies equality check predicate on the "triage_result" field. It's identical to TriageResultEQ.

func TriageResultContains

func TriageResultContains(v string) predicate.ItemSession

TriageResultContains applies the Contains predicate on the "triage_result" field.

func TriageResultContainsFold

func TriageResultContainsFold(v string) predicate.ItemSession

TriageResultContainsFold applies the ContainsFold predicate on the "triage_result" field.

func TriageResultEQ

func TriageResultEQ(v string) predicate.ItemSession

TriageResultEQ applies the EQ predicate on the "triage_result" field.

func TriageResultEqualFold

func TriageResultEqualFold(v string) predicate.ItemSession

TriageResultEqualFold applies the EqualFold predicate on the "triage_result" field.

func TriageResultGT

func TriageResultGT(v string) predicate.ItemSession

TriageResultGT applies the GT predicate on the "triage_result" field.

func TriageResultGTE

func TriageResultGTE(v string) predicate.ItemSession

TriageResultGTE applies the GTE predicate on the "triage_result" field.

func TriageResultHasPrefix

func TriageResultHasPrefix(v string) predicate.ItemSession

TriageResultHasPrefix applies the HasPrefix predicate on the "triage_result" field.

func TriageResultHasSuffix

func TriageResultHasSuffix(v string) predicate.ItemSession

TriageResultHasSuffix applies the HasSuffix predicate on the "triage_result" field.

func TriageResultIn

func TriageResultIn(vs ...string) predicate.ItemSession

TriageResultIn applies the In predicate on the "triage_result" field.

func TriageResultIsNil

func TriageResultIsNil() predicate.ItemSession

TriageResultIsNil applies the IsNil predicate on the "triage_result" field.

func TriageResultLT

func TriageResultLT(v string) predicate.ItemSession

TriageResultLT applies the LT predicate on the "triage_result" field.

func TriageResultLTE

func TriageResultLTE(v string) predicate.ItemSession

TriageResultLTE applies the LTE predicate on the "triage_result" field.

func TriageResultNEQ

func TriageResultNEQ(v string) predicate.ItemSession

TriageResultNEQ applies the NEQ predicate on the "triage_result" field.

func TriageResultNotIn

func TriageResultNotIn(vs ...string) predicate.ItemSession

TriageResultNotIn applies the NotIn predicate on the "triage_result" field.

func TriageResultNotNil

func TriageResultNotNil() predicate.ItemSession

TriageResultNotNil applies the NotNil predicate on the "triage_result" field.

func ValidColumn

func ValidColumn(column string) bool

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

func VerificationNotes added in v1.37.0

func VerificationNotes(v string) predicate.ItemSession

VerificationNotes applies equality check predicate on the "verification_notes" field. It's identical to VerificationNotesEQ.

func VerificationNotesContains added in v1.37.0

func VerificationNotesContains(v string) predicate.ItemSession

VerificationNotesContains applies the Contains predicate on the "verification_notes" field.

func VerificationNotesContainsFold added in v1.37.0

func VerificationNotesContainsFold(v string) predicate.ItemSession

VerificationNotesContainsFold applies the ContainsFold predicate on the "verification_notes" field.

func VerificationNotesEQ added in v1.37.0

func VerificationNotesEQ(v string) predicate.ItemSession

VerificationNotesEQ applies the EQ predicate on the "verification_notes" field.

func VerificationNotesEqualFold added in v1.37.0

func VerificationNotesEqualFold(v string) predicate.ItemSession

VerificationNotesEqualFold applies the EqualFold predicate on the "verification_notes" field.

func VerificationNotesGT added in v1.37.0

func VerificationNotesGT(v string) predicate.ItemSession

VerificationNotesGT applies the GT predicate on the "verification_notes" field.

func VerificationNotesGTE added in v1.37.0

func VerificationNotesGTE(v string) predicate.ItemSession

VerificationNotesGTE applies the GTE predicate on the "verification_notes" field.

func VerificationNotesHasPrefix added in v1.37.0

func VerificationNotesHasPrefix(v string) predicate.ItemSession

VerificationNotesHasPrefix applies the HasPrefix predicate on the "verification_notes" field.

func VerificationNotesHasSuffix added in v1.37.0

func VerificationNotesHasSuffix(v string) predicate.ItemSession

VerificationNotesHasSuffix applies the HasSuffix predicate on the "verification_notes" field.

func VerificationNotesIn added in v1.37.0

func VerificationNotesIn(vs ...string) predicate.ItemSession

VerificationNotesIn applies the In predicate on the "verification_notes" field.

func VerificationNotesIsNil added in v1.37.0

func VerificationNotesIsNil() predicate.ItemSession

VerificationNotesIsNil applies the IsNil predicate on the "verification_notes" field.

func VerificationNotesLT added in v1.37.0

func VerificationNotesLT(v string) predicate.ItemSession

VerificationNotesLT applies the LT predicate on the "verification_notes" field.

func VerificationNotesLTE added in v1.37.0

func VerificationNotesLTE(v string) predicate.ItemSession

VerificationNotesLTE applies the LTE predicate on the "verification_notes" field.

func VerificationNotesNEQ added in v1.37.0

func VerificationNotesNEQ(v string) predicate.ItemSession

VerificationNotesNEQ applies the NEQ predicate on the "verification_notes" field.

func VerificationNotesNotIn added in v1.37.0

func VerificationNotesNotIn(vs ...string) predicate.ItemSession

VerificationNotesNotIn applies the NotIn predicate on the "verification_notes" field.

func VerificationNotesNotNil added in v1.37.0

func VerificationNotesNotNil() predicate.ItemSession

VerificationNotesNotNil applies the NotNil predicate on the "verification_notes" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the ItemSession queries.

func ByAcSnapshot

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

ByAcSnapshot orders the results by the ac_snapshot field.

func ByBacklogItemField

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

ByBacklogItemField orders the results by backlog_item field.

func ByBaseCommitSha added in v1.41.0

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

ByBaseCommitSha orders the results by the base_commit_sha field.

func ByCommitCountSinceSpawn

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

ByCommitCountSinceSpawn orders the results by the commit_count_since_spawn field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByEndReason added in v1.41.0

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

ByEndReason orders the results by the end_reason field.

func ByEndedAt

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

ByEndedAt orders the results by the ended_at field.

func ByEstimatedCostUsd added in v1.37.0

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

ByEstimatedCostUsd orders the results by the estimated_cost_usd field.

func ByFailureCapturePath added in v1.42.0

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

ByFailureCapturePath orders the results by the failure_capture_path field.

func ByID

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

ByID orders the results by the id field.

func ByLastCommitAt

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

ByLastCommitAt orders the results by the last_commit_at field.

func ByLastCommitMessage

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

ByLastCommitMessage orders the results by the last_commit_message field.

func ByLastCommitSha

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

ByLastCommitSha orders the results by the last_commit_sha field.

func ByLastFileTouchAt

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

ByLastFileTouchAt orders the results by the last_file_touch_at field.

func ByLastProgressAt

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

ByLastProgressAt orders the results by the last_progress_at field.

func ByPipelineModeSnapshot added in v1.38.0

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

ByPipelineModeSnapshot orders the results by the pipeline_mode_snapshot field.

func ByPipelineModeSnapshotHash added in v1.38.0

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

ByPipelineModeSnapshotHash orders the results by the pipeline_mode_snapshot_hash field.

func ByReviewVerdictField

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

ByReviewVerdictField orders the results by review_verdict field.

func BySessionRole

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

BySessionRole orders the results by the session_role field.

func BySessionUUID

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

BySessionUUID orders the results by the session_uuid field.

func ByStartedAt

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

ByStartedAt orders the results by the started_at field.

func ByTriageResult

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

ByTriageResult orders the results by the triage_result field.

func ByVerificationNotes added in v1.37.0

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

ByVerificationNotes orders the results by the verification_notes field.

Jump to

Keyboard shortcuts

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