gitbot

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: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the gitbot type in the database.
	Label = "git_bot"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldUserID holds the string denoting the user_id field in the database.
	FieldUserID = "user_id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldHostID holds the string denoting the host_id field in the database.
	FieldHostID = "host_id"
	// FieldToken holds the string denoting the token field in the database.
	FieldToken = "token"
	// FieldSecretToken holds the string denoting the secret_token field in the database.
	FieldSecretToken = "secret_token"
	// FieldPlatform holds the string denoting the platform field in the database.
	FieldPlatform = "platform"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeGitBotTasks holds the string denoting the git_bot_tasks edge name in mutations.
	EdgeGitBotTasks = "git_bot_tasks"
	// EdgeHost holds the string denoting the host edge name in mutations.
	EdgeHost = "host"
	// EdgeUsers holds the string denoting the users edge name in mutations.
	EdgeUsers = "users"
	// EdgeProjects holds the string denoting the projects edge name in mutations.
	EdgeProjects = "projects"
	// EdgeGitBotUsers holds the string denoting the git_bot_users edge name in mutations.
	EdgeGitBotUsers = "git_bot_users"
	// EdgeProjectGitBots holds the string denoting the project_git_bots edge name in mutations.
	EdgeProjectGitBots = "project_git_bots"
	// Table holds the table name of the gitbot in the database.
	Table = "git_bots"
	// GitBotTasksTable is the table that holds the git_bot_tasks relation/edge.
	GitBotTasksTable = "git_bot_tasks"
	// GitBotTasksInverseTable is the table name for the GitBotTask entity.
	// It exists in this package in order to avoid circular dependency with the "gitbottask" package.
	GitBotTasksInverseTable = "git_bot_tasks"
	// GitBotTasksColumn is the table column denoting the git_bot_tasks relation/edge.
	GitBotTasksColumn = "git_bot_id"
	// HostTable is the table that holds the host relation/edge.
	HostTable = "git_bots"
	// HostInverseTable is the table name for the Host entity.
	// It exists in this package in order to avoid circular dependency with the "host" package.
	HostInverseTable = "hosts"
	// HostColumn is the table column denoting the host relation/edge.
	HostColumn = "host_id"
	// UsersTable is the table that holds the users relation/edge. The primary key declared below.
	UsersTable = "git_bot_users"
	// UsersInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	UsersInverseTable = "users"
	// ProjectsTable is the table that holds the projects relation/edge. The primary key declared below.
	ProjectsTable = "project_git_bots"
	// ProjectsInverseTable is the table name for the Project entity.
	// It exists in this package in order to avoid circular dependency with the "project" package.
	ProjectsInverseTable = "projects"
	// GitBotUsersTable is the table that holds the git_bot_users relation/edge.
	GitBotUsersTable = "git_bot_users"
	// GitBotUsersInverseTable is the table name for the GitBotUser entity.
	// It exists in this package in order to avoid circular dependency with the "gitbotuser" package.
	GitBotUsersInverseTable = "git_bot_users"
	// GitBotUsersColumn is the table column denoting the git_bot_users relation/edge.
	GitBotUsersColumn = "git_bot_id"
	// ProjectGitBotsTable is the table that holds the project_git_bots relation/edge.
	ProjectGitBotsTable = "project_git_bots"
	// ProjectGitBotsInverseTable is the table name for the ProjectGitBot entity.
	// It exists in this package in order to avoid circular dependency with the "projectgitbot" package.
	ProjectGitBotsInverseTable = "project_git_bots"
	// ProjectGitBotsColumn is the table column denoting the project_git_bots relation/edge.
	ProjectGitBotsColumn = "git_bot_id"
)

Variables

View Source
var (
	// UsersPrimaryKey and UsersColumn2 are the table columns denoting the
	// primary key for the users relation (M2M).
	UsersPrimaryKey = []string{"user_id", "git_bot_id"}
	// ProjectsPrimaryKey and ProjectsColumn2 are the table columns denoting the
	// primary key for the projects relation (M2M).
	ProjectsPrimaryKey = []string{"project_id", "git_bot_id"}
)
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
)

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/chaitin/MonkeyCode/backend/db/runtime"

Columns holds all SQL columns for gitbot fields.

Functions

func And

func And(predicates ...predicate.GitBot) predicate.GitBot

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.GitBot

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.GitBot

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.GitBot

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.GitBot

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.GitBot

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.GitBot

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.GitBot

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

func CreatedAtNotIn

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

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

func DeletedAt

func DeletedAt(v time.Time) predicate.GitBot

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.GitBot

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.GitBot

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.GitBot

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.GitBot

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.GitBot

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.GitBot

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.GitBot

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.GitBot

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

func HasGitBotTasks

func HasGitBotTasks() predicate.GitBot

