aiemployee

package
v0.0.0-...-0ebafd4 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the aiemployee type in the database.
	Label = "ai_employee"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldAdminID holds the string denoting the admin_id field in the database.
	FieldAdminID = "admin_id"
	// 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"
	// FieldPosition holds the string denoting the position field in the database.
	FieldPosition = "position"
	// FieldRepositoryURL holds the string denoting the repository_url field in the database.
	FieldRepositoryURL = "repository_url"
	// FieldRepositoryUser holds the string denoting the repository_user field in the database.
	FieldRepositoryUser = "repository_user"
	// FieldPlatform holds the string denoting the platform field in the database.
	FieldPlatform = "platform"
	// FieldToken holds the string denoting the token field in the database.
	FieldToken = "token"
	// FieldWebhookSecret holds the string denoting the webhook_secret field in the database.
	FieldWebhookSecret = "webhook_secret"
	// FieldWebhookURL holds the string denoting the webhook_url field in the database.
	FieldWebhookURL = "webhook_url"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldParameters holds the string denoting the parameters field in the database.
	FieldParameters = "parameters"
	// 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"
	// EdgeAdmin holds the string denoting the admin edge name in mutations.
	EdgeAdmin = "admin"
	// EdgeUser holds the string denoting the user edge name in mutations.
	EdgeUser = "user"
	// Table holds the table name of the aiemployee in the database.
	Table = "ai_employees"
	// AdminTable is the table that holds the admin relation/edge.
	AdminTable = "ai_employees"
	// AdminInverseTable is the table name for the Admin entity.
	// It exists in this package in order to avoid circular dependency with the "admin" package.
	AdminInverseTable = "admins"
	// AdminColumn is the table column denoting the admin relation/edge.
	AdminColumn = "admin_id"
	// UserTable is the table that holds the user relation/edge.
	UserTable = "ai_employees"
	// UserInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	UserInverseTable = "users"
	// UserColumn is the table column denoting the user relation/edge.
	UserColumn = "user_id"
)

Variables

View Source
var (
	// 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
)

Columns holds all SQL columns for aiemployee fields.

Functions

func AdminID

func AdminID(v uuid.UUID) predicate.AIEmployee

AdminID applies equality check predicate on the "admin_id" field. It's identical to AdminIDEQ.

func AdminIDEQ

func AdminIDEQ(v uuid.UUID) predicate.AIEmployee

AdminIDEQ applies the EQ predicate on the "admin_id" field.

func AdminIDIn

func AdminIDIn(vs ...uuid.UUID) predicate.AIEmployee

AdminIDIn applies the In predicate on the "admin_id" field.

func AdminIDIsNil

func AdminIDIsNil() predicate.AIEmployee

AdminIDIsNil applies the IsNil predicate on the "admin_id" field.

func AdminIDNEQ

func AdminIDNEQ(v uuid.UUID) predicate.AIEmployee

AdminIDNEQ applies the NEQ predicate on the "admin_id" field.

func AdminIDNotIn

func AdminIDNotIn(vs ...uuid.UUID) predicate.AIEmployee

AdminIDNotIn applies the NotIn predicate on the "admin_id" field.

func AdminIDNotNil

func AdminIDNotNil() predicate.AIEmployee

AdminIDNotNil applies the NotNil predicate on the "admin_id" field.

func And

func And(predicates ...predicate.AIEmployee) predicate.AIEmployee

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.AIEmployee

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.AIEmployee

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.AIEmployee

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.AIEmployee

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.AIEmployee

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.AIEmployee

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.AIEmployee

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

func CreatedAtNotIn

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

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

func CreatedBy

func CreatedBy(v consts.CreatedBy) predicate.AIEmployee

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains

func CreatedByContains(v consts.CreatedBy) predicate.AIEmployee

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold

func CreatedByContainsFold(v consts.CreatedBy) predicate.AIEmployee

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ

func CreatedByEQ(v consts.CreatedBy) predicate.AIEmployee

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold

func CreatedByEqualFold(v consts.CreatedBy) predicate.AIEmployee

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT

func CreatedByGT(v consts.CreatedBy) predicate.AIEmployee

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE

func CreatedByGTE(v consts.CreatedBy) predicate.AIEmployee

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix

func CreatedByHasPrefix(v consts.CreatedBy) predicate.AIEmployee

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix

func CreatedByHasSuffix(v consts.CreatedBy) predicate.AIEmployee

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn

func CreatedByIn(vs ...consts.CreatedBy) predicate.AIEmployee

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByLT

func CreatedByLT(v consts.CreatedBy) predicate.AIEmployee

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE

func CreatedByLTE(v consts.CreatedBy) predicate.AIEmployee

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ

func CreatedByNEQ(v consts.CreatedBy) predicate.AIEmployee

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn

func CreatedByNotIn(vs ...consts.CreatedBy) predicate.AIEmployee

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func HasAdmin

func HasAdmin() predicate.AIEmployee

HasAdmin applies the HasEdge predicate on the "admin" edge.

func HasAdminWith

func HasAdminWith(preds ...predicate.Admin) predicate.AIEmployee

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

func HasUser

func HasUser() predicate.AIEmployee

HasUser applies the HasEdge predicate on the "user" edge.

func HasUserWith

func HasUserWith(preds ...predicate.User) predicate.AIEmployee

HasUserWith applies the HasEdge predicate on the "user" 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.AIEmployee

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.AIEmployee

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.AIEmployee

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.AIEmployee

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.AIEmployee

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.AIEmployee

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.AIEmployee

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

func NameContains

func NameContains(v string) predicate.AIEmployee

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

func NameContainsFold

func NameContainsFold(v string) predicate.AIEmployee

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

func NameEQ

func NameEQ(v string) predicate.AIEmployee

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

func NameEqualFold

func NameEqualFold(v string) predicate.AIEmployee

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

func NameGT

func NameGT(v string) predicate.AIEmployee

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

func NameGTE

func NameGTE(v string) predicate.AIEmployee

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.AIEmployee

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.AIEmployee

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.AIEmployee

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

func NameLTE

func NameLTE(v string) predicate.AIEmployee

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

func NameNEQ

func NameNEQ(v string) predicate.AIEmployee

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.AIEmployee) predicate.AIEmployee

Or groups predicates with the OR operator between them.

func Platform

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

func PlatformContains

