user

package
v0.0.0-...-6d1408b Latest Latest
Warning

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

Go to latest
Published: Jul 19, 2022 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the user type in the database.
	Label = "user"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldEmail holds the string denoting the email field in the database.
	FieldEmail = "email"
	// FieldPassword holds the string denoting the password field in the database.
	FieldPassword = "password"
	// FieldGithubUserID holds the string denoting the github_user_id field in the database.
	FieldGithubUserID = "github_user_id"
	// FieldGithubAccessToken holds the string denoting the github_access_token field in the database.
	FieldGithubAccessToken = "github_access_token"
	// FieldGitlabUserID holds the string denoting the gitlab_user_id field in the database.
	FieldGitlabUserID = "gitlab_user_id"
	// FieldGitlabAccessToken holds the string denoting the gitlab_access_token field in the database.
	FieldGitlabAccessToken = "gitlab_access_token"
	// FieldGitlabRefreshToken holds the string denoting the gitlab_refresh_token field in the database.
	FieldGitlabRefreshToken = "gitlab_refresh_token"
	// FieldGitlabAccessTokenExpiresAt holds the string denoting the gitlab_access_token_expires_at field in the database.
	FieldGitlabAccessTokenExpiresAt = "gitlab_access_token_expires_at"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeTokens holds the string denoting the tokens edge name in mutations.
	EdgeTokens = "tokens"
	// EdgeSubmissions holds the string denoting the submissions edge name in mutations.
	EdgeSubmissions = "submissions"
	// EdgeSubscription holds the string denoting the subscription edge name in mutations.
	EdgeSubscription = "subscription"
	// Table holds the table name of the user in the database.
	Table = "users"
	// TokensTable is the table that holds the tokens relation/edge.
	TokensTable = "tokens"
	// TokensInverseTable is the table name for the Token entity.
	// It exists in this package in order to avoid circular dependency with the "token" package.
	TokensInverseTable = "tokens"
	// TokensColumn is the table column denoting the tokens relation/edge.
	TokensColumn = "user_tokens"
	// SubmissionsTable is the table that holds the submissions relation/edge.
	SubmissionsTable = "submissions"
	// SubmissionsInverseTable is the table name for the Submission entity.
	// It exists in this package in order to avoid circular dependency with the "submission" package.
	SubmissionsInverseTable = "submissions"
	// SubmissionsColumn is the table column denoting the submissions relation/edge.
	SubmissionsColumn = "user_submissions"
	// SubscriptionTable is the table that holds the subscription relation/edge.
	SubscriptionTable = "subscriptions"
	// SubscriptionInverseTable is the table name for the Subscription entity.
	// It exists in this package in order to avoid circular dependency with the "subscription" package.
	SubscriptionInverseTable = "subscriptions"
	// SubscriptionColumn is the table column denoting the subscription relation/edge.
	SubscriptionColumn = "user_subscription"
)

Variables

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

Columns holds all SQL columns for user fields.

Functions

func And

func And(predicates ...predicate.User) predicate.User

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.User

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.User

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.User

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.User

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.User

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.User

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.User

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

func CreatedAtNotIn

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

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

func Email

func Email(v string) predicate.User

Email applies equality check predicate on the "email" field. It's identical to EmailEQ.

func EmailContains

func EmailContains(v string) predicate.User

EmailContains applies the Contains predicate on the "email" field.

func EmailContainsFold

func EmailContainsFold(v string) predicate.User

EmailContainsFold applies the ContainsFold predicate on the "email" field.

func EmailEQ

func EmailEQ(v string) predicate.User

EmailEQ applies the EQ predicate on the "email" field.

func EmailEqualFold

func EmailEqualFold(v string) predicate.User

EmailEqualFold applies the EqualFold predicate on the "email" field.

func EmailGT

func EmailGT(v string) predicate.User

EmailGT applies the GT predicate on the "email" field.

func EmailGTE

func EmailGTE(v string) predicate.User

EmailGTE applies the GTE predicate on the "email" field.

func EmailHasPrefix

func EmailHasPrefix(v string) predicate.User

EmailHasPrefix applies the HasPrefix predicate on the "email" field.

func EmailHasSuffix

func EmailHasSuffix(v string) predicate.User

EmailHasSuffix applies the HasSuffix predicate on the "email" field.

func EmailIn

func EmailIn(vs ...string) predicate.User

EmailIn applies the In predicate on the "email" field.

func EmailLT

func EmailLT(v string) predicate.User

