project

package
v5.0.0-beta.2 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the project type in the database.
	Label = "project"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldGitProjectID holds the string denoting the git_project_id field in the database.
	FieldGitProjectID = "git_project_id"
	// FieldGitBranch holds the string denoting the git_branch field in the database.
	FieldGitBranch = "git_branch"
	// FieldGitCommit holds the string denoting the git_commit field in the database.
	FieldGitCommit = "git_commit"
	// FieldConfig holds the string denoting the config field in the database.
	FieldConfig = "config"
	// FieldCreator holds the string denoting the creator field in the database.
	FieldCreator = "creator"
	// FieldOverrideValues holds the string denoting the override_values field in the database.
	FieldOverrideValues = "override_values"
	// FieldDockerImage holds the string denoting the docker_image field in the database.
	FieldDockerImage = "docker_image"
	// FieldPodSelectors holds the string denoting the pod_selectors field in the database.
	FieldPodSelectors = "pod_selectors"
	// FieldAtomic holds the string denoting the atomic field in the database.
	FieldAtomic = "atomic"
	// FieldDeployStatus holds the string denoting the deploy_status field in the database.
	FieldDeployStatus = "deploy_status"
	// FieldEnvValues holds the string denoting the env_values field in the database.
	FieldEnvValues = "env_values"
	// FieldExtraValues holds the string denoting the extra_values field in the database.
	FieldExtraValues = "extra_values"
	// FieldFinalExtraValues holds the string denoting the final_extra_values field in the database.
	FieldFinalExtraValues = "final_extra_values"
	// FieldVersion holds the string denoting the version field in the database.
	FieldVersion = "version"
	// FieldConfigType holds the string denoting the config_type field in the database.
	FieldConfigType = "config_type"
	// FieldManifest holds the string denoting the manifest field in the database.
	FieldManifest = "manifest"
	// FieldGitCommitWebURL holds the string denoting the git_commit_web_url field in the database.
	FieldGitCommitWebURL = "git_commit_web_url"
	// FieldGitCommitTitle holds the string denoting the git_commit_title field in the database.
	FieldGitCommitTitle = "git_commit_title"
	// FieldGitCommitAuthor holds the string denoting the git_commit_author field in the database.
	FieldGitCommitAuthor = "git_commit_author"
	// FieldGitCommitDate holds the string denoting the git_commit_date field in the database.
	FieldGitCommitDate = "git_commit_date"
	// FieldNamespaceID holds the string denoting the namespace_id field in the database.
	FieldNamespaceID = "namespace_id"
	// FieldRepoID holds the string denoting the repo_id field in the database.
	FieldRepoID = "repo_id"
	// EdgeChangelogs holds the string denoting the changelogs edge name in mutations.
	EdgeChangelogs = "changelogs"
	// EdgeRepo holds the string denoting the repo edge name in mutations.
	EdgeRepo = "repo"
	// EdgeNamespace holds the string denoting the namespace edge name in mutations.
	EdgeNamespace = "namespace"
	// Table holds the table name of the project in the database.
	Table = "projects"
	// ChangelogsTable is the table that holds the changelogs relation/edge.
	ChangelogsTable = "changelogs"
	// ChangelogsInverseTable is the table name for the Changelog entity.
	// It exists in this package in order to avoid circular dependency with the "changelog" package.
	ChangelogsInverseTable = "changelogs"
	// ChangelogsColumn is the table column denoting the changelogs relation/edge.
	ChangelogsColumn = "project_id"
	// RepoTable is the table that holds the repo relation/edge.
	RepoTable = "projects"
	// RepoInverseTable is the table name for the Repo entity.
	// It exists in this package in order to avoid circular dependency with the "repo" package.
	RepoInverseTable = "repos"
	// RepoColumn is the table column denoting the repo relation/edge.
	RepoColumn = "repo_id"
	// NamespaceTable is the table that holds the namespace relation/edge.
	NamespaceTable = "projects"
	// NamespaceInverseTable is the table name for the Namespace entity.
	// It exists in this package in order to avoid circular dependency with the "namespace" package.
	NamespaceInverseTable = "namespaces"
	// NamespaceColumn is the table column denoting the namespace relation/edge.
	NamespaceColumn = "namespace_id"
)

Variables