func PlatformContains(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformContainsFold

func PlatformContainsFold(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformEQ

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

func PlatformEqualFold

func PlatformEqualFold(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformGT

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

func PlatformGTE

func PlatformGTE(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformHasPrefix

func PlatformHasPrefix(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformHasSuffix

func PlatformHasSuffix(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformIn

func PlatformIn(vs ...consts.RepoPlatform) predicate.AIEmployee

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

func PlatformLT

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

func PlatformLTE

func PlatformLTE(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformNEQ

func PlatformNEQ(v consts.RepoPlatform) predicate.AIEmployee

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

func PlatformNotIn

func PlatformNotIn(vs ...consts.RepoPlatform) predicate.AIEmployee

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

func Position

Position applies equality check predicate on the "position" field. It's identical to PositionEQ.

func PositionContains

func PositionContains(v consts.AIEmployeePosition) predicate.AIEmployee

PositionContains applies the Contains predicate on the "position" field.

func PositionContainsFold

func PositionContainsFold(v consts.AIEmployeePosition) predicate.AIEmployee

PositionContainsFold applies the ContainsFold predicate on the "position" field.

func PositionEQ

PositionEQ applies the EQ predicate on the "position" field.

func PositionEqualFold

func PositionEqualFold(v consts.AIEmployeePosition) predicate.AIEmployee

PositionEqualFold applies the EqualFold predicate on the "position" field.

func PositionGT

PositionGT applies the GT predicate on the "position" field.

func PositionGTE

PositionGTE applies the GTE predicate on the "position" field.

func PositionHasPrefix

func PositionHasPrefix(v consts.AIEmployeePosition) predicate.AIEmployee

PositionHasPrefix applies the HasPrefix predicate on the "position" field.

func PositionHasSuffix

func PositionHasSuffix(v consts.AIEmployeePosition) predicate.AIEmployee

PositionHasSuffix applies the HasSuffix predicate on the "position" field.

func PositionIn

PositionIn applies the In predicate on the "position" field.

func PositionLT

PositionLT applies the LT predicate on the "position" field.

func PositionLTE

PositionLTE applies the LTE predicate on the "position" field.

func PositionNEQ

PositionNEQ applies the NEQ predicate on the "position" field.

func PositionNotIn

func PositionNotIn(vs ...consts.AIEmployeePosition) predicate.AIEmployee

PositionNotIn applies the NotIn predicate on the "position" field.

func RepositoryURL

func RepositoryURL(v string) predicate.AIEmployee

RepositoryURL applies equality check predicate on the "repository_url" field. It's identical to RepositoryURLEQ.

func RepositoryURLContains

func RepositoryURLContains(v string) predicate.AIEmployee

RepositoryURLContains applies the Contains predicate on the "repository_url" field.

func RepositoryURLContainsFold

func RepositoryURLContainsFold(v string) predicate.AIEmployee

RepositoryURLContainsFold applies the ContainsFold predicate on the "repository_url" field.

func RepositoryURLEQ

func RepositoryURLEQ(v string) predicate.AIEmployee

RepositoryURLEQ applies the EQ predicate on the "repository_url" field.

func RepositoryURLEqualFold

func RepositoryURLEqualFold(v string) predicate.AIEmployee

RepositoryURLEqualFold applies the EqualFold predicate on the "repository_url" field.

func RepositoryURLGT

func RepositoryURLGT(v string) predicate.AIEmployee

RepositoryURLGT applies the GT predicate on the "repository_url" field.

func RepositoryURLGTE

func RepositoryURLGTE(v string) predicate.AIEmployee

RepositoryURLGTE applies the GTE predicate on the "repository_url" field.

func RepositoryURLHasPrefix

func RepositoryURLHasPrefix(v string) predicate.AIEmployee

RepositoryURLHasPrefix applies the HasPrefix predicate on the "repository_url" field.

func RepositoryURLHasSuffix

func RepositoryURLHasSuffix(v string) predicate.AIEmployee

RepositoryURLHasSuffix applies the HasSuffix predicate on the "repository_url" field.

func RepositoryURLIn

func RepositoryURLIn(vs ...string) predicate.AIEmployee

RepositoryURLIn applies the In predicate on the "repository_url" field.

func RepositoryURLLT

func RepositoryURLLT(v string) predicate.AIEmployee

RepositoryURLLT applies the LT predicate on the "repository_url" field.

func RepositoryURLLTE

func RepositoryURLLTE(v string) predicate.AIEmployee

RepositoryURLLTE applies the LTE predicate on the "repository_url" field.

func RepositoryURLNEQ

func RepositoryURLNEQ(v string) predicate.AIEmployee

RepositoryURLNEQ applies the NEQ predicate on the "repository_url" field.

func RepositoryURLNotIn

func RepositoryURLNotIn(vs ...string) predicate.AIEmployee

RepositoryURLNotIn applies the NotIn predicate on the "repository_url" field.

func RepositoryUser

func RepositoryUser(v string) predicate.AIEmployee

RepositoryUser applies equality check predicate on the "repository_user" field. It's identical to RepositoryUserEQ.

func RepositoryUserContains

func RepositoryUserContains(v string) predicate.AIEmployee

RepositoryUserContains applies the Contains predicate on the "repository_user" field.

func RepositoryUserContainsFold

func RepositoryUserContainsFold(v string) predicate.AIEmployee

RepositoryUserContainsFold applies the ContainsFold predicate on the "repository_user" field.

func RepositoryUserEQ

func RepositoryUserEQ(v string) predicate.AIEmployee

RepositoryUserEQ applies the EQ predicate on the "repository_user" field.

func RepositoryUserEqualFold

func RepositoryUserEqualFold(v string) predicate.AIEmployee

RepositoryUserEqualFold applies the EqualFold predicate on the "repository_user" field.

func RepositoryUserGT

func RepositoryUserGT(v string) predicate.AIEmployee

RepositoryUserGT applies the GT predicate on the "repository_user" field.

func RepositoryUserGTE

func RepositoryUserGTE(v string) predicate.AIEmployee

RepositoryUserGTE applies the GTE predicate on the "repository_user" field.

func RepositoryUserHasPrefix

func RepositoryUserHasPrefix(v string) predicate.AIEmployee

RepositoryUserHasPrefix applies the HasPrefix predicate on the "repository_user" field.

func RepositoryUserHasSuffix

func RepositoryUserHasSuffix(v string) predicate.AIEmployee

RepositoryUserHasSuffix applies the HasSuffix predicate on the "repository_user" field.

func RepositoryUserIn

func RepositoryUserIn(vs ...string) predicate.AIEmployee

RepositoryUserIn applies the In predicate on the "repository_user" field.

func RepositoryUserLT

func RepositoryUserLT(v string) predicate.AIEmployee

RepositoryUserLT applies the LT predicate on the "repository_user" field.

func RepositoryUserLTE

func RepositoryUserLTE(v string) predicate.AIEmployee

RepositoryUserLTE applies the LTE predicate on the "repository_user" field.

func RepositoryUserNEQ

func RepositoryUserNEQ(v string) predicate.AIEmployee

RepositoryUserNEQ applies the NEQ predicate on the "repository_user" field.

func RepositoryUserNotIn

func RepositoryUserNotIn(vs ...string) predicate.AIEmployee

RepositoryUserNotIn applies the NotIn predicate on the "repository_user" field.

func Token

func Token(v string) predicate.AIEmployee

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

func TokenContains

func TokenContains(v string) predicate.AIEmployee

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

func TokenContainsFold

func TokenContainsFold(v string) predicate.AIEmployee

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

func TokenEQ

func TokenEQ(v string) predicate.AIEmployee

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

func TokenEqualFold

func TokenEqualFold(v string) predicate.AIEmployee

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

func TokenGT

func TokenGT(v string) predicate.AIEmployee

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

func TokenGTE

func TokenGTE(v string) predicate.AIEmployee

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

func TokenHasPrefix

func TokenHasPrefix(v string) predicate.AIEmployee

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

func TokenHasSuffix

func TokenHasSuffix(v string) predicate.AIEmployee

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

func TokenIn

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

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

func TokenLT

func TokenLT(v string) predicate.AIEmployee

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

func TokenLTE

func TokenLTE(v string) predicate.AIEmployee

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

func TokenNEQ

func TokenNEQ(v string) predicate.AIEmployee

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

func TokenNotIn

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

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.AIEmployee

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.AIEmployee

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.AIEmployee

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.AIEmployee

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.AIEmployee

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.AIEmployee

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.AIEmployee

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

func UpdatedAtNotIn

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

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

func UserID

func UserID(v uuid.UUID) predicate.AIEmployee

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

func UserIDEQ

func UserIDEQ(v uuid.UUID) predicate.AIEmployee

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

func UserIDIn

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

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

func UserIDIsNil

func UserIDIsNil() predicate.AIEmployee

UserIDIsNil applies the IsNil predicate on the "user_id" field.

func UserIDNEQ

func UserIDNEQ(v uuid.UUID) predicate.AIEmployee

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

func UserIDNotIn

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

UserIDNotIn applies the NotIn predicate on the "user_id" field.

func UserIDNotNil

func UserIDNotNil() predicate.AIEmployee

UserIDNotNil applies the NotNil 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).

func WebhookSecret

func WebhookSecret(v string) predicate.AIEmployee

WebhookSecret applies equality check predicate on the "webhook_secret" field. It's identical to WebhookSecretEQ.

func WebhookSecretContains

func WebhookSecretContains(v string) predicate.AIEmployee

WebhookSecretContains applies the Contains predicate on the "webhook_secret" field.

func WebhookSecretContainsFold

func WebhookSecretContainsFold(v string) predicate.AIEmployee

WebhookSecretContainsFold applies the ContainsFold predicate on the "webhook_secret" field.

func WebhookSecretEQ

func WebhookSecretEQ(v string) predicate.AIEmployee

WebhookSecretEQ applies the EQ predicate on the "webhook_secret" field.

func WebhookSecretEqualFold

func WebhookSecretEqualFold(v string) predicate.AIEmployee

WebhookSecretEqualFold applies the EqualFold predicate on the "webhook_secret" field.

func WebhookSecretGT

func WebhookSecretGT(v string) predicate.AIEmployee

WebhookSecretGT applies the GT predicate on the "webhook_secret" field.

func WebhookSecretGTE

func WebhookSecretGTE(v string) predicate.AIEmployee

WebhookSecretGTE applies the GTE predicate on the "webhook_secret" field.

func WebhookSecretHasPrefix

func WebhookSecretHasPrefix(v string) predicate.AIEmployee

WebhookSecretHasPrefix applies the HasPrefix predicate on the "webhook_secret" field.

func WebhookSecretHasSuffix

func WebhookSecretHasSuffix(v string) predicate.AIEmployee

WebhookSecretHasSuffix applies the HasSuffix predicate on the "webhook_secret" field.

func WebhookSecretIn

func WebhookSecretIn(vs ...string) predicate.AIEmployee

WebhookSecretIn applies the In predicate on the "webhook_secret" field.

func WebhookSecretLT

func WebhookSecretLT(v string) predicate.AIEmployee

WebhookSecretLT applies the LT predicate on the "webhook_secret" field.

func WebhookSecretLTE

func WebhookSecretLTE(v string) predicate.AIEmployee

WebhookSecretLTE applies the LTE predicate on the "webhook_secret" field.

func WebhookSecretNEQ

func WebhookSecretNEQ(v string) predicate.AIEmployee

WebhookSecretNEQ applies the NEQ predicate on the "webhook_secret" field.

func WebhookSecretNotIn

func WebhookSecretNotIn(vs ...string) predicate.AIEmployee

WebhookSecretNotIn applies the NotIn predicate on the "webhook_secret" field.

func WebhookURL

func WebhookURL(v string) predicate.AIEmployee

WebhookURL applies equality check predicate on the "webhook_url" field. It's identical to WebhookURLEQ.

func WebhookURLContains

func WebhookURLContains(v string) predicate.AIEmployee

WebhookURLContains applies the Contains predicate on the "webhook_url" field.

func WebhookURLContainsFold

func WebhookURLContainsFold(v string) predicate.AIEmployee

WebhookURLContainsFold applies the ContainsFold predicate on the "webhook_url" field.

func WebhookURLEQ

func WebhookURLEQ(v string) predicate.AIEmployee

WebhookURLEQ applies the EQ predicate on the "webhook_url" field.

func WebhookURLEqualFold

func WebhookURLEqualFold(v string) predicate.AIEmployee

WebhookURLEqualFold applies the EqualFold predicate on the "webhook_url" field.

func WebhookURLGT

func WebhookURLGT(v string) predicate.AIEmployee

WebhookURLGT applies the GT predicate on the "webhook_url" field.

func WebhookURLGTE

func WebhookURLGTE(v string) predicate.AIEmployee

WebhookURLGTE applies the GTE predicate on the "webhook_url" field.

func WebhookURLHasPrefix

func WebhookURLHasPrefix(v string) predicate.AIEmployee

WebhookURLHasPrefix applies the HasPrefix predicate on the "webhook_url" field.

func WebhookURLHasSuffix

func WebhookURLHasSuffix(v string) predicate.AIEmployee

WebhookURLHasSuffix applies the HasSuffix predicate on the "webhook_url" field.

func WebhookURLIn

func WebhookURLIn(vs ...string) predicate.AIEmployee

WebhookURLIn applies the In predicate on the "webhook_url" field.

func WebhookURLLT

func WebhookURLLT(v string) predicate.AIEmployee

WebhookURLLT applies the LT predicate on the "webhook_url" field.

func WebhookURLLTE

func WebhookURLLTE(v string) predicate.AIEmployee

WebhookURLLTE applies the LTE predicate on the "webhook_url" field.

func WebhookURLNEQ

func WebhookURLNEQ(v string) predicate.AIEmployee

WebhookURLNEQ applies the NEQ predicate on the "webhook_url" field.

func WebhookURLNotIn

func WebhookURLNotIn(vs ...string) predicate.AIEmployee

WebhookURLNotIn applies the NotIn predicate on the "webhook_url" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the AIEmployee queries.

func ByAdminField

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

ByAdminField orders the results by admin field.

func ByAdminID

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

ByAdminID orders the results by the admin_id field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy

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

ByCreatedBy orders the results by the created_by 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 ByPosition

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

ByPosition orders the results by the position field.

func ByRepositoryURL

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

ByRepositoryURL orders the results by the repository_url field.

func ByRepositoryUser

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

ByRepositoryUser orders the results by the repository_user field.

func ByToken

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

ByToken orders the results by the token field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUserField

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

ByUserField orders the results by user field.

func ByUserID

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

ByUserID orders the results by the user_id field.

func ByWebhookSecret

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

ByWebhookSecret orders the results by the webhook_secret field.

func ByWebhookURL

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

ByWebhookURL orders the results by the webhook_url field.

Jump to

Keyboard shortcuts

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