taskreport

package
v0.0.0-...-65a4bde Latest Latest
Warning

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

Go to latest
Published: Mar 27, 2026 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the taskreport type in the database.
	Label = "task_report"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldStdOutput holds the string denoting the std_output field in the database.
	FieldStdOutput = "std_output"
	// FieldStdError holds the string denoting the std_error field in the database.
	FieldStdError = "std_error"
	// FieldFailed holds the string denoting the failed field in the database.
	FieldFailed = "failed"
	// FieldEnd holds the string denoting the end field in the database.
	FieldEnd = "end"
	// EdgeProfileissue holds the string denoting the profileissue edge name in mutations.
	EdgeProfileissue = "profileissue"
	// EdgeTask holds the string denoting the task edge name in mutations.
	EdgeTask = "task"
	// Table holds the table name of the taskreport in the database.
	Table = "task_reports"
	// ProfileissueTable is the table that holds the profileissue relation/edge.
	ProfileissueTable = "task_reports"
	// ProfileissueInverseTable is the table name for the ProfileIssue entity.
	// It exists in this package in order to avoid circular dependency with the "profileissue" package.
	ProfileissueInverseTable = "profile_issues"
	// ProfileissueColumn is the table column denoting the profileissue relation/edge.
	ProfileissueColumn = "profile_issue_tasksreports"
	// TaskTable is the table that holds the task relation/edge.
	TaskTable = "task_reports"
	// TaskInverseTable is the table name for the Task entity.
	// It exists in this package in order to avoid circular dependency with the "task" package.
	TaskInverseTable = "tasks"
	// TaskColumn is the table column denoting the task relation/edge.
	TaskColumn = "task_reports"
)

Variables

View Source
var (
	// DefaultStdOutput holds the default value on creation for the "std_output" field.
	DefaultStdOutput string
	// DefaultStdError holds the default value on creation for the "std_error" field.
	DefaultStdError string
	// DefaultFailed holds the default value on creation for the "failed" field.
	DefaultFailed bool
	// DefaultEnd holds the default value on creation for the "end" field.
	DefaultEnd string
)

Columns holds all SQL columns for taskreport fields.

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

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

Functions

func And

func And(predicates ...predicate.TaskReport) predicate.TaskReport

And groups predicates with the AND operator between them.

func End

End applies equality check predicate on the "end" field. It's identical to EndEQ.

func EndContains

func EndContains(v string) predicate.TaskReport

EndContains applies the Contains predicate on the "end" field.

func EndContainsFold

func EndContainsFold(v string) predicate.TaskReport

EndContainsFold applies the ContainsFold predicate on the "end" field.

func EndEQ

func EndEQ(v string) predicate.TaskReport

EndEQ applies the EQ predicate on the "end" field.

func EndEqualFold

func EndEqualFold(v string) predicate.TaskReport

EndEqualFold applies the EqualFold predicate on the "end" field.

func EndGT

func EndGT(v string) predicate.TaskReport

EndGT applies the GT predicate on the "end" field.

func EndGTE

func EndGTE(v string) predicate.TaskReport

EndGTE applies the GTE predicate on the "end" field.

func EndHasPrefix

func EndHasPrefix(v string) predicate.TaskReport

EndHasPrefix applies the HasPrefix predicate on the "end" field.

func EndHasSuffix

func EndHasSuffix(v string) predicate.TaskReport

EndHasSuffix applies the HasSuffix predicate on the "end" field.

func EndIn

func EndIn(vs ...string) predicate.TaskReport

EndIn applies the In predicate on the "end" field.

func EndIsNil

func EndIsNil() predicate.TaskReport

EndIsNil applies the IsNil predicate on the "end" field.

func EndLT

func EndLT(v string) predicate.TaskReport

EndLT applies the LT predicate on the "end" field.

func EndLTE

func EndLTE(v string) predicate.TaskReport

EndLTE applies the LTE predicate on the "end" field.

func EndNEQ

func EndNEQ(v string) predicate.TaskReport

EndNEQ applies the NEQ predicate on the "end" field.

func EndNotIn

func EndNotIn(vs ...string) predicate.TaskReport

EndNotIn applies the NotIn predicate on the "end" field.

func EndNotNil

func EndNotNil() predicate.TaskReport

EndNotNil applies the NotNil predicate on the "end" field.

func Failed

func Failed(v bool) predicate.TaskReport

Failed applies equality check predicate on the "failed" field. It's identical to FailedEQ.

func FailedEQ

func FailedEQ(v bool) predicate.TaskReport

FailedEQ applies the EQ predicate on the "failed" field.

func FailedNEQ

func FailedNEQ(v bool) predicate.TaskReport

FailedNEQ applies the NEQ predicate on the "failed" field.

func HasProfileissue

func HasProfileissue() predicate.TaskReport

HasProfileissue applies the HasEdge predicate on the "profileissue" edge.

func HasProfileissueWith

func HasProfileissueWith(preds ...predicate.ProfileIssue) predicate.TaskReport

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

func HasTask

func HasTask() predicate.TaskReport

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

func HasTaskWith

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

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

func ID

func ID(id int) predicate.TaskReport

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.TaskReport

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.TaskReport

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.TaskReport

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.TaskReport

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.TaskReport

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.TaskReport

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.TaskReport

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.TaskReport

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.TaskReport) predicate.TaskReport

Or groups predicates with the OR operator between them.

func StdError

func StdError(v string) predicate.TaskReport