HasGitBotTasks applies the HasEdge predicate on the "git_bot_tasks" edge.

func HasGitBotTasksWith

func HasGitBotTasksWith(preds ...predicate.GitBotTask) predicate.GitBot

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

func HasGitBotUsers

func HasGitBotUsers() predicate.GitBot

HasGitBotUsers applies the HasEdge predicate on the "git_bot_users" edge.

func HasGitBotUsersWith

func HasGitBotUsersWith(preds ...predicate.GitBotUser) predicate.GitBot

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

func HasHost

func HasHost() predicate.GitBot

HasHost applies the HasEdge predicate on the "host" edge.

func HasHostWith

func HasHostWith(preds ...predicate.Host) predicate.GitBot

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

func HasProjectGitBots

func HasProjectGitBots() predicate.GitBot

HasProjectGitBots applies the HasEdge predicate on the "project_git_bots" edge.

func HasProjectGitBotsWith

func HasProjectGitBotsWith(preds ...predicate.ProjectGitBot) predicate.GitBot

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

func HasProjects

func HasProjects() predicate.GitBot

HasProjects applies the HasEdge predicate on the "projects" edge.

func HasProjectsWith

func HasProjectsWith(preds ...predicate.Project) predicate.GitBot

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

func HasUsers

func HasUsers() predicate.GitBot

HasUsers applies the HasEdge predicate on the "users" edge.

func HasUsersWith

func HasUsersWith(preds ...predicate.User) predicate.GitBot

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

func HostID

func HostID(v string) predicate.GitBot

HostID applies equality check predicate on the "host_id" field. It's identical to HostIDEQ.

func HostIDContains

func HostIDContains(v string) predicate.GitBot

HostIDContains applies the Contains predicate on the "host_id" field.

func HostIDContainsFold

func HostIDContainsFold(v string) predicate.GitBot

HostIDContainsFold applies the ContainsFold predicate on the "host_id" field.

func HostIDEQ

func HostIDEQ(v string) predicate.GitBot

HostIDEQ applies the EQ predicate on the "host_id" field.

func HostIDEqualFold

func HostIDEqualFold(v string) predicate.GitBot

HostIDEqualFold applies the EqualFold predicate on the "host_id" field.

func HostIDGT

func HostIDGT(v string) predicate.GitBot

HostIDGT applies the GT predicate on the "host_id" field.

func HostIDGTE

func HostIDGTE(v string) predicate.GitBot

HostIDGTE applies the GTE predicate on the "host_id" field.

func HostIDHasPrefix

func HostIDHasPrefix(v string) predicate.GitBot

HostIDHasPrefix applies the HasPrefix predicate on the "host_id" field.

func HostIDHasSuffix

func HostIDHasSuffix(v string) predicate.GitBot

HostIDHasSuffix applies the HasSuffix predicate on the "host_id" field.

func HostIDIn

func HostIDIn(vs ...string) predicate.GitBot

HostIDIn applies the In predicate on the "host_id" field.

func HostIDLT

func HostIDLT(v string) predicate.GitBot

HostIDLT applies the LT predicate on the "host_id" field.

func HostIDLTE

func HostIDLTE(v string) predicate.GitBot

HostIDLTE applies the LTE predicate on the "host_id" field.

func HostIDNEQ

func HostIDNEQ(v string) predicate.GitBot

HostIDNEQ applies the NEQ predicate on the "host_id" field.

func HostIDNotIn

func HostIDNotIn(vs ...string) predicate.GitBot

HostIDNotIn applies the NotIn predicate on the "host_id" field.

func ID

func ID(id uuid.UUID) predicate.GitBot

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.GitBot

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.GitBot

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.GitBot

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.GitBot

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.GitBot

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.GitBot

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.GitBot

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

func NameContains

func NameContains(v string) predicate.GitBot

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

func NameContainsFold

func NameContainsFold(v string) predicate.GitBot

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

func NameEQ

func NameEQ(v string) predicate.GitBot

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

func NameEqualFold

func NameEqualFold(v string) predicate.GitBot

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

func NameGT

func NameGT(v string) predicate.GitBot

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

func NameGTE

func NameGTE(v string) predicate.GitBot

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.GitBot

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.GitBot

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

func NameIn

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

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

func NameIsNil

func NameIsNil() predicate.GitBot

NameIsNil applies the IsNil predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.GitBot

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

func NameLTE

func NameLTE(v string) predicate.GitBot

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

func NameNEQ

func NameNEQ(v string) predicate.GitBot

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

func NameNotIn

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

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

func NameNotNil

func NameNotNil() predicate.GitBot

NameNotNil applies the NotNil predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.GitBot) predicate.GitBot

Or groups predicates with the OR operator between them.

func Platform

func Platform(v consts.GitPlatform) predicate.GitBot

Platform applies equality check predicate on the "platform" field. It's identical to PlatformEQ.