View Source
var (
	Hooks        [1]ent.Hook
	Interceptors [1]ent.Interceptor
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
	// DefaultName holds the default value on creation for the "name" field.
	DefaultName string
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// GitBranchValidator is a validator for the "git_branch" field. It is called by the builders before save.
	GitBranchValidator func(string) error
	// GitCommitValidator is a validator for the "git_commit" field. It is called by the builders before save.
	GitCommitValidator func(string) error
	// DefaultAtomic holds the default value on creation for the "atomic" field.
	DefaultAtomic bool
	// DefaultDeployStatus holds the default value on creation for the "deploy_status" field.
	DefaultDeployStatus types.Deploy
	// DefaultVersion holds the default value on creation for the "version" field.
	DefaultVersion int
	// ConfigTypeValidator is a validator for the "config_type" field. It is called by the builders before save.
	ConfigTypeValidator func(string) error
	// DefaultGitCommitWebURL holds the default value on creation for the "git_commit_web_url" field.
	DefaultGitCommitWebURL string
	// GitCommitWebURLValidator is a validator for the "git_commit_web_url" field. It is called by the builders before save.
	GitCommitWebURLValidator func(string) error
	// DefaultGitCommitTitle holds the default value on creation for the "git_commit_title" field.
	DefaultGitCommitTitle string
	// GitCommitTitleValidator is a validator for the "git_commit_title" field. It is called by the builders before save.
	GitCommitTitleValidator func(string) error
	// DefaultGitCommitAuthor holds the default value on creation for the "git_commit_author" field.
	DefaultGitCommitAuthor string
	// GitCommitAuthorValidator is a validator for the "git_commit_author" field. It is called by the builders before save.
	GitCommitAuthorValidator func(string) error
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/duc-cnzj/mars/v5/internal/ent/runtime"

Columns holds all SQL columns for project fields.

Functions

func And

func And(predicates ...predicate.Project) predicate.Project

And groups predicates with the AND operator between them.

func Atomic

func Atomic(v bool) predicate.Project

Atomic applies equality check predicate on the "atomic" field. It's identical to AtomicEQ.

func AtomicEQ

func AtomicEQ(v bool) predicate.Project

AtomicEQ applies the EQ predicate on the "atomic" field.

func AtomicNEQ

func AtomicNEQ(v bool) predicate.Project

AtomicNEQ applies the NEQ predicate on the "atomic" field.

func Config

func Config(v string) predicate.Project

Config applies equality check predicate on the "config" field. It's identical to ConfigEQ.

func ConfigContains

func ConfigContains(v string) predicate.Project

ConfigContains applies the Contains predicate on the "config" field.

func ConfigContainsFold

func ConfigContainsFold(v string) predicate.Project

ConfigContainsFold applies the ContainsFold predicate on the "config" field.

func ConfigEQ

func ConfigEQ(v string) predicate.Project

ConfigEQ applies the EQ predicate on the "config" field.

func ConfigEqualFold

func ConfigEqualFold(v string) predicate.Project

ConfigEqualFold applies the EqualFold predicate on the "config" field.

func ConfigGT

func ConfigGT(v string) predicate.Project

ConfigGT applies the GT predicate on the "config" field.

func ConfigGTE

func ConfigGTE(v string) predicate.Project

ConfigGTE applies the GTE predicate on the "config" field.

func ConfigHasPrefix

func ConfigHasPrefix(v string) predicate.Project

ConfigHasPrefix applies the HasPrefix predicate on the "config" field.

func ConfigHasSuffix

func ConfigHasSuffix(v string) predicate.Project

ConfigHasSuffix applies the HasSuffix predicate on the "config" field.

func ConfigIn

func ConfigIn(vs ...string) predicate.Project

ConfigIn applies the In predicate on the "config" field.

func ConfigIsNil

func ConfigIsNil() predicate.Project

ConfigIsNil applies the IsNil predicate on the "config" field.

func ConfigLT

func ConfigLT(v string) predicate.Project

ConfigLT applies the LT predicate on the "config" field.

func ConfigLTE

func ConfigLTE(v string) predicate.Project

ConfigLTE applies the LTE predicate on the "config" field.

func ConfigNEQ

func ConfigNEQ(v string) predicate.Project

ConfigNEQ applies the NEQ predicate on the "config" field.

func ConfigNotIn

func ConfigNotIn(vs ...string) predicate.Project

ConfigNotIn applies the NotIn predicate on the "config" field.

func ConfigNotNil

func ConfigNotNil() predicate.Project

ConfigNotNil applies the NotNil predicate on the "config" field.

func ConfigType

func ConfigType(v string) predicate.Project

ConfigType applies equality check predicate on the "config_type" field. It's identical to ConfigTypeEQ.

func ConfigTypeContains

func ConfigTypeContains(v string) predicate.Project

ConfigTypeContains applies the Contains predicate on the "config_type" field.

func ConfigTypeContainsFold

func ConfigTypeContainsFold(v string) predicate.Project

ConfigTypeContainsFold applies the ContainsFold predicate on the "config_type" field.

func ConfigTypeEQ

func ConfigTypeEQ(v string) predicate.Project

ConfigTypeEQ applies the EQ predicate on the "config_type" field.

func ConfigTypeEqualFold

func ConfigTypeEqualFold(v string) predicate.Project

ConfigTypeEqualFold applies the EqualFold predicate on the "config_type" field.

func ConfigTypeGT

func ConfigTypeGT(v string) predicate.Project

ConfigTypeGT applies the GT predicate on the "config_type" field.

func ConfigTypeGTE

func ConfigTypeGTE(v string) predicate.Project

ConfigTypeGTE applies the GTE predicate on the "config_type" field.

func ConfigTypeHasPrefix

func ConfigTypeHasPrefix(v string) predicate.Project

ConfigTypeHasPrefix applies the HasPrefix predicate on the "config_type" field.

func ConfigTypeHasSuffix

func ConfigTypeHasSuffix(v string) predicate.Project

ConfigTypeHasSuffix applies the HasSuffix predicate on the "config_type" field.

func ConfigTypeIn

func ConfigTypeIn(vs ...string) predicate.Project

ConfigTypeIn applies the In predicate on the "config_type" field.

func ConfigTypeIsNil

func ConfigTypeIsNil() predicate.Project

ConfigTypeIsNil applies the IsNil predicate on the "config_type" field.

func ConfigTypeLT

func ConfigTypeLT(v string) predicate.Project

ConfigTypeLT applies the LT predicate on the "config_type" field.

func ConfigTypeLTE

func ConfigTypeLTE(v string) predicate.Project

ConfigTypeLTE applies the LTE predicate on the "config_type" field.

func ConfigTypeNEQ

func ConfigTypeNEQ(v string) predicate.Project

ConfigTypeNEQ applies the NEQ predicate on the "config_type" field.

func ConfigTypeNotIn

func ConfigTypeNotIn(vs ...string) predicate.Project

ConfigTypeNotIn applies the NotIn predicate on the "config_type" field.

func ConfigTypeNotNil

func ConfigTypeNotNil() predicate.Project

ConfigTypeNotNil applies the NotNil predicate on the "config_type" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Project

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Project

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Project

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Project

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Project

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Project

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Project

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

func CreatedAtNotIn

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

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

func Creator

func Creator(v string) predicate.Project

Creator applies equality check predicate on the "creator" field. It's identical to CreatorEQ.

func CreatorContains

func CreatorContains(v string) predicate.Project

CreatorContains applies the Contains predicate on the "creator" field.

func CreatorContainsFold

func CreatorContainsFold(v string) predicate.Project

CreatorContainsFold applies the ContainsFold predicate on the "creator" field.

func CreatorEQ

func CreatorEQ(v string) predicate.Project

CreatorEQ applies the EQ predicate on the "creator" field.

func CreatorEqualFold

func CreatorEqualFold(v string) predicate.Project

CreatorEqualFold applies the EqualFold predicate on the "creator" field.

func CreatorGT

func CreatorGT(v string) predicate.Project

CreatorGT applies the GT predicate on the "creator" field.

func CreatorGTE

func CreatorGTE(v string) predicate.Project

CreatorGTE applies the GTE predicate on the "creator" field.

func CreatorHasPrefix

func CreatorHasPrefix(v string) predicate.Project

CreatorHasPrefix applies the HasPrefix predicate on the "creator" field.

func CreatorHasSuffix

func CreatorHasSuffix(v string) predicate.Project

CreatorHasSuffix applies the HasSuffix predicate on the "creator" field.

func CreatorIn

func CreatorIn(vs ...string) predicate.Project

CreatorIn applies the In predicate on the "creator" field.

func CreatorLT

func CreatorLT(v string) predicate.Project

CreatorLT applies the LT predicate on the "creator" field.

func CreatorLTE

func CreatorLTE(v string) predicate.Project

CreatorLTE applies the LTE predicate on the "creator" field.

func CreatorNEQ

func CreatorNEQ(v string) predicate.Project

CreatorNEQ applies the NEQ predicate on the "creator" field.

func CreatorNotIn

func CreatorNotIn(vs ...string) predicate.Project

CreatorNotIn applies the NotIn predicate on the "creator" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.Project

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.Project

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.Project

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.Project

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.Project

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.Project

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.Project

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.Project

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.Project

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.Project

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.Project

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func DeployStatus

func DeployStatus(v types.Deploy) predicate.Project

DeployStatus applies equality check predicate on the "deploy_status" field. It's identical to DeployStatusEQ.

func DeployStatusEQ

func DeployStatusEQ(v types.Deploy) predicate.Project

DeployStatusEQ applies the EQ predicate on the "deploy_status" field.

func DeployStatusGT

func DeployStatusGT(v types.Deploy) predicate.Project

DeployStatusGT applies the GT predicate on the "deploy_status" field.

func DeployStatusGTE

func DeployStatusGTE(v types.Deploy) predicate.Project

DeployStatusGTE applies the GTE predicate on the "deploy_status" field.

func DeployStatusIn

func DeployStatusIn(vs ...types.Deploy) predicate.Project

DeployStatusIn applies the In predicate on the "deploy_status" field.

func DeployStatusLT

func DeployStatusLT(v types.Deploy) predicate.Project

DeployStatusLT applies the LT predicate on the "deploy_status" field.

func DeployStatusLTE

func DeployStatusLTE(v types.Deploy) predicate.Project

DeployStatusLTE applies the LTE predicate on the "deploy_status" field.

func DeployStatusNEQ

func DeployStatusNEQ(v types.Deploy) predicate.Project

DeployStatusNEQ applies the NEQ predicate on the "deploy_status" field.

func DeployStatusNotIn

func DeployStatusNotIn(vs ...types.Deploy) predicate.Project

DeployStatusNotIn applies the NotIn predicate on the "deploy_status" field.

func DockerImageIsNil

func DockerImageIsNil() predicate.Project

DockerImageIsNil applies the IsNil predicate on the "docker_image" field.

func DockerImageNotNil

func DockerImageNotNil() predicate.Project

DockerImageNotNil applies the NotNil predicate on the "docker_image" field.

func EnvValuesIsNil

func EnvValuesIsNil() predicate.Project

EnvValuesIsNil applies the IsNil predicate on the "env_values" field.

func EnvValuesNotNil

func EnvValuesNotNil() predicate.Project

EnvValuesNotNil applies the NotNil predicate on the "env_values" field.

func ExtraValuesIsNil

func ExtraValuesIsNil() predicate.Project

ExtraValuesIsNil applies the IsNil predicate on the "extra_values" field.

func ExtraValuesNotNil

func ExtraValuesNotNil() predicate.Project

ExtraValuesNotNil applies the NotNil predicate on the "extra_values" field.

func FinalExtraValuesIsNil

func FinalExtraValuesIsNil() predicate.Project

FinalExtraValuesIsNil applies the IsNil predicate on the "final_extra_values" field.

func FinalExtraValuesNotNil

func FinalExtraValuesNotNil() predicate.Project

FinalExtraValuesNotNil applies the NotNil predicate on the "final_extra_values" field.

func GitBranch

func GitBranch(v string) predicate.Project

GitBranch applies equality check predicate on the "git_branch" field. It's identical to GitBranchEQ.

func GitBranchContains

func GitBranchContains(v string) predicate.Project

GitBranchContains applies the Contains predicate on the "git_branch" field.

func GitBranchContainsFold

func GitBranchContainsFold(v string) predicate.Project

GitBranchContainsFold applies the ContainsFold predicate on the "git_branch" field.

func GitBranchEQ

func GitBranchEQ(v string) predicate.Project

GitBranchEQ applies the EQ predicate on the "git_branch" field.

func GitBranchEqualFold

func GitBranchEqualFold(v string) predicate.Project

GitBranchEqualFold applies the EqualFold predicate on the "git_branch" field.

func GitBranchGT

func GitBranchGT(v string) predicate.Project

GitBranchGT applies the GT predicate on the "git_branch" field.

func GitBranchGTE

func GitBranchGTE(v string) predicate.Project

GitBranchGTE applies the GTE predicate on the "git_branch" field.

func GitBranchHasPrefix

func GitBranchHasPrefix(v string) predicate.Project

GitBranchHasPrefix applies the HasPrefix predicate on the "git_branch" field.

func GitBranchHasSuffix

func GitBranchHasSuffix(v string) predicate.Project

GitBranchHasSuffix applies the HasSuffix predicate on the "git_branch" field.

func GitBranchIn

func GitBranchIn(vs ...string) predicate.Project

GitBranchIn applies the In predicate on the "git_branch" field.

func GitBranchIsNil

func GitBranchIsNil() predicate.Project

GitBranchIsNil applies the IsNil predicate on the "git_branch" field.

func GitBranchLT

func GitBranchLT(v string) predicate.Project

GitBranchLT applies the LT predicate on the "git_branch" field.

func GitBranchLTE

func GitBranchLTE(v string) predicate.Project

GitBranchLTE applies the LTE predicate on the "git_branch" field.

func GitBranchNEQ

func GitBranchNEQ(v string) predicate.Project

GitBranchNEQ applies the NEQ predicate on the "git_branch" field.

func GitBranchNotIn

func GitBranchNotIn(vs ...string) predicate.Project

GitBranchNotIn applies the NotIn predicate on the "git_branch" field.

func GitBranchNotNil

func GitBranchNotNil() predicate.Project

GitBranchNotNil applies the NotNil predicate on the "git_branch" field.

func GitCommit

func GitCommit(v string) predicate.Project

GitCommit applies equality check predicate on the "git_commit" field. It's identical to GitCommitEQ.

func GitCommitAuthor

func GitCommitAuthor(v string) predicate.Project

GitCommitAuthor applies equality check predicate on the "git_commit_author" field. It's identical to GitCommitAuthorEQ.

func GitCommitAuthorContains

func GitCommitAuthorContains(v string) predicate.Project

GitCommitAuthorContains applies the Contains predicate on the "git_commit_author" field.

func GitCommitAuthorContainsFold

func GitCommitAuthorContainsFold(v string) predicate.Project

GitCommitAuthorContainsFold applies the ContainsFold predicate on the "git_commit_author" field.

func GitCommitAuthorEQ

func GitCommitAuthorEQ(v string) predicate.Project

GitCommitAuthorEQ applies the EQ predicate on the "git_commit_author" field.

func GitCommitAuthorEqualFold

func GitCommitAuthorEqualFold(v string) predicate.Project

GitCommitAuthorEqualFold applies the EqualFold predicate on the "git_commit_author" field.

func GitCommitAuthorGT

func GitCommitAuthorGT(v string) predicate.Project

GitCommitAuthorGT applies the GT predicate on the "git_commit_author" field.

func GitCommitAuthorGTE

func GitCommitAuthorGTE(v string) predicate.Project

GitCommitAuthorGTE applies the GTE predicate on the "git_commit_author" field.

func GitCommitAuthorHasPrefix

func GitCommitAuthorHasPrefix(v string) predicate.Project

GitCommitAuthorHasPrefix applies the HasPrefix predicate on the "git_commit_author" field.

func GitCommitAuthorHasSuffix

func GitCommitAuthorHasSuffix(v string) predicate.Project

GitCommitAuthorHasSuffix applies the HasSuffix predicate on the "git_commit_author" field.

func GitCommitAuthorIn

func GitCommitAuthorIn(vs ...string) predicate.Project

GitCommitAuthorIn applies the In predicate on the "git_commit_author" field.

func GitCommitAuthorLT

func GitCommitAuthorLT(v string) predicate.Project

GitCommitAuthorLT applies the LT predicate on the "git_commit_author" field.

func GitCommitAuthorLTE

func GitCommitAuthorLTE(v string) predicate.Project

GitCommitAuthorLTE applies the LTE predicate on the "git_commit_author" field.

func GitCommitAuthorNEQ

func GitCommitAuthorNEQ(v string) predicate.Project

GitCommitAuthorNEQ applies the NEQ predicate on the "git_commit_author" field.

func GitCommitAuthorNotIn

func GitCommitAuthorNotIn(vs ...string) predicate.Project

GitCommitAuthorNotIn applies the NotIn predicate on the "git_commit_author" field.

func GitCommitContains

func GitCommitContains(v string) predicate.Project

GitCommitContains applies the Contains predicate on the "git_commit" field.

func GitCommitContainsFold

func GitCommitContainsFold(v string) predicate.Project

GitCommitContainsFold applies the ContainsFold predicate on the "git_commit" field.

func GitCommitDate

func GitCommitDate(v time.Time) predicate.Project

GitCommitDate applies equality check predicate on the "git_commit_date" field. It's identical to GitCommitDateEQ.

func GitCommitDateEQ

func GitCommitDateEQ(v time.Time) predicate.Project

GitCommitDateEQ applies the EQ predicate on the "git_commit_date" field.

func GitCommitDateGT

func GitCommitDateGT(v time.Time) predicate.Project

GitCommitDateGT applies the GT predicate on the "git_commit_date" field.

func GitCommitDateGTE

func GitCommitDateGTE(v time.Time) predicate.Project

GitCommitDateGTE applies the GTE predicate on the "git_commit_date" field.

func GitCommitDateIn

func GitCommitDateIn(vs ...time.Time) predicate.Project

GitCommitDateIn applies the In predicate on the "git_commit_date" field.

func GitCommitDateIsNil

func GitCommitDateIsNil() predicate.Project

GitCommitDateIsNil applies the IsNil predicate on the "git_commit_date" field.

func GitCommitDateLT

func GitCommitDateLT(v time.Time) predicate.Project

GitCommitDateLT applies the LT predicate on the "git_commit_date" field.

func GitCommitDateLTE

func GitCommitDateLTE(v time.Time) predicate.Project

GitCommitDateLTE applies the LTE predicate on the "git_commit_date" field.

func GitCommitDateNEQ

func GitCommitDateNEQ(v time.Time) predicate.Project

GitCommitDateNEQ applies the NEQ predicate on the "git_commit_date" field.

func GitCommitDateNotIn

func GitCommitDateNotIn(vs ...time.Time) predicate.Project

GitCommitDateNotIn applies the NotIn predicate on the "git_commit_date" field.

func GitCommitDateNotNil

func GitCommitDateNotNil() predicate.Project

GitCommitDateNotNil applies the NotNil predicate on the "git_commit_date" field.

func GitCommitEQ

func GitCommitEQ(v string) predicate.Project

GitCommitEQ applies the EQ predicate on the "git_commit" field.

func GitCommitEqualFold

func GitCommitEqualFold(v string) predicate.Project

GitCommitEqualFold applies the EqualFold predicate on the "git_commit" field.

func GitCommitGT

func GitCommitGT(v string) predicate.Project

GitCommitGT applies the GT predicate on the "git_commit" field.

func GitCommitGTE

func GitCommitGTE(v string) predicate.Project

GitCommitGTE applies the GTE predicate on the "git_commit" field.

func GitCommitHasPrefix

func GitCommitHasPrefix(v string) predicate.Project

GitCommitHasPrefix applies the HasPrefix predicate on the "git_commit" field.

func GitCommitHasSuffix

func GitCommitHasSuffix(v string) predicate.Project

GitCommitHasSuffix applies the HasSuffix predicate on the "git_commit" field.

func GitCommitIn

func GitCommitIn(vs ...string) predicate.Project

GitCommitIn applies the In predicate on the "git_commit" field.

func GitCommitIsNil

func GitCommitIsNil() predicate.Project

GitCommitIsNil applies the IsNil predicate on the "git_commit" field.

func GitCommitLT

func GitCommitLT(v string) predicate.Project

GitCommitLT applies the LT predicate on the "git_commit" field.

func GitCommitLTE

func GitCommitLTE(v string) predicate.Project

GitCommitLTE applies the LTE predicate on the "git_commit" field.

func GitCommitNEQ

func GitCommitNEQ(v string) predicate.Project

GitCommitNEQ applies the NEQ predicate on the "git_commit" field.

func GitCommitNotIn

func GitCommitNotIn(vs ...string) predicate.Project

GitCommitNotIn applies the NotIn predicate on the "git_commit" field.

func GitCommitNotNil

func GitCommitNotNil() predicate.Project

GitCommitNotNil applies the NotNil predicate on the "git_commit" field.

func GitCommitTitle

func GitCommitTitle(v string) predicate.Project

GitCommitTitle applies equality check predicate on the "git_commit_title" field. It's identical to GitCommitTitleEQ.

func GitCommitTitleContains

func GitCommitTitleContains(v string) predicate.Project

GitCommitTitleContains applies the Contains predicate on the "git_commit_title" field.

func GitCommitTitleContainsFold

func GitCommitTitleContainsFold(v string) predicate.Project

GitCommitTitleContainsFold applies the ContainsFold predicate on the "git_commit_title" field.

func GitCommitTitleEQ

func GitCommitTitleEQ(v string) predicate.Project

GitCommitTitleEQ applies the EQ predicate on the "git_commit_title" field.

func GitCommitTitleEqualFold

func GitCommitTitleEqualFold(v string) predicate.Project

GitCommitTitleEqualFold applies the EqualFold predicate on the "git_commit_title" field.

func GitCommitTitleGT

func GitCommitTitleGT(v string) predicate.Project

GitCommitTitleGT applies the GT predicate on the "git_commit_title" field.

func GitCommitTitleGTE

func GitCommitTitleGTE(v string) predicate.Project

GitCommitTitleGTE applies the GTE predicate on the "git_commit_title" field.

func GitCommitTitleHasPrefix

func GitCommitTitleHasPrefix(v string) predicate.Project

GitCommitTitleHasPrefix applies the HasPrefix predicate on the "git_commit_title" field.

func GitCommitTitleHasSuffix

func GitCommitTitleHasSuffix(v string) predicate.Project

GitCommitTitleHasSuffix applies the HasSuffix predicate on the "git_commit_title" field.

func GitCommitTitleIn

func GitCommitTitleIn(vs ...string) predicate.Project

GitCommitTitleIn applies the In predicate on the "git_commit_title" field.

func GitCommitTitleLT

func GitCommitTitleLT(v string) predicate.Project

GitCommitTitleLT applies the LT predicate on the "git_commit_title" field.

func GitCommitTitleLTE

func GitCommitTitleLTE(v string) predicate.Project

GitCommitTitleLTE applies the LTE predicate on the "git_commit_title" field.

func GitCommitTitleNEQ

func GitCommitTitleNEQ(v string) predicate.Project

GitCommitTitleNEQ applies the NEQ predicate on the "git_commit_title" field.

func GitCommitTitleNotIn

func GitCommitTitleNotIn(vs ...string) predicate.Project

GitCommitTitleNotIn applies the NotIn predicate on the "git_commit_title" field.

func GitCommitWebURL

func GitCommitWebURL(v string) predicate.Project

GitCommitWebURL applies equality check predicate on the "git_commit_web_url" field. It's identical to GitCommitWebURLEQ.

func GitCommitWebURLContains

func GitCommitWebURLContains(v string) predicate.Project

GitCommitWebURLContains applies the Contains predicate on the "git_commit_web_url" field.

func GitCommitWebURLContainsFold

func GitCommitWebURLContainsFold(v string) predicate.Project

GitCommitWebURLContainsFold applies the ContainsFold predicate on the "git_commit_web_url" field.

func GitCommitWebURLEQ

func GitCommitWebURLEQ(v string) predicate.Project

GitCommitWebURLEQ applies the EQ predicate on the "git_commit_web_url" field.

func GitCommitWebURLEqualFold

func GitCommitWebURLEqualFold(v string) predicate.Project

GitCommitWebURLEqualFold applies the EqualFold predicate on the "git_commit_web_url" field.

func GitCommitWebURLGT

func GitCommitWebURLGT(v string) predicate.Project

GitCommitWebURLGT applies the GT predicate on the "git_commit_web_url" field.

func GitCommitWebURLGTE

func GitCommitWebURLGTE(v string) predicate.Project

GitCommitWebURLGTE applies the GTE predicate on the "git_commit_web_url" field.

func GitCommitWebURLHasPrefix

func GitCommitWebURLHasPrefix(v string) predicate.Project

GitCommitWebURLHasPrefix applies the HasPrefix predicate on the "git_commit_web_url" field.

func GitCommitWebURLHasSuffix

func GitCommitWebURLHasSuffix(v string) predicate.Project

GitCommitWebURLHasSuffix applies the HasSuffix predicate on the "git_commit_web_url" field.

func GitCommitWebURLIn

func GitCommitWebURLIn(vs ...string) predicate.Project

GitCommitWebURLIn applies the In predicate on the "git_commit_web_url" field.

func GitCommitWebURLLT

func GitCommitWebURLLT(v string) predicate.Project

GitCommitWebURLLT applies the LT predicate on the "git_commit_web_url" field.

func GitCommitWebURLLTE

func GitCommitWebURLLTE(v string) predicate.Project

GitCommitWebURLLTE applies the LTE predicate on the "git_commit_web_url" field.

func GitCommitWebURLNEQ

func GitCommitWebURLNEQ(v string) predicate.Project

GitCommitWebURLNEQ applies the NEQ predicate on the "git_commit_web_url" field.

func GitCommitWebURLNotIn

func GitCommitWebURLNotIn(vs ...string) predicate.Project

GitCommitWebURLNotIn applies the NotIn predicate on the "git_commit_web_url" field.

func GitProjectID

func GitProjectID(v int) predicate.Project

GitProjectID applies equality check predicate on the "git_project_id" field. It's identical to GitProjectIDEQ.

func GitProjectIDEQ

func GitProjectIDEQ(v int) predicate.Project

GitProjectIDEQ applies the EQ predicate on the "git_project_id" field.

func GitProjectIDGT

func GitProjectIDGT(v int) predicate.Project

GitProjectIDGT applies the GT predicate on the "git_project_id" field.

func GitProjectIDGTE

func GitProjectIDGTE(v int) predicate.Project

GitProjectIDGTE applies the GTE predicate on the "git_project_id" field.

func GitProjectIDIn

func GitProjectIDIn(vs ...int) predicate.Project

GitProjectIDIn applies the In predicate on the "git_project_id" field.

func GitProjectIDIsNil

func GitProjectIDIsNil() predicate.Project

GitProjectIDIsNil applies the IsNil predicate on the "git_project_id" field.

func GitProjectIDLT

func GitProjectIDLT(v int) predicate.Project

GitProjectIDLT applies the LT predicate on the "git_project_id" field.

func GitProjectIDLTE

func GitProjectIDLTE(v int) predicate.Project

GitProjectIDLTE applies the LTE predicate on the "git_project_id" field.

func GitProjectIDNEQ

func GitProjectIDNEQ(v int) predicate.Project

GitProjectIDNEQ applies the NEQ predicate on the "git_project_id" field.

func GitProjectIDNotIn

func GitProjectIDNotIn(vs ...int) predicate.Project

GitProjectIDNotIn applies the NotIn predicate on the "git_project_id" field.

func GitProjectIDNotNil

func GitProjectIDNotNil() predicate.Project

GitProjectIDNotNil applies the NotNil predicate on the "git_project_id" field.

func HasChangelogs

func HasChangelogs() predicate.Project

HasChangelogs applies the HasEdge predicate on the "changelogs" edge.

func HasChangelogsWith

func HasChangelogsWith(preds ...predicate.Changelog) predicate.Project

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

func HasNamespace

func HasNamespace() predicate.Project

HasNamespace applies the HasEdge predicate on the "namespace" edge.

func HasNamespaceWith

func HasNamespaceWith(preds ...predicate.Namespace) predicate.Project

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

func HasRepo

func HasRepo() predicate.Project

HasRepo applies the HasEdge predicate on the "repo" edge.

func HasRepoWith

func HasRepoWith(preds ...predicate.Repo) predicate.Project

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

func ID

func ID(id int) predicate.Project

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Project

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Project

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Project

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Project

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Project

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Project

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func ManifestIsNil

func ManifestIsNil() predicate.Project

ManifestIsNil applies the IsNil predicate on the "manifest" field.

func ManifestNotNil

func ManifestNotNil() predicate.Project

ManifestNotNil applies the NotNil predicate on the "manifest" field.

func Name

func Name(v string) predicate.Project

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Project

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Project

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Project

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Project

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Project

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Project

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Project

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Project

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Project

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Project

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Project

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Project

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Project

NameNotIn applies the NotIn predicate on the "name" field.

func NamespaceID

func NamespaceID(v int) predicate.Project

NamespaceID applies equality check predicate on the "namespace_id" field. It's identical to NamespaceIDEQ.

func NamespaceIDEQ

func NamespaceIDEQ(v int) predicate.Project

NamespaceIDEQ applies the EQ predicate on the "namespace_id" field.

func NamespaceIDIn

func NamespaceIDIn(vs ...int) predicate.Project

NamespaceIDIn applies the In predicate on the "namespace_id" field.

func NamespaceIDIsNil

func NamespaceIDIsNil() predicate.Project

NamespaceIDIsNil applies the IsNil predicate on the "namespace_id" field.

func NamespaceIDNEQ

func NamespaceIDNEQ(v int) predicate.Project

NamespaceIDNEQ applies the NEQ predicate on the "namespace_id" field.

func NamespaceIDNotIn

func NamespaceIDNotIn(vs ...int) predicate.Project

NamespaceIDNotIn applies the NotIn predicate on the "namespace_id" field.

func NamespaceIDNotNil

func NamespaceIDNotNil() predicate.Project

NamespaceIDNotNil applies the NotNil predicate on the "namespace_id" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Project) predicate.Project

