projecttask

package
v0.0.0-...-481d40d Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the projecttask type in the database.
	Label = "project_task"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldTaskID holds the string denoting the task_id field in the database.
	FieldTaskID = "task_id"
	// FieldModelID holds the string denoting the model_id field in the database.
	FieldModelID = "model_id"
	// FieldImageID holds the string denoting the image_id field in the database.
	FieldImageID = "image_id"
	// FieldGitIdentityID holds the string denoting the git_identity_id field in the database.
	FieldGitIdentityID = "git_identity_id"
	// FieldProjectID holds the string denoting the project_id field in the database.
	FieldProjectID = "project_id"
	// FieldIssueID holds the string denoting the issue_id field in the database.
	FieldIssueID = "issue_id"
	// FieldRepoURL holds the string denoting the repo_url field in the database.
	FieldRepoURL = "repo_url"
	// FieldRepoFilename holds the string denoting the repo_filename field in the database.
	FieldRepoFilename = "repo_filename"
	// FieldBranch holds the string denoting the branch field in the database.
	FieldBranch = "branch"
	// FieldCliName holds the string denoting the cli_name field in the database.
	FieldCliName = "cli_name"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeTask holds the string denoting the task edge name in mutations.
	EdgeTask = "task"
	// EdgeModel holds the string denoting the model edge name in mutations.
	EdgeModel = "model"
	// EdgeImage holds the string denoting the image edge name in mutations.
	EdgeImage = "image"
	// EdgeGitIdentity holds the string denoting the git_identity edge name in mutations.
	EdgeGitIdentity = "git_identity"
	// EdgeProject holds the string denoting the project edge name in mutations.
	EdgeProject = "project"
	// EdgeIssue holds the string denoting the issue edge name in mutations.
	EdgeIssue = "issue"
	// Table holds the table name of the projecttask in the database.
	Table = "project_tasks"
	// TaskTable is the table that holds the task relation/edge.
	TaskTable = "project_tasks"
	// 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_id"
	// ModelTable is the table that holds the model relation/edge.
	ModelTable = "project_tasks"
	// ModelInverseTable is the table name for the Model entity.
	// It exists in this package in order to avoid circular dependency with the "model" package.
	ModelInverseTable = "models"
	// ModelColumn is the table column denoting the model relation/edge.
	ModelColumn = "model_id"
	// ImageTable is the table that holds the image relation/edge.
	ImageTable = "project_tasks"
	// ImageInverseTable is the table name for the Image entity.
	// It exists in this package in order to avoid circular dependency with the "image" package.
	ImageInverseTable = "images"
	// ImageColumn is the table column denoting the image relation/edge.
	ImageColumn = "image_id"
	// GitIdentityTable is the table that holds the git_identity relation/edge.
	GitIdentityTable = "project_tasks"
	// GitIdentityInverseTable is the table name for the GitIdentity entity.
	// It exists in this package in order to avoid circular dependency with the "gitidentity" package.
	GitIdentityInverseTable = "git_identities"
	// GitIdentityColumn is the table column denoting the git_identity relation/edge.
	GitIdentityColumn = "git_identity_id"
	// ProjectTable is the table that holds the project relation/edge.
	ProjectTable = "project_tasks"
	// ProjectInverseTable is the table name for the Project entity.
	// It exists in this package in order to avoid circular dependency with the "project" package.
	ProjectInverseTable = "projects"
	// ProjectColumn is the table column denoting the project relation/edge.
	ProjectColumn = "project_id"
	// IssueTable is the table that holds the issue relation/edge.
	IssueTable = "project_tasks"
	// IssueInverseTable is the table name for the ProjectIssue entity.
	// It exists in this package in order to avoid circular dependency with the "projectissue" package.
	IssueInverseTable = "project_issues"
	// IssueColumn is the table column denoting the issue relation/edge.
	IssueColumn = "issue_id"
)

Variables

Columns holds all SQL columns for projecttask fields.

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
)