EmailLT applies the LT predicate on the "email" field.

func EmailLTE

func EmailLTE(v string) predicate.User

EmailLTE applies the LTE predicate on the "email" field.

func EmailNEQ

func EmailNEQ(v string) predicate.User

EmailNEQ applies the NEQ predicate on the "email" field.

func EmailNotIn

func EmailNotIn(vs ...string) predicate.User

EmailNotIn applies the NotIn predicate on the "email" field.

func GithubAccessToken

func GithubAccessToken(v string) predicate.User

GithubAccessToken applies equality check predicate on the "github_access_token" field. It's identical to GithubAccessTokenEQ.

func GithubAccessTokenContains

func GithubAccessTokenContains(v string) predicate.User

GithubAccessTokenContains applies the Contains predicate on the "github_access_token" field.

func GithubAccessTokenContainsFold

func GithubAccessTokenContainsFold(v string) predicate.User

GithubAccessTokenContainsFold applies the ContainsFold predicate on the "github_access_token" field.

func GithubAccessTokenEQ

func GithubAccessTokenEQ(v string) predicate.User

GithubAccessTokenEQ applies the EQ predicate on the "github_access_token" field.

func GithubAccessTokenEqualFold

func GithubAccessTokenEqualFold(v string) predicate.User

GithubAccessTokenEqualFold applies the EqualFold predicate on the "github_access_token" field.

func GithubAccessTokenGT

func GithubAccessTokenGT(v string) predicate.User

GithubAccessTokenGT applies the GT predicate on the "github_access_token" field.

func GithubAccessTokenGTE

func GithubAccessTokenGTE(v string) predicate.User

GithubAccessTokenGTE applies the GTE predicate on the "github_access_token" field.

func GithubAccessTokenHasPrefix

func GithubAccessTokenHasPrefix(v string) predicate.User

GithubAccessTokenHasPrefix applies the HasPrefix predicate on the "github_access_token" field.

func GithubAccessTokenHasSuffix

func GithubAccessTokenHasSuffix(v string) predicate.User

GithubAccessTokenHasSuffix applies the HasSuffix predicate on the "github_access_token" field.

func GithubAccessTokenIn

func GithubAccessTokenIn(vs ...string) predicate.User

GithubAccessTokenIn applies the In predicate on the "github_access_token" field.

func GithubAccessTokenIsNil

func GithubAccessTokenIsNil() predicate.User

GithubAccessTokenIsNil applies the IsNil predicate on the "github_access_token" field.

func GithubAccessTokenLT

func GithubAccessTokenLT(v string) predicate.User

GithubAccessTokenLT applies the LT predicate on the "github_access_token" field.

func GithubAccessTokenLTE

func GithubAccessTokenLTE(v string) predicate.User

GithubAccessTokenLTE applies the LTE predicate on the "github_access_token" field.

func GithubAccessTokenNEQ

func GithubAccessTokenNEQ(v string) predicate.User

GithubAccessTokenNEQ applies the NEQ predicate on the "github_access_token" field.

func GithubAccessTokenNotIn

func GithubAccessTokenNotIn(vs ...string) predicate.User

GithubAccessTokenNotIn applies the NotIn predicate on the "github_access_token" field.

func GithubAccessTokenNotNil

func GithubAccessTokenNotNil() predicate.User

GithubAccessTokenNotNil applies the NotNil predicate on the "github_access_token" field.

func GithubUserID

func GithubUserID(v int64) predicate.User

GithubUserID applies equality check predicate on the "github_user_id" field. It's identical to GithubUserIDEQ.

func GithubUserIDEQ

func GithubUserIDEQ(v int64) predicate.User

GithubUserIDEQ applies the EQ predicate on the "github_user_id" field.

func GithubUserIDGT

func GithubUserIDGT(v int64) predicate.User

GithubUserIDGT applies the GT predicate on the "github_user_id" field.

func GithubUserIDGTE

func GithubUserIDGTE(v int64) predicate.User

GithubUserIDGTE applies the GTE predicate on the "github_user_id" field.

func GithubUserIDIn

func GithubUserIDIn(vs ...int64) predicate.User

GithubUserIDIn applies the In predicate on the "github_user_id" field.

func GithubUserIDIsNil

func GithubUserIDIsNil() predicate.User

GithubUserIDIsNil applies the IsNil predicate on the "github_user_id" field.

func GithubUserIDLT

func GithubUserIDLT(v int64) predicate.User

GithubUserIDLT applies the LT predicate on the "github_user_id" field.