Or groups predicates with the OR operator between them.

func OverrideValues

func OverrideValues(v string) predicate.Project

OverrideValues applies equality check predicate on the "override_values" field. It's identical to OverrideValuesEQ.

func OverrideValuesContains

func OverrideValuesContains(v string) predicate.Project

OverrideValuesContains applies the Contains predicate on the "override_values" field.

func OverrideValuesContainsFold

func OverrideValuesContainsFold(v string) predicate.Project

OverrideValuesContainsFold applies the ContainsFold predicate on the "override_values" field.

func OverrideValuesEQ

func OverrideValuesEQ(v string) predicate.Project

OverrideValuesEQ applies the EQ predicate on the "override_values" field.

func OverrideValuesEqualFold

func OverrideValuesEqualFold(v string) predicate.Project

OverrideValuesEqualFold applies the EqualFold predicate on the "override_values" field.

func OverrideValuesGT

func OverrideValuesGT(v string) predicate.Project

OverrideValuesGT applies the GT predicate on the "override_values" field.

func OverrideValuesGTE

func OverrideValuesGTE(v string) predicate.Project

OverrideValuesGTE applies the GTE predicate on the "override_values" field.

func OverrideValuesHasPrefix

func OverrideValuesHasPrefix(v string) predicate.Project

OverrideValuesHasPrefix applies the HasPrefix predicate on the "override_values" field.