Functions

func And

func And(predicates ...predicate.ProjectTask) predicate.ProjectTask

And groups predicates with the AND operator between them.

func Branch

func Branch(v string) predicate.ProjectTask

Branch applies equality check predicate on the "branch" field. It's identical to BranchEQ.

func BranchContains

func BranchContains(v string) predicate.ProjectTask

BranchContains applies the Contains predicate on the "branch" field.

func BranchContainsFold

func BranchContainsFold(v string) predicate.ProjectTask

BranchContainsFold applies the ContainsFold predicate on the "branch" field.

func BranchEQ

func BranchEQ(v string) predicate.ProjectTask

BranchEQ applies the EQ predicate on the "branch" field.

func BranchEqualFold

func BranchEqualFold(v string) predicate.ProjectTask

BranchEqualFold applies the EqualFold predicate on the "branch" field.

func BranchGT

func BranchGT(v string) predicate.ProjectTask

BranchGT applies the GT predicate on the "branch" field.

func BranchGTE

func BranchGTE(v string) predicate.ProjectTask

BranchGTE applies the GTE predicate on the "branch" field.

func BranchHasPrefix

func BranchHasPrefix(v string) predicate.ProjectTask

BranchHasPrefix applies the HasPrefix predicate on the "branch" field.

func BranchHasSuffix

func BranchHasSuffix(v string) predicate.ProjectTask

BranchHasSuffix applies the HasSuffix predicate on the "branch" field.

func BranchIn

func BranchIn(vs ...string) predicate.ProjectTask

BranchIn applies the In predicate on the "branch" field.

func BranchIsNil

func BranchIsNil() predicate.ProjectTask

BranchIsNil applies the IsNil predicate on the "branch" field.

func BranchLT

func BranchLT(v string) predicate.ProjectTask

BranchLT applies the LT predicate on the "branch" field.

func BranchLTE

func BranchLTE(v string) predicate.ProjectTask

BranchLTE applies the LTE predicate on the "branch" field.

func BranchNEQ

func BranchNEQ(v string) predicate.ProjectTask

BranchNEQ applies the NEQ predicate on the "branch" field.

func BranchNotIn

func BranchNotIn(vs ...string) predicate.ProjectTask

BranchNotIn applies the NotIn predicate on the "branch" field.

func BranchNotNil

func BranchNotNil() predicate.ProjectTask

BranchNotNil applies the NotNil predicate on the "branch" field.

func CliName

CliName applies equality check predicate on the "cli_name" field. It's identical to CliNameEQ.

func CliNameContains

func CliNameContains(v consts.CliName) predicate.ProjectTask

CliNameContains applies the Contains predicate on the "cli_name" field.

func CliNameContainsFold

func CliNameContainsFold(v consts.CliName) predicate.ProjectTask

CliNameContainsFold applies the ContainsFold predicate on the "cli_name" field.

func CliNameEQ

func CliNameEQ(v consts.CliName) predicate.ProjectTask

CliNameEQ applies the EQ predicate on the "cli_name" field.

func CliNameEqualFold

func CliNameEqualFold(v consts.CliName) predicate.ProjectTask

CliNameEqualFold applies the EqualFold predicate on the "cli_name" field.

func CliNameGT

func CliNameGT(v consts.CliName) predicate.ProjectTask

CliNameGT applies the GT predicate on the "cli_name" field.

func CliNameGTE

func CliNameGTE(v consts.CliName) predicate.ProjectTask

CliNameGTE applies the GTE predicate on the "cli_name" field.

func CliNameHasPrefix

func CliNameHasPrefix(v consts.CliName) predicate.ProjectTask

CliNameHasPrefix applies the HasPrefix predicate on the "cli_name" field.

func CliNameHasSuffix

func CliNameHasSuffix(v consts.CliName) predicate.ProjectTask

CliNameHasSuffix applies the HasSuffix predicate on the "cli_name" field.

func CliNameIn