StdError applies equality check predicate on the "std_error" field. It's identical to StdErrorEQ.

func StdErrorContains

func StdErrorContains(v string) predicate.TaskReport

StdErrorContains applies the Contains predicate on the "std_error" field.

func StdErrorContainsFold

func StdErrorContainsFold(v string) predicate.TaskReport

StdErrorContainsFold applies the ContainsFold predicate on the "std_error" field.

func StdErrorEQ

func StdErrorEQ(v string) predicate.TaskReport

StdErrorEQ applies the EQ predicate on the "std_error" field.

func StdErrorEqualFold

func StdErrorEqualFold(v string) predicate.TaskReport

StdErrorEqualFold applies the EqualFold predicate on the "std_error" field.

func StdErrorGT

func StdErrorGT(v string) predicate.TaskReport

StdErrorGT applies the GT predicate on the "std_error" field.

func StdErrorGTE

func StdErrorGTE(v string) predicate.TaskReport

StdErrorGTE applies the GTE predicate on the "std_error" field.

func StdErrorHasPrefix

func StdErrorHasPrefix(v string) predicate.TaskReport

StdErrorHasPrefix applies the HasPrefix predicate on the "std_error" field.

func StdErrorHasSuffix

func StdErrorHasSuffix(v string) predicate.TaskReport

StdErrorHasSuffix applies the HasSuffix predicate on the "std_error" field.

func StdErrorIn

func StdErrorIn(vs ...string) predicate.TaskReport

StdErrorIn applies the In predicate on the "std_error" field.

func StdErrorIsNil

func StdErrorIsNil() predicate.TaskReport

StdErrorIsNil applies the IsNil predicate on the "std_error" field.

func StdErrorLT

func StdErrorLT(v string) predicate.TaskReport

StdErrorLT applies the LT predicate on the "std_error" field.

func StdErrorLTE

func StdErrorLTE(v string) predicate.TaskReport

StdErrorLTE applies the LTE predicate on the "std_error" field.

func StdErrorNEQ

func StdErrorNEQ(v string) predicate.TaskReport

StdErrorNEQ applies the NEQ predicate on the "std_error" field.

func StdErrorNotIn

func StdErrorNotIn(vs ...string) predicate.TaskReport

StdErrorNotIn applies the NotIn predicate on the "std_error" field.

func StdErrorNotNil

func StdErrorNotNil() predicate.TaskReport

StdErrorNotNil applies the NotNil predicate on the "std_error" field.

func StdOutput

func StdOutput(v string) predicate.TaskReport

StdOutput applies equality check predicate on the "std_output" field. It's identical to StdOutputEQ.

func StdOutputContains

func StdOutputContains(v string) predicate.TaskReport

StdOutputContains applies the Contains predicate on the "std_output" field.

func StdOutputContainsFold

func StdOutputContainsFold(v string) predicate.TaskReport

StdOutputContainsFold applies the ContainsFold predicate on the "std_output" field.

func StdOutputEQ

func StdOutputEQ(v string) predicate.TaskReport

StdOutputEQ applies the EQ predicate on the "std_output" field.

func StdOutputEqualFold

func StdOutputEqualFold(v string) predicate.TaskReport

StdOutputEqualFold applies the EqualFold predicate on the "std_output" field.

func StdOutputGT

func StdOutputGT(v string) predicate.TaskReport

StdOutputGT applies the GT predicate on the "std_output" field.

func StdOutputGTE

func StdOutputGTE(v string) predicate.TaskReport

StdOutputGTE applies the GTE predicate on the "std_output" field.

func StdOutputHasPrefix

func StdOutputHasPrefix(v string) predicate.TaskReport

StdOutputHasPrefix applies the HasPrefix predicate on the "std_output" field.

func StdOutputHasSuffix

func StdOutputHasSuffix(v string) predicate.TaskReport

StdOutputHasSuffix applies the HasSuffix predicate on the "std_output" field.

func StdOutputIn

func StdOutputIn(vs ...string) predicate.TaskReport

StdOutputIn applies the In predicate on the "std_output" field.

func StdOutputIsNil

func StdOutputIsNil() predicate.TaskReport

StdOutputIsNil applies the IsNil predicate on the "std_output" field.

func StdOutputLT

func StdOutputLT(v string) predicate.TaskReport

StdOutputLT applies the LT predicate on the "std_output" field.

func StdOutputLTE

func StdOutputLTE(v string) predicate.TaskReport

StdOutputLTE applies the LTE predicate on the "std_output" field.

func StdOutputNEQ

func StdOutputNEQ(v string) predicate.TaskReport

StdOutputNEQ applies the NEQ predicate on the "std_output" field.

func StdOutputNotIn

func StdOutputNotIn(vs ...string) predicate.TaskReport

StdOutputNotIn applies the NotIn predicate on the "std_output" field.

func StdOutputNotNil

func StdOutputNotNil() predicate.TaskReport

StdOutputNotNil applies the NotNil predicate on the "std_output" 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 TaskReport queries.

func ByEnd

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

ByEnd orders the results by the end field.

func ByFailed

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

ByFailed orders the results by the failed field.

func ByID

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

ByID orders the results by the id field.

func ByProfileissueField

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

ByProfileissueField orders the results by profileissue field.

func ByStdError

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

ByStdError orders the results by the std_error field.

func ByStdOutput

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

ByStdOutput orders the results by the std_output field.

func ByTaskField

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

ByTaskField orders the results by task field.

Jump to

Keyboard shortcuts

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