func OverrideValuesHasSuffix

func OverrideValuesHasSuffix(v string) predicate.Project

OverrideValuesHasSuffix applies the HasSuffix predicate on the "override_values" field.

func OverrideValuesIn

func OverrideValuesIn(vs ...string) predicate.Project

OverrideValuesIn applies the In predicate on the "override_values" field.

func OverrideValuesIsNil

func OverrideValuesIsNil() predicate.Project

OverrideValuesIsNil applies the IsNil predicate on the "override_values" field.

func OverrideValuesLT

func OverrideValuesLT(v string) predicate.Project

OverrideValuesLT applies the LT predicate on the "override_values" field.

func OverrideValuesLTE

func OverrideValuesLTE(v string) predicate.Project

OverrideValuesLTE applies the LTE predicate on the "override_values" field.

func OverrideValuesNEQ

func OverrideValuesNEQ(v string) predicate.Project

OverrideValuesNEQ applies the NEQ predicate on the "override_values" field.

func OverrideValuesNotIn

func OverrideValuesNotIn(vs ...string) predicate.Project

OverrideValuesNotIn applies the NotIn predicate on the "override_values" field.

func OverrideValuesNotNil

func OverrideValuesNotNil() predicate.Project

OverrideValuesNotNil applies the NotNil predicate on the "override_values" field.