func PlatformContains

func PlatformContains(v consts.GitPlatform) predicate.GitBot

PlatformContains applies the Contains predicate on the "platform" field.

func PlatformContainsFold

func PlatformContainsFold(v consts.GitPlatform) predicate.GitBot

PlatformContainsFold applies the ContainsFold predicate on the "platform" field.

func PlatformEQ

func PlatformEQ(v consts.GitPlatform) predicate.GitBot

PlatformEQ applies the EQ predicate on the "platform" field.

func PlatformEqualFold

func PlatformEqualFold(v consts.GitPlatform) predicate.GitBot

PlatformEqualFold applies the EqualFold predicate on the "platform" field.

func PlatformGT

func PlatformGT(v consts.GitPlatform) predicate.GitBot

PlatformGT applies the GT predicate on the "platform" field.

func PlatformGTE

func PlatformGTE(v consts.GitPlatform) predicate.GitBot

PlatformGTE applies the GTE predicate on the "platform" field.

func PlatformHasPrefix

func PlatformHasPrefix(v consts.GitPlatform) predicate.GitBot

PlatformHasPrefix applies the HasPrefix predicate on the "platform" field.

func PlatformHasSuffix

func PlatformHasSuffix(v consts.GitPlatform) predicate.GitBot

PlatformHasSuffix applies the HasSuffix predicate on the "platform" field.

func PlatformIn

func PlatformIn(vs ...consts.GitPlatform) predicate.GitBot

PlatformIn applies the In predicate on the "platform" field.

func PlatformLT

func PlatformLT(v consts.GitPlatform) predicate.GitBot

PlatformLT applies the LT predicate on the "platform" field.

func PlatformLTE

func PlatformLTE(v consts.GitPlatform) predicate.GitBot

PlatformLTE applies the LTE predicate on the "platform" field.

func PlatformNEQ

func PlatformNEQ(v consts.GitPlatform) predicate.GitBot

PlatformNEQ applies the NEQ predicate on the "platform" field.

func PlatformNotIn

func PlatformNotIn(vs ...consts.GitPlatform) predicate.GitBot

PlatformNotIn applies the NotIn predicate on the "platform" field.

func SecretToken

func SecretToken(v string) predicate.GitBot

SecretToken applies equality check predicate on the "secret_token" field. It's identical to SecretTokenEQ.

func SecretTokenContains

func SecretTokenContains(v string) predicate.GitBot

SecretTokenContains applies the Contains predicate on the "secret_token" field.

func SecretTokenContainsFold

func SecretTokenContainsFold(v string) predicate.GitBot

SecretTokenContainsFold applies the ContainsFold predicate on the "secret_token" field.

func SecretTokenEQ

func SecretTokenEQ(v string) predicate.GitBot

SecretTokenEQ applies the EQ predicate on the "secret_token" field.

func SecretTokenEqualFold

func SecretTokenEqualFold(v string) predicate.GitBot

SecretTokenEqualFold applies the EqualFold predicate on the "secret_token" field.

func SecretTokenGT

func SecretTokenGT(v string) predicate.GitBot

SecretTokenGT applies the GT predicate on the "secret_token" field.

func SecretTokenGTE

func SecretTokenGTE(v string) predicate.GitBot

SecretTokenGTE applies the GTE predicate on the "secret_token" field.

func SecretTokenHasPrefix

func SecretTokenHasPrefix(v string) predicate.GitBot

SecretTokenHasPrefix applies the HasPrefix predicate on the "secret_token" field.

func SecretTokenHasSuffix

func SecretTokenHasSuffix(v string) predicate.GitBot

SecretTokenHasSuffix applies the HasSuffix predicate on the "secret_token" field.

func SecretTokenIn

func SecretTokenIn(vs ...string) predicate.GitBot

SecretTokenIn applies the In predicate on the "secret_token" field.

func SecretTokenIsNil

func SecretTokenIsNil() predicate.GitBot

SecretTokenIsNil applies the IsNil predicate on the "secret_token" field.

func SecretTokenLT

func SecretTokenLT(v string) predicate.GitBot

SecretTokenLT applies the LT predicate on the "secret_token" field.

func SecretTokenLTE

func SecretTokenLTE(v string) predicate.GitBot

SecretTokenLTE applies the LTE predicate on the "secret_token" field.

func SecretTokenNEQ

func SecretTokenNEQ(v string) predicate.GitBot

SecretTokenNEQ applies the NEQ predicate on the "secret_token" field.

func SecretTokenNotIn

func SecretTokenNotIn(vs ...string) predicate.GitBot

SecretTokenNotIn applies the NotIn predicate on the "secret_token" field.

func SecretTokenNotNil

func SecretTokenNotNil() predicate.GitBot

SecretTokenNotNil applies the NotNil predicate on the "secret_token" field.