func CliNameIn(vs ...consts.CliName) predicate.ProjectTask

CliNameIn applies the In predicate on the "cli_name" field.

func CliNameLT

func CliNameLT(v consts.CliName) predicate.ProjectTask

CliNameLT applies the LT predicate on the "cli_name" field.

func CliNameLTE

func CliNameLTE(v consts.CliName) predicate.ProjectTask

CliNameLTE applies the LTE predicate on the "cli_name" field.

func CliNameNEQ

func CliNameNEQ(v consts.CliName) predicate.ProjectTask

CliNameNEQ applies the NEQ predicate on the "cli_name" field.

func CliNameNotIn

func CliNameNotIn(vs ...consts.CliName) predicate.ProjectTask

CliNameNotIn applies the NotIn predicate on the "cli_name" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.ProjectTask

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.ProjectTask

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.ProjectTask

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.ProjectTask

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.ProjectTask

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.ProjectTask

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.ProjectTask

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

func CreatedAtNotIn

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

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

func GitIdentityID

func GitIdentityID(v uuid.UUID) predicate.ProjectTask

GitIdentityID applies equality check predicate on the "git_identity_id" field. It's identical to GitIdentityIDEQ.

func GitIdentityIDEQ

func GitIdentityIDEQ(v uuid.UUID) predicate.ProjectTask

GitIdentityIDEQ applies the EQ predicate on the "git_identity_id" field.

func GitIdentityIDIn

func GitIdentityIDIn(vs ...uuid.UUID) predicate.ProjectTask

GitIdentityIDIn applies the In predicate on the "git_identity_id" field.

func GitIdentityIDIsNil

func GitIdentityIDIsNil() predicate.ProjectTask

GitIdentityIDIsNil applies the IsNil predicate on the "git_identity_id" field.

func GitIdentityIDNEQ

func GitIdentityIDNEQ(v uuid.UUID) predicate.ProjectTask

GitIdentityIDNEQ applies the NEQ predicate on the "git_identity_id" field.

func GitIdentityIDNotIn

func GitIdentityIDNotIn(vs ...uuid.UUID) predicate.ProjectTask

GitIdentityIDNotIn applies the NotIn predicate on the "git_identity_id" field.

func GitIdentityIDNotNil

func GitIdentityIDNotNil() predicate.ProjectTask

GitIdentityIDNotNil applies the NotNil predicate on the "git_identity_id" field.

func HasGitIdentity

func HasGitIdentity() predicate.ProjectTask

HasGitIdentity applies the HasEdge predicate on the "git_identity" edge.

func HasGitIdentityWith

func HasGitIdentityWith(preds ...predicate.GitIdentity) predicate.ProjectTask

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

func HasImage

func HasImage() predicate.ProjectTask

HasImage applies the HasEdge predicate on the "image" edge.

func HasImageWith

func HasImageWith(preds ...predicate.Image) predicate.ProjectTask

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

func HasIssue

func HasIssue() predicate.ProjectTask

HasIssue applies the HasEdge predicate on the "issue" edge.

func HasIssueWith

func HasIssueWith(preds ...predicate.ProjectIssue) predicate.ProjectTask

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

func HasModel

func HasModel() predicate.ProjectTask

HasModel applies the HasEdge predicate on the "model" edge.

func HasModelWith

func HasModelWith(preds ...predicate.Model) predicate.ProjectTask

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

func HasProject

func HasProject() predicate.ProjectTask

HasProject applies the HasEdge predicate on the "project" edge.

func HasProjectWith

func HasProjectWith(preds ...predicate.Project) predicate.ProjectTask

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

func HasTask

func HasTask() predicate.ProjectTask

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

func HasTaskWith

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

HasTaskWith applies the HasEdge predicate on the "task" 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.ProjectTask

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.ProjectTask

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.ProjectTask

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.ProjectTask

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.ProjectTask

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.ProjectTask

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func ImageID

func ImageID(v uuid.UUID) predicate.ProjectTask