func PodSelectorsIsNil

func PodSelectorsIsNil() predicate.Project

PodSelectorsIsNil applies the IsNil predicate on the "pod_selectors" field.

func PodSelectorsNotNil

func PodSelectorsNotNil() predicate.Project

PodSelectorsNotNil applies the NotNil predicate on the "pod_selectors" field.

func RepoID

func RepoID(v int) predicate.Project

RepoID applies equality check predicate on the "repo_id" field. It's identical to RepoIDEQ.

func RepoIDEQ

func RepoIDEQ(v int) predicate.Project

RepoIDEQ applies the EQ predicate on the "repo_id" field.

func RepoIDIn

func RepoIDIn(vs ...int) predicate.Project

RepoIDIn applies the In predicate on the "repo_id" field.

func RepoIDIsNil

func RepoIDIsNil() predicate.Project

RepoIDIsNil applies the IsNil predicate on the "repo_id" field.

func RepoIDNEQ

func RepoIDNEQ(v int) predicate.Project

RepoIDNEQ applies the NEQ predicate on the "repo_id" field.

func RepoIDNotIn

func RepoIDNotIn(vs ...int) predicate.Project

RepoIDNotIn applies the NotIn predicate on the "repo_id" field.

func RepoIDNotNil

func RepoIDNotNil() predicate.Project