func Token

func Token(v string) predicate.GitBot

Token applies equality check predicate on the "token" field. It's identical to TokenEQ.

func TokenContains

func TokenContains(v string) predicate.GitBot

TokenContains applies the Contains predicate on the "token" field.

func TokenContainsFold

func TokenContainsFold(v string) predicate.GitBot

TokenContainsFold applies the ContainsFold predicate on the "token" field.

func TokenEQ

func TokenEQ(v string) predicate.GitBot

TokenEQ applies the EQ predicate on the "token" field.

func TokenEqualFold

func TokenEqualFold(v string) predicate.GitBot

TokenEqualFold applies the EqualFold predicate on the "token" field.

func TokenGT

func TokenGT(v string) predicate.GitBot

TokenGT applies the GT predicate on the "token" field.

func TokenGTE

func TokenGTE(v string) predicate.GitBot

TokenGTE applies the GTE predicate on the "token" field.

func TokenHasPrefix

func TokenHasPrefix(v string) predicate.GitBot

TokenHasPrefix applies the HasPrefix predicate on the "token" field.

func TokenHasSuffix

func TokenHasSuffix(v string) predicate.GitBot

TokenHasSuffix applies the HasSuffix predicate on the "token" field.

func TokenIn

func TokenIn(vs ...string) predicate.GitBot

TokenIn applies the In predicate on the "token" field.

func TokenIsNil

func TokenIsNil() predicate.GitBot

TokenIsNil applies the IsNil predicate on the "token" field.

func TokenLT

func TokenLT(v string) predicate.GitBot

TokenLT applies the LT predicate on the "token" field.

func TokenLTE

func TokenLTE(v string) predicate.GitBot

TokenLTE applies the LTE predicate on the "token" field.

func TokenNEQ

func TokenNEQ(v string) predicate.GitBot

TokenNEQ applies the NEQ predicate on the "token" field.

func TokenNotIn

func TokenNotIn(vs ...string) predicate.GitBot

TokenNotIn applies the NotIn predicate on the "token" field.

func TokenNotNil

func TokenNotNil() predicate.GitBot

TokenNotNil applies the NotNil predicate on the "token" field.

func UserID

func UserID(v uuid.UUID) predicate.GitBot

UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.

func UserIDEQ

func UserIDEQ(v uuid.UUID) predicate.GitBot

UserIDEQ applies the EQ predicate on the "user_id" field.

func UserIDGT

func UserIDGT(v uuid.UUID) predicate.GitBot

UserIDGT applies the GT predicate on the "user_id" field.

func UserIDGTE

func UserIDGTE(v uuid.UUID) predicate.GitBot

UserIDGTE applies the GTE predicate on the "user_id" field.

func UserIDIn

func UserIDIn(vs ...uuid.UUID) predicate.GitBot

UserIDIn applies the In predicate on the "user_id" field.

func UserIDLT

func UserIDLT(v uuid.UUID) predicate.GitBot

UserIDLT applies the LT predicate on the "user_id" field.

func UserIDLTE

func UserIDLTE(v uuid.UUID) predicate.GitBot

UserIDLTE applies the LTE predicate on the "user_id" field.

func UserIDNEQ

func UserIDNEQ(v uuid.UUID) predicate.GitBot

UserIDNEQ applies the NEQ predicate on the "user_id" field.

func UserIDNotIn

func UserIDNotIn(vs ...uuid.UUID) predicate.GitBot

UserIDNotIn applies the NotIn predicate on the "user_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 GitBot queries.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByGitBotTasks

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

ByGitBotTasks orders the results by git_bot_tasks terms.

func ByGitBotTasksCount

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

ByGitBotTasksCount orders the results by git_bot_tasks count.

func ByGitBotUsers

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

ByGitBotUsers orders the results by git_bot_users terms.

func ByGitBotUsersCount

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

ByGitBotUsersCount orders the results by git_bot_users count.

func ByHostField

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

ByHostField orders the results by host field.

func ByHostID

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

ByHostID orders the results by the host_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 ByPlatform

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

ByPlatform orders the results by the platform field.

func ByProjectGitBots

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

ByProjectGitBots orders the results by project_git_bots terms.

func ByProjectGitBotsCount

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

ByProjectGitBotsCount orders the results by project_git_bots count.

func ByProjects

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

ByProjects orders the results by projects terms.

func ByProjectsCount

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

ByProjectsCount orders the results by projects count.

func BySecretToken

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

BySecretToken orders the results by the secret_token field.

func ByToken

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

ByToken orders the results by the token field.

func ByUserID

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

ByUserID orders the results by the user_id field.

func ByUsers

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

ByUsers orders the results by users terms.

func ByUsersCount

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

ByUsersCount orders the results by users count.

Jump to

Keyboard shortcuts

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