ImageID applies equality check predicate on the "image_id" field. It's identical to ImageIDEQ.

func ImageIDEQ

func ImageIDEQ(v uuid.UUID) predicate.ProjectTask

ImageIDEQ applies the EQ predicate on the "image_id" field.

func ImageIDIn

func ImageIDIn(vs ...uuid.UUID) predicate.ProjectTask

ImageIDIn applies the In predicate on the "image_id" field.

func ImageIDNEQ

func ImageIDNEQ(v uuid.UUID) predicate.ProjectTask

ImageIDNEQ applies the NEQ predicate on the "image_id" field.

func ImageIDNotIn

func ImageIDNotIn(vs ...uuid.UUID) predicate.ProjectTask

ImageIDNotIn applies the NotIn predicate on the "image_id" field.

func IssueID

func IssueID(v uuid.UUID) predicate.ProjectTask

IssueID applies equality check predicate on the "issue_id" field. It's identical to IssueIDEQ.

func IssueIDEQ

func IssueIDEQ(v uuid.UUID) predicate.ProjectTask

IssueIDEQ applies the EQ predicate on the "issue_id" field.

func IssueIDIn

func IssueIDIn(vs ...uuid.UUID) predicate.ProjectTask

IssueIDIn applies the In predicate on the "issue_id" field.

func IssueIDIsNil

func IssueIDIsNil() predicate.ProjectTask

IssueIDIsNil applies the IsNil predicate on the "issue_id" field.

func IssueIDNEQ

func IssueIDNEQ(v uuid.UUID) predicate.ProjectTask

IssueIDNEQ applies the NEQ predicate on the "issue_id" field.

func IssueIDNotIn

func IssueIDNotIn(vs ...uuid.UUID) predicate.ProjectTask

IssueIDNotIn applies the NotIn predicate on the "issue_id" field.

func IssueIDNotNil

func IssueIDNotNil() predicate.ProjectTask

IssueIDNotNil applies the NotNil predicate on the "issue_id" field.

func ModelID

func ModelID(v uuid.UUID) predicate.ProjectTask

ModelID applies equality check predicate on the "model_id" field. It's identical to ModelIDEQ.

func ModelIDEQ

func ModelIDEQ(v uuid.UUID) predicate.ProjectTask

ModelIDEQ applies the EQ predicate on the "model_id" field.

func ModelIDIn

func ModelIDIn(vs ...uuid.UUID) predicate.ProjectTask

ModelIDIn applies the In predicate on the "model_id" field.

func ModelIDNEQ

func ModelIDNEQ(v uuid.UUID) predicate.ProjectTask

ModelIDNEQ applies the NEQ predicate on the "model_id" field.

func ModelIDNotIn

func ModelIDNotIn(vs ...uuid.UUID) predicate.ProjectTask

ModelIDNotIn applies the NotIn predicate on the "model_id" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.ProjectTask) predicate.ProjectTask

Or groups predicates with the OR operator between them.

func ProjectID

func ProjectID(v uuid.UUID) predicate.ProjectTask

ProjectID applies equality check predicate on the "project_id" field. It's identical to ProjectIDEQ.

func ProjectIDEQ

func ProjectIDEQ(v uuid.UUID) predicate.ProjectTask

ProjectIDEQ applies the EQ predicate on the "project_id" field.

func ProjectIDIn

func ProjectIDIn(vs ...uuid.UUID) predicate.ProjectTask

ProjectIDIn applies the In predicate on the "project_id" field.

func ProjectIDIsNil

func ProjectIDIsNil() predicate.ProjectTask

ProjectIDIsNil applies the IsNil predicate on the "project_id" field.

func ProjectIDNEQ

func ProjectIDNEQ(v uuid.UUID) predicate.ProjectTask

ProjectIDNEQ applies the NEQ predicate on the "project_id" field.

func ProjectIDNotIn

func ProjectIDNotIn(vs ...uuid.UUID) predicate.ProjectTask