RepoIDNotNil applies the NotNil predicate on the "repo_id" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Project

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Project

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Project

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Project

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Project

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Project

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Project

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

func UpdatedAtNotIn

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

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

func ValidColumn

func ValidColumn(column string) bool

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

func Version

func Version(v int) predicate.Project

Version applies equality check predicate on the "version" field. It's identical to VersionEQ.

func VersionEQ

func VersionEQ(v int) predicate.Project

VersionEQ applies the EQ predicate on the "version" field.

func VersionGT

func VersionGT(v int) predicate.Project

VersionGT applies the GT predicate on the "version" field.

func VersionGTE

func VersionGTE(v int) predicate.Project

VersionGTE applies the GTE predicate on the "version" field.

func VersionIn

func VersionIn(vs ...int) predicate.Project

VersionIn applies the In predicate on the "version" field.

func VersionLT

func VersionLT(v int) predicate.Project

VersionLT applies the LT predicate on the "version" field.

func VersionLTE

func VersionLTE(v int) predicate.Project

VersionLTE applies the LTE predicate on the "version" field.

func VersionNEQ

func VersionNEQ(v int) predicate.Project

VersionNEQ applies the NEQ predicate on the "version" field.

func VersionNotIn

func VersionNotIn(vs ...int) predicate.Project