func GithubUserIDLTE

func GithubUserIDLTE(v int64) predicate.User

GithubUserIDLTE applies the LTE predicate on the "github_user_id" field.

func GithubUserIDNEQ

func GithubUserIDNEQ(v int64) predicate.User

GithubUserIDNEQ applies the NEQ predicate on the "github_user_id" field.

func GithubUserIDNotIn

func GithubUserIDNotIn(vs ...int64) predicate.User

GithubUserIDNotIn applies the NotIn predicate on the "github_user_id" field.

func GithubUserIDNotNil

func GithubUserIDNotNil() predicate.User

GithubUserIDNotNil applies the NotNil predicate on the "github_user_id" field.

func GitlabAccessToken

func GitlabAccessToken(v string) predicate.User

GitlabAccessToken applies equality check predicate on the "gitlab_access_token" field. It's identical to GitlabAccessTokenEQ.

func GitlabAccessTokenContains

func GitlabAccessTokenContains(v string) predicate.User

GitlabAccessTokenContains applies the Contains predicate on the "gitlab_access_token" field.

func GitlabAccessTokenContainsFold

func GitlabAccessTokenContainsFold(v string) predicate.User

GitlabAccessTokenContainsFold applies the ContainsFold predicate on the "gitlab_access_token" field.

func GitlabAccessTokenEQ

func GitlabAccessTokenEQ(v string) predicate.User

GitlabAccessTokenEQ applies the EQ predicate on the "gitlab_access_token" field.

func GitlabAccessTokenEqualFold

func GitlabAccessTokenEqualFold(v string) predicate.User

GitlabAccessTokenEqualFold applies the EqualFold predicate on the "gitlab_access_token" field.

func GitlabAccessTokenExpiresAt

func GitlabAccessTokenExpiresAt(v time.Time) predicate.User

GitlabAccessTokenExpiresAt applies equality check predicate on the "gitlab_access_token_expires_at" field. It's identical to GitlabAccessTokenExpiresAtEQ.

func GitlabAccessTokenExpiresAtEQ

func GitlabAccessTokenExpiresAtEQ(v time.Time) predicate.User

GitlabAccessTokenExpiresAtEQ applies the EQ predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtGT

func GitlabAccessTokenExpiresAtGT(v time.Time) predicate.User

GitlabAccessTokenExpiresAtGT applies the GT predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtGTE

func GitlabAccessTokenExpiresAtGTE(v time.Time) predicate.User

GitlabAccessTokenExpiresAtGTE applies the GTE predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtIn

func GitlabAccessTokenExpiresAtIn(vs ...time.Time) predicate.User

GitlabAccessTokenExpiresAtIn applies the In predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtIsNil

func GitlabAccessTokenExpiresAtIsNil() predicate.User

GitlabAccessTokenExpiresAtIsNil applies the IsNil predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtLT

func GitlabAccessTokenExpiresAtLT(v time.Time) predicate.User

GitlabAccessTokenExpiresAtLT applies the LT predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtLTE

func GitlabAccessTokenExpiresAtLTE(v time.Time) predicate.User

GitlabAccessTokenExpiresAtLTE applies the LTE predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtNEQ

func GitlabAccessTokenExpiresAtNEQ(v time.Time) predicate.User

GitlabAccessTokenExpiresAtNEQ applies the NEQ predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtNotIn

func GitlabAccessTokenExpiresAtNotIn(vs ...time.Time) predicate.User

GitlabAccessTokenExpiresAtNotIn applies the NotIn predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenExpiresAtNotNil

func GitlabAccessTokenExpiresAtNotNil() predicate.User

GitlabAccessTokenExpiresAtNotNil applies the NotNil predicate on the "gitlab_access_token_expires_at" field.

func GitlabAccessTokenGT

func GitlabAccessTokenGT(v string) predicate.User

GitlabAccessTokenGT applies the GT predicate on the "gitlab_access_token" field.

func GitlabAccessTokenGTE

func GitlabAccessTokenGTE(v string) predicate.User

GitlabAccessTokenGTE applies the GTE predicate on the "gitlab_access_token" field.

func GitlabAccessTokenHasPrefix

func GitlabAccessTokenHasPrefix(v string) predicate.User

GitlabAccessTokenHasPrefix applies the HasPrefix predicate on the "gitlab_access_token" field.

func GitlabAccessTokenHasSuffix

func GitlabAccessTokenHasSuffix(v string) predicate.User