ProjectIDNotIn applies the NotIn predicate on the "project_id" field.

func ProjectIDNotNil

func ProjectIDNotNil() predicate.ProjectTask

ProjectIDNotNil applies the NotNil predicate on the "project_id" field.

func RepoFilename

func RepoFilename(v string) predicate.ProjectTask

RepoFilename applies equality check predicate on the "repo_filename" field. It's identical to RepoFilenameEQ.

func RepoFilenameContains

func RepoFilenameContains(v string) predicate.ProjectTask

RepoFilenameContains applies the Contains predicate on the "repo_filename" field.

func RepoFilenameContainsFold

func RepoFilenameContainsFold(v string) predicate.ProjectTask

RepoFilenameContainsFold applies the ContainsFold predicate on the "repo_filename" field.

func RepoFilenameEQ

func RepoFilenameEQ(v string) predicate.ProjectTask

RepoFilenameEQ applies the EQ predicate on the "repo_filename" field.

func RepoFilenameEqualFold

func RepoFilenameEqualFold(v string) predicate.ProjectTask

RepoFilenameEqualFold applies the EqualFold predicate on the "repo_filename" field.

func RepoFilenameGT

func RepoFilenameGT(v string) predicate.ProjectTask

RepoFilenameGT applies the GT predicate on the "repo_filename" field.

func RepoFilenameGTE

func RepoFilenameGTE(v string) predicate.ProjectTask

RepoFilenameGTE applies the GTE predicate on the "repo_filename" field.

func RepoFilenameHasPrefix

func RepoFilenameHasPrefix(v string) predicate.ProjectTask

RepoFilenameHasPrefix applies the HasPrefix predicate on the "repo_filename" field.

func RepoFilenameHasSuffix

func RepoFilenameHasSuffix(v string) predicate.ProjectTask

RepoFilenameHasSuffix applies the HasSuffix predicate on the "repo_filename" field.

func RepoFilenameIn

func RepoFilenameIn(vs ...string) predicate.ProjectTask

RepoFilenameIn applies the In predicate on the "repo_filename" field.

func RepoFilenameIsNil

func RepoFilenameIsNil() predicate.ProjectTask

RepoFilenameIsNil applies the IsNil predicate on the "repo_filename" field.

func RepoFilenameLT

func RepoFilenameLT(v string) predicate.ProjectTask

RepoFilenameLT applies the LT predicate on the "repo_filename" field.

func RepoFilenameLTE

func RepoFilenameLTE(v string) predicate.ProjectTask

RepoFilenameLTE applies the LTE predicate on the "repo_filename" field.

func RepoFilenameNEQ

func RepoFilenameNEQ(v string) predicate.ProjectTask

RepoFilenameNEQ applies the NEQ predicate on the "repo_filename" field.

func RepoFilenameNotIn

func RepoFilenameNotIn(vs ...string) predicate.ProjectTask

RepoFilenameNotIn applies the NotIn predicate on the "repo_filename" field.

func RepoFilenameNotNil

func RepoFilenameNotNil() predicate.ProjectTask

RepoFilenameNotNil applies the NotNil predicate on the "repo_filename" field.

func RepoURL

func RepoURL(v string) predicate.ProjectTask

RepoURL applies equality check predicate on the "repo_url" field. It's identical to RepoURLEQ.

func RepoURLContains

func RepoURLContains(v string) predicate.ProjectTask

RepoURLContains applies the Contains predicate on the "repo_url" field.

func RepoURLContainsFold

func RepoURLContainsFold(v string) predicate.ProjectTask

RepoURLContainsFold applies the ContainsFold predicate on the "repo_url" field.

func RepoURLEQ

func RepoURLEQ(v string) predicate.ProjectTask

RepoURLEQ applies the EQ predicate on the "repo_url" field.

func RepoURLEqualFold

func RepoURLEqualFold(v string) predicate.ProjectTask

RepoURLEqualFold applies the EqualFold predicate on the "repo_url" field.

func RepoURLGT

func RepoURLGT(v string) predicate.ProjectTask

RepoURLGT applies the GT predicate on the "repo_url" field.

func RepoURLGTE

func RepoURLGTE(v string) predicate.ProjectTask

RepoURLGTE applies the GTE predicate on the "repo_url" field.

func RepoURLHasPrefix

func RepoURLHasPrefix(v string) predicate.ProjectTask

RepoURLHasPrefix applies the HasPrefix predicate on the "repo_url" field.

func RepoURLHasSuffix

func RepoURLHasSuffix(v string) predicate.ProjectTask

RepoURLHasSuffix applies the HasSuffix predicate on the "repo_url" field.

func RepoURLIn

func RepoURLIn(vs ...string) predicate.ProjectTask

RepoURLIn applies the In predicate on the "repo_url" field.

func RepoURLIsNil

func RepoURLIsNil() predicate.ProjectTask

RepoURLIsNil applies the IsNil predicate on the "repo_url" field.

func RepoURLLT

func RepoURLLT(v string) predicate.ProjectTask

RepoURLLT applies the LT predicate on the "repo_url" field.

func RepoURLLTE

func RepoURLLTE(v string) predicate.ProjectTask

RepoURLLTE applies the LTE predicate on the "repo_url" field.

func RepoURLNEQ

func RepoURLNEQ(v string) predicate.ProjectTask

RepoURLNEQ applies the NEQ predicate on the "repo_url" field.

func RepoURLNotIn

func RepoURLNotIn(vs ...string) predicate.ProjectTask

RepoURLNotIn applies the NotIn predicate on the "repo_url" field.

func RepoURLNotNil

func RepoURLNotNil() predicate.ProjectTask

RepoURLNotNil applies the NotNil predicate on the "repo_url" field.

func TaskID

func TaskID(v uuid.UUID) predicate.ProjectTask

TaskID applies equality check predicate on the "task_id" field. It's identical to TaskIDEQ.

func TaskIDEQ

func TaskIDEQ(v uuid.UUID) predicate.ProjectTask

TaskIDEQ applies the EQ predicate on the "task_id" field.

func TaskIDIn

func TaskIDIn(vs ...uuid.UUID) predicate.ProjectTask

TaskIDIn applies the In predicate on the "task_id" field.

func TaskIDNEQ

func TaskIDNEQ(v uuid.UUID) predicate.ProjectTask

TaskIDNEQ applies the NEQ predicate on the "task_id" field.

func TaskIDNotIn

func TaskIDNotIn(vs ...uuid.UUID) predicate.ProjectTask

TaskIDNotIn applies the NotIn predicate on the "task_id" 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 ProjectTask queries.

func ByBranch

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

ByBranch orders the results by the branch field.

func ByCliName

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

ByCliName orders the results by the cli_name field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByGitIdentityField

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

ByGitIdentityField orders the results by git_identity field.

func ByGitIdentityID

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

ByGitIdentityID orders the results by the git_identity_id field.

func ByID

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

ByID orders the results by the id field.

func ByImageField

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

ByImageField orders the results by image field.

func ByImageID

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

ByImageID orders the results by the image_id field.

func ByIssueField

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

ByIssueField orders the results by issue field.

func ByIssueID

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

ByIssueID orders the results by the issue_id field.

func ByModelField

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

ByModelField orders the results by model field.

func ByModelID

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

ByModelID orders the results by the model_id field.

func ByProjectField

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

ByProjectField orders the results by project field.

func ByProjectID

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

ByProjectID orders the results by the project_id field.

func ByRepoFilename

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

ByRepoFilename orders the results by the repo_filename field.

func ByRepoURL

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

ByRepoURL orders the results by the repo_url field.

func ByTaskField

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

ByTaskField orders the results by task field.

func ByTaskID

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

ByTaskID orders the results by the task_id field.

Jump to

Keyboard shortcuts

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