VersionNotIn applies the NotIn predicate on the "version" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Project queries.

func ByAtomic

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

ByAtomic orders the results by the atomic field.

func ByChangelogs

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

ByChangelogs orders the results by changelogs terms.

func ByChangelogsCount

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

ByChangelogsCount orders the results by changelogs count.

func ByConfig

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

ByConfig orders the results by the config field.

func ByConfigType

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

ByConfigType orders the results by the config_type field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreator

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

ByCreator orders the results by the creator field.

func ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByDeployStatus

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

ByDeployStatus orders the results by the deploy_status field.

func ByGitBranch

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

ByGitBranch orders the results by the git_branch field.

func ByGitCommit

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

ByGitCommit orders the results by the git_commit field.

func ByGitCommitAuthor

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

ByGitCommitAuthor orders the results by the git_commit_author field.

func ByGitCommitDate

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

ByGitCommitDate orders the results by the git_commit_date field.

func ByGitCommitTitle

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

ByGitCommitTitle orders the results by the git_commit_title field.

func ByGitCommitWebURL

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

ByGitCommitWebURL orders the results by the git_commit_web_url field.

func ByGitProjectID

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

ByGitProjectID orders the results by the git_project_id field.

func ByID

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

ByID orders the results by the id field.

func ByName

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

ByName orders the results by the name field.

func ByNamespaceField

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

ByNamespaceField orders the results by namespace field.

func ByNamespaceID

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

ByNamespaceID orders the results by the namespace_id field.

func ByOverrideValues

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

ByOverrideValues orders the results by the override_values field.

func ByRepoField

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

ByRepoField orders the results by repo field.

func ByRepoID

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

ByRepoID orders the results by the repo_id field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByVersion

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

ByVersion orders the results by the version field.

Jump to

Keyboard shortcuts

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