GitlabAccessTokenHasSuffix applies the HasSuffix predicate on the "gitlab_access_token" field.

func GitlabAccessTokenIn

func GitlabAccessTokenIn(vs ...string) predicate.User

GitlabAccessTokenIn applies the In predicate on the "gitlab_access_token" field.

func GitlabAccessTokenIsNil

func GitlabAccessTokenIsNil() predicate.User

GitlabAccessTokenIsNil applies the IsNil predicate on the "gitlab_access_token" field.

func GitlabAccessTokenLT

func GitlabAccessTokenLT(v string) predicate.User

GitlabAccessTokenLT applies the LT predicate on the "gitlab_access_token" field.

func GitlabAccessTokenLTE

func GitlabAccessTokenLTE(v string) predicate.User

GitlabAccessTokenLTE applies the LTE predicate on the "gitlab_access_token" field.

func GitlabAccessTokenNEQ

func GitlabAccessTokenNEQ(v string) predicate.User

GitlabAccessTokenNEQ applies the NEQ predicate on the "gitlab_access_token" field.

func GitlabAccessTokenNotIn

func GitlabAccessTokenNotIn(vs ...string) predicate.User

GitlabAccessTokenNotIn applies the NotIn predicate on the "gitlab_access_token" field.

func GitlabAccessTokenNotNil

func GitlabAccessTokenNotNil() predicate.User

GitlabAccessTokenNotNil applies the NotNil predicate on the "gitlab_access_token" field.

func GitlabRefreshToken

func GitlabRefreshToken(v string) predicate.User

GitlabRefreshToken applies equality check predicate on the "gitlab_refresh_token" field. It's identical to GitlabRefreshTokenEQ.

func GitlabRefreshTokenContains

func GitlabRefreshTokenContains(v string) predicate.User

GitlabRefreshTokenContains applies the Contains predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenContainsFold

func GitlabRefreshTokenContainsFold(v string) predicate.User

GitlabRefreshTokenContainsFold applies the ContainsFold predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenEQ

func GitlabRefreshTokenEQ(v string) predicate.User

GitlabRefreshTokenEQ applies the EQ predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenEqualFold

func GitlabRefreshTokenEqualFold(v string) predicate.User

GitlabRefreshTokenEqualFold applies the EqualFold predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenGT

func GitlabRefreshTokenGT(v string) predicate.User

GitlabRefreshTokenGT applies the GT predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenGTE

func GitlabRefreshTokenGTE(v string) predicate.User

GitlabRefreshTokenGTE applies the GTE predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenHasPrefix

func GitlabRefreshTokenHasPrefix(v string) predicate.User

GitlabRefreshTokenHasPrefix applies the HasPrefix predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenHasSuffix

func GitlabRefreshTokenHasSuffix(v string) predicate.User

GitlabRefreshTokenHasSuffix applies the HasSuffix predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenIn

func GitlabRefreshTokenIn(vs ...string) predicate.User

GitlabRefreshTokenIn applies the In predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenIsNil

func GitlabRefreshTokenIsNil() predicate.User

GitlabRefreshTokenIsNil applies the IsNil predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenLT

func GitlabRefreshTokenLT(v string) predicate.User

GitlabRefreshTokenLT applies the LT predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenLTE

func GitlabRefreshTokenLTE(v string) predicate.User

GitlabRefreshTokenLTE applies the LTE predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenNEQ

func GitlabRefreshTokenNEQ(v string) predicate.User

GitlabRefreshTokenNEQ applies the NEQ predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenNotIn

func GitlabRefreshTokenNotIn(vs ...string) predicate.User

GitlabRefreshTokenNotIn applies the NotIn predicate on the "gitlab_refresh_token" field.

func GitlabRefreshTokenNotNil

func GitlabRefreshTokenNotNil() predicate.User

GitlabRefreshTokenNotNil applies the NotNil predicate on the "gitlab_refresh_token" field.

func GitlabUserID

func GitlabUserID(v int) predicate.User

GitlabUserID applies equality check predicate on the "gitlab_user_id" field. It's identical to GitlabUserIDEQ.

func GitlabUserIDEQ

func GitlabUserIDEQ(v int) predicate.User

GitlabUserIDEQ applies the EQ predicate on the "gitlab_user_id" field.

func GitlabUserIDGT

func GitlabUserIDGT(v int) predicate.User

GitlabUserIDGT applies the GT predicate on the "gitlab_user_id" field.

func GitlabUserIDGTE

func GitlabUserIDGTE(v int) predicate.User

GitlabUserIDGTE applies the GTE predicate on the "gitlab_user_id" field.

func GitlabUserIDIn

func GitlabUserIDIn(vs ...int) predicate.User

GitlabUserIDIn applies the In predicate on the "gitlab_user_id" field.

func GitlabUserIDIsNil

func GitlabUserIDIsNil() predicate.User

GitlabUserIDIsNil applies the IsNil predicate on the "gitlab_user_id" field.

func GitlabUserIDLT

func GitlabUserIDLT(v int) predicate.User

GitlabUserIDLT applies the LT predicate on the "gitlab_user_id" field.

func GitlabUserIDLTE

func GitlabUserIDLTE(v int) predicate.User

GitlabUserIDLTE applies the LTE predicate on the "gitlab_user_id" field.

func GitlabUserIDNEQ

func GitlabUserIDNEQ(v int) predicate.User

GitlabUserIDNEQ applies the NEQ predicate on the "gitlab_user_id" field.

func GitlabUserIDNotIn

func GitlabUserIDNotIn(vs ...int) predicate.User

GitlabUserIDNotIn applies the NotIn predicate on the "gitlab_user_id" field.

func GitlabUserIDNotNil

func GitlabUserIDNotNil() predicate.User

GitlabUserIDNotNil applies the NotNil predicate on the "gitlab_user_id" field.

func HasSubmissions

func HasSubmissions() predicate.User

HasSubmissions applies the HasEdge predicate on the "submissions" edge.

func HasSubmissionsWith

func HasSubmissionsWith(preds ...predicate.Submission) predicate.User

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

func HasSubscription

func HasSubscription() predicate.User

HasSubscription applies the HasEdge predicate on the "subscription" edge.

func HasSubscriptionWith

func HasSubscriptionWith(preds ...predicate.Subscription) predicate.User

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

func HasTokens

func HasTokens() predicate.User

HasTokens applies the HasEdge predicate on the "tokens" edge.

func HasTokensWith

func HasTokensWith(preds ...predicate.Token) predicate.User

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

func ID

func ID(id uuid.UUID) predicate.User

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.User

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.User

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.User

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.User

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.User

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.User

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.User) predicate.User

Or groups predicates with the OR operator between them.

func Password

func Password(v string) predicate.User

Password applies equality check predicate on the "password" field. It's identical to PasswordEQ.

func PasswordContains

func PasswordContains(v string) predicate.User

PasswordContains applies the Contains predicate on the "password" field.

func PasswordContainsFold

func PasswordContainsFold(v string) predicate.User

PasswordContainsFold applies the ContainsFold predicate on the "password" field.

func PasswordEQ

func PasswordEQ(v string) predicate.User

PasswordEQ applies the EQ predicate on the "password" field.

func PasswordEqualFold

func PasswordEqualFold(v string) predicate.User

PasswordEqualFold applies the EqualFold predicate on the "password" field.

func PasswordGT

func PasswordGT(v string) predicate.User

PasswordGT applies the GT predicate on the "password" field.

func PasswordGTE

func PasswordGTE(v string) predicate.User

PasswordGTE applies the GTE predicate on the "password" field.

func PasswordHasPrefix

func PasswordHasPrefix(v string) predicate.User

PasswordHasPrefix applies the HasPrefix predicate on the "password" field.

func PasswordHasSuffix

func PasswordHasSuffix(v string) predicate.User

PasswordHasSuffix applies the HasSuffix predicate on the "password" field.

func PasswordIn

func PasswordIn(vs ...string) predicate.User

PasswordIn applies the In predicate on the "password" field.

func PasswordIsNil

func PasswordIsNil() predicate.User

PasswordIsNil applies the IsNil predicate on the "password" field.

func PasswordLT

func PasswordLT(v string) predicate.User

PasswordLT applies the LT predicate on the "password" field.

func PasswordLTE

func PasswordLTE(v string) predicate.User

PasswordLTE applies the LTE predicate on the "password" field.

func PasswordNEQ

func PasswordNEQ(v string) predicate.User

PasswordNEQ applies the NEQ predicate on the "password" field.

func PasswordNotIn

func PasswordNotIn(vs ...string) predicate.User

PasswordNotIn applies the NotIn predicate on the "password" field.

func PasswordNotNil

func PasswordNotNil() predicate.User

PasswordNotNil applies the NotNil predicate on the "password" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

This section is empty.

Jump to

Keyboard shortcuts

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