user

package
v0.0.0-...-3da28a4 Latest Latest
Warning

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

Go to latest
Published: Nov 27, 2023 License: MIT Imports: 3 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"
	// FieldGivenName holds the string denoting the given_name field in the database.
	FieldGivenName = "given_name"
	// FieldFamilyName holds the string denoting the family_name field in the database.
	FieldFamilyName = "family_name"
	// FieldGivenNameJa holds the string denoting the given_name_ja field in the database.
	FieldGivenNameJa = "given_name_ja"
	// FieldFamilyNameJa holds the string denoting the family_name_ja field in the database.
	FieldFamilyNameJa = "family_name_ja"
	// FieldUserID holds the string denoting the user_id field in the database.
	FieldUserID = "user_id"
	// FieldMail holds the string denoting the mail field in the database.
	FieldMail = "mail"
	// FieldBirthDate holds the string denoting the birth_date field in the database.
	FieldBirthDate = "birth_date"
	// FieldLocation holds the string denoting the location field in the database.
	FieldLocation = "location"
	// FieldLocationJa holds the string denoting the location_ja field in the database.
	FieldLocationJa = "location_ja"
	// FieldSSOToken holds the string denoting the sso_token field in the database.
	FieldSSOToken = "sso_token"
	// FieldAvatarURL holds the string denoting the avatar_url field in the database.
	FieldAvatarURL = "avatar_url"
	// FieldSelected holds the string denoting the selected field in the database.
	FieldSelected = "selected"
	// FieldCreated holds the string denoting the created field in the database.
	FieldCreated = "created"
	// FieldModified holds the string denoting the modified field in the database.
	FieldModified = "modified"
	// Table holds the table name of the user in the database.
	Table = "users"
)

Variables

View Source
var (
	// DefaultSelected holds the default value on creation for the "selected" field.
	DefaultSelected bool
	// DefaultCreated holds the default value on creation for the "created" field.
	DefaultCreated func() time.Time
	// DefaultModified holds the default value on creation for the "modified" field.
	DefaultModified func() time.Time
	// UpdateDefaultModified holds the default value on update for the "modified" field.
	UpdateDefaultModified func() time.Time
)

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 AvatarURL

func AvatarURL(v string) predicate.User

AvatarURL applies equality check predicate on the "avatar_url" field. It's identical to AvatarURLEQ.

func AvatarURLContains

func AvatarURLContains(v string) predicate.User

AvatarURLContains applies the Contains predicate on the "avatar_url" field.

func AvatarURLContainsFold

func AvatarURLContainsFold(v string) predicate.User

AvatarURLContainsFold applies the ContainsFold predicate on the "avatar_url" field.

func AvatarURLEQ

func AvatarURLEQ(v string) predicate.User

AvatarURLEQ applies the EQ predicate on the "avatar_url" field.

func AvatarURLEqualFold

func AvatarURLEqualFold(v string) predicate.User

AvatarURLEqualFold applies the EqualFold predicate on the "avatar_url" field.

func AvatarURLGT

func AvatarURLGT(v string) predicate.User

AvatarURLGT applies the GT predicate on the "avatar_url" field.

func AvatarURLGTE

func AvatarURLGTE(v string) predicate.User

AvatarURLGTE applies the GTE predicate on the "avatar_url" field.

func AvatarURLHasPrefix

func AvatarURLHasPrefix(v string) predicate.User

AvatarURLHasPrefix applies the HasPrefix predicate on the "avatar_url" field.

func AvatarURLHasSuffix

func AvatarURLHasSuffix(v string) predicate.User

AvatarURLHasSuffix applies the HasSuffix predicate on the "avatar_url" field.

func AvatarURLIn

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

AvatarURLIn applies the In predicate on the "avatar_url" field.

func AvatarURLIsNil

func AvatarURLIsNil() predicate.User

AvatarURLIsNil applies the IsNil predicate on the "avatar_url" field.

func AvatarURLLT

func AvatarURLLT(v string) predicate.User

AvatarURLLT applies the LT predicate on the "avatar_url" field.

func AvatarURLLTE

func AvatarURLLTE(v string) predicate.User

AvatarURLLTE applies the LTE predicate on the "avatar_url" field.

func AvatarURLNEQ

func AvatarURLNEQ(v string) predicate.User

AvatarURLNEQ applies the NEQ predicate on the "avatar_url" field.

func AvatarURLNotIn

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

AvatarURLNotIn applies the NotIn predicate on the "avatar_url" field.

func AvatarURLNotNil

func AvatarURLNotNil() predicate.User

AvatarURLNotNil applies the NotNil predicate on the "avatar_url" field.

func BirthDate

func BirthDate(v time.Time) predicate.User

BirthDate applies equality check predicate on the "birth_date" field. It's identical to BirthDateEQ.

func BirthDateEQ

func BirthDateEQ(v time.Time) predicate.User

BirthDateEQ applies the EQ predicate on the "birth_date" field.

func BirthDateGT

func BirthDateGT(v time.Time) predicate.User

BirthDateGT applies the GT predicate on the "birth_date" field.

func BirthDateGTE

func BirthDateGTE(v time.Time) predicate.User

BirthDateGTE applies the GTE predicate on the "birth_date" field.

func BirthDateIn

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

BirthDateIn applies the In predicate on the "birth_date" field.

func BirthDateLT

func BirthDateLT(v time.Time) predicate.User

BirthDateLT applies the LT predicate on the "birth_date" field.

func BirthDateLTE

func BirthDateLTE(v time.Time) predicate.User

BirthDateLTE applies the LTE predicate on the "birth_date" field.

func BirthDateNEQ

func BirthDateNEQ(v time.Time) predicate.User

BirthDateNEQ applies the NEQ predicate on the "birth_date" field.

func BirthDateNotIn

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

BirthDateNotIn applies the NotIn predicate on the "birth_date" field.

func Created

func Created(v time.Time) predicate.User

Created applies equality check predicate on the "created" field. It's identical to CreatedEQ.

func CreatedEQ

func CreatedEQ(v time.Time) predicate.User

CreatedEQ applies the EQ predicate on the "created" field.

func CreatedGT

func CreatedGT(v time.Time) predicate.User

CreatedGT applies the GT predicate on the "created" field.

func CreatedGTE

func CreatedGTE(v time.Time) predicate.User

CreatedGTE applies the GTE predicate on the "created" field.

func CreatedIn

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

CreatedIn applies the In predicate on the "created" field.

func CreatedLT

func CreatedLT(v time.Time) predicate.User

CreatedLT applies the LT predicate on the "created" field.

func CreatedLTE

func CreatedLTE(v time.Time) predicate.User

CreatedLTE applies the LTE predicate on the "created" field.

func CreatedNEQ

func CreatedNEQ(v time.Time) predicate.User

CreatedNEQ applies the NEQ predicate on the "created" field.

func CreatedNotIn

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

CreatedNotIn applies the NotIn predicate on the "created" field.

func FamilyName

func FamilyName(v string) predicate.User

FamilyName applies equality check predicate on the "family_name" field. It's identical to FamilyNameEQ.

func FamilyNameContains

func FamilyNameContains(v string) predicate.User

FamilyNameContains applies the Contains predicate on the "family_name" field.

func FamilyNameContainsFold

func FamilyNameContainsFold(v string) predicate.User

FamilyNameContainsFold applies the ContainsFold predicate on the "family_name" field.

func FamilyNameEQ

func FamilyNameEQ(v string) predicate.User

FamilyNameEQ applies the EQ predicate on the "family_name" field.

func FamilyNameEqualFold

func FamilyNameEqualFold(v string) predicate.User

FamilyNameEqualFold applies the EqualFold predicate on the "family_name" field.

func FamilyNameGT

func FamilyNameGT(v string) predicate.User

FamilyNameGT applies the GT predicate on the "family_name" field.

func FamilyNameGTE

func FamilyNameGTE(v string) predicate.User

FamilyNameGTE applies the GTE predicate on the "family_name" field.

func FamilyNameHasPrefix

func FamilyNameHasPrefix(v string) predicate.User

FamilyNameHasPrefix applies the HasPrefix predicate on the "family_name" field.

func FamilyNameHasSuffix

func FamilyNameHasSuffix(v string) predicate.User

FamilyNameHasSuffix applies the HasSuffix predicate on the "family_name" field.

func FamilyNameIn

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

FamilyNameIn applies the In predicate on the "family_name" field.

func FamilyNameJa

func FamilyNameJa(v string) predicate.User

FamilyNameJa applies equality check predicate on the "family_name_ja" field. It's identical to FamilyNameJaEQ.

func FamilyNameJaContains

func FamilyNameJaContains(v string) predicate.User

FamilyNameJaContains applies the Contains predicate on the "family_name_ja" field.

func FamilyNameJaContainsFold

func FamilyNameJaContainsFold(v string) predicate.User

FamilyNameJaContainsFold applies the ContainsFold predicate on the "family_name_ja" field.

func FamilyNameJaEQ

func FamilyNameJaEQ(v string) predicate.User

FamilyNameJaEQ applies the EQ predicate on the "family_name_ja" field.

func FamilyNameJaEqualFold

func FamilyNameJaEqualFold(v string) predicate.User

FamilyNameJaEqualFold applies the EqualFold predicate on the "family_name_ja" field.

func FamilyNameJaGT

func FamilyNameJaGT(v string) predicate.User

FamilyNameJaGT applies the GT predicate on the "family_name_ja" field.

func FamilyNameJaGTE

func FamilyNameJaGTE(v string) predicate.User

FamilyNameJaGTE applies the GTE predicate on the "family_name_ja" field.

func FamilyNameJaHasPrefix

func FamilyNameJaHasPrefix(v string) predicate.User

FamilyNameJaHasPrefix applies the HasPrefix predicate on the "family_name_ja" field.

func FamilyNameJaHasSuffix

func FamilyNameJaHasSuffix(v string) predicate.User

FamilyNameJaHasSuffix applies the HasSuffix predicate on the "family_name_ja" field.

func FamilyNameJaIn

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

FamilyNameJaIn applies the In predicate on the "family_name_ja" field.

func FamilyNameJaLT

func FamilyNameJaLT(v string) predicate.User

FamilyNameJaLT applies the LT predicate on the "family_name_ja" field.

func FamilyNameJaLTE

func FamilyNameJaLTE(v string) predicate.User

FamilyNameJaLTE applies the LTE predicate on the "family_name_ja" field.

func FamilyNameJaNEQ

func FamilyNameJaNEQ(v string) predicate.User

FamilyNameJaNEQ applies the NEQ predicate on the "family_name_ja" field.

func FamilyNameJaNotIn

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

FamilyNameJaNotIn applies the NotIn predicate on the "family_name_ja" field.

func FamilyNameLT

func FamilyNameLT(v string) predicate.User

FamilyNameLT applies the LT predicate on the "family_name" field.

func FamilyNameLTE

func FamilyNameLTE(v string) predicate.User

FamilyNameLTE applies the LTE predicate on the "family_name" field.

func FamilyNameNEQ

func FamilyNameNEQ(v string) predicate.User

FamilyNameNEQ applies the NEQ predicate on the "family_name" field.

func FamilyNameNotIn

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

FamilyNameNotIn applies the NotIn predicate on the "family_name" field.

func GivenName

func GivenName(v string) predicate.User

GivenName applies equality check predicate on the "given_name" field. It's identical to GivenNameEQ.

func GivenNameContains

func GivenNameContains(v string) predicate.User

GivenNameContains applies the Contains predicate on the "given_name" field.

func GivenNameContainsFold

func GivenNameContainsFold(v string) predicate.User

GivenNameContainsFold applies the ContainsFold predicate on the "given_name" field.

func GivenNameEQ

func GivenNameEQ(v string) predicate.User

GivenNameEQ applies the EQ predicate on the "given_name" field.

func GivenNameEqualFold

func GivenNameEqualFold(v string) predicate.User

GivenNameEqualFold applies the EqualFold predicate on the "given_name" field.

func GivenNameGT

func GivenNameGT(v string) predicate.User

GivenNameGT applies the GT predicate on the "given_name" field.

func GivenNameGTE

func GivenNameGTE(v string) predicate.User

GivenNameGTE applies the GTE predicate on the "given_name" field.

func GivenNameHasPrefix

func GivenNameHasPrefix(v string) predicate.User

GivenNameHasPrefix applies the HasPrefix predicate on the "given_name" field.

func GivenNameHasSuffix

func GivenNameHasSuffix(v string) predicate.User

GivenNameHasSuffix applies the HasSuffix predicate on the "given_name" field.

func GivenNameIn

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

GivenNameIn applies the In predicate on the "given_name" field.

func GivenNameJa

func GivenNameJa(v string) predicate.User

GivenNameJa applies equality check predicate on the "given_name_ja" field. It's identical to GivenNameJaEQ.

func GivenNameJaContains

func GivenNameJaContains(v string) predicate.User

GivenNameJaContains applies the Contains predicate on the "given_name_ja" field.

func GivenNameJaContainsFold

func GivenNameJaContainsFold(v string) predicate.User

GivenNameJaContainsFold applies the ContainsFold predicate on the "given_name_ja" field.

func GivenNameJaEQ

func GivenNameJaEQ(v string) predicate.User

GivenNameJaEQ applies the EQ predicate on the "given_name_ja" field.

func GivenNameJaEqualFold

func GivenNameJaEqualFold(v string) predicate.User

GivenNameJaEqualFold applies the EqualFold predicate on the "given_name_ja" field.

func GivenNameJaGT

func GivenNameJaGT(v string) predicate.User

GivenNameJaGT applies the GT predicate on the "given_name_ja" field.

func GivenNameJaGTE

func GivenNameJaGTE(v string) predicate.User

GivenNameJaGTE applies the GTE predicate on the "given_name_ja" field.

func GivenNameJaHasPrefix

func GivenNameJaHasPrefix(v string) predicate.User

GivenNameJaHasPrefix applies the HasPrefix predicate on the "given_name_ja" field.

func GivenNameJaHasSuffix

func GivenNameJaHasSuffix(v string) predicate.User

GivenNameJaHasSuffix applies the HasSuffix predicate on the "given_name_ja" field.

func GivenNameJaIn

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

GivenNameJaIn applies the In predicate on the "given_name_ja" field.

func GivenNameJaLT

func GivenNameJaLT(v string) predicate.User

GivenNameJaLT applies the LT predicate on the "given_name_ja" field.

func GivenNameJaLTE

func GivenNameJaLTE(v string) predicate.User

GivenNameJaLTE applies the LTE predicate on the "given_name_ja" field.

func GivenNameJaNEQ

func GivenNameJaNEQ(v string) predicate.User

GivenNameJaNEQ applies the NEQ predicate on the "given_name_ja" field.

func GivenNameJaNotIn

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

GivenNameJaNotIn applies the NotIn predicate on the "given_name_ja" field.

func GivenNameLT

func GivenNameLT(v string) predicate.User

GivenNameLT applies the LT predicate on the "given_name" field.

func GivenNameLTE

func GivenNameLTE(v string) predicate.User

GivenNameLTE applies the LTE predicate on the "given_name" field.

func GivenNameNEQ

func GivenNameNEQ(v string) predicate.User

GivenNameNEQ applies the NEQ predicate on the "given_name" field.

func GivenNameNotIn

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

GivenNameNotIn applies the NotIn predicate on the "given_name" field.

func ID

func ID(id uint32) predicate.User

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uint32) predicate.User

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uint32) predicate.User

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uint32) predicate.User

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uint32) predicate.User

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uint32) predicate.User

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uint32) predicate.User

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uint32) predicate.User

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uint32) predicate.User

IDNotIn applies the NotIn predicate on the ID field.

func Location

func Location(v string) predicate.User

Location applies equality check predicate on the "location" field. It's identical to LocationEQ.

func LocationContains

func LocationContains(v string) predicate.User

LocationContains applies the Contains predicate on the "location" field.

func LocationContainsFold

func LocationContainsFold(v string) predicate.User

LocationContainsFold applies the ContainsFold predicate on the "location" field.

func LocationEQ

func LocationEQ(v string) predicate.User

LocationEQ applies the EQ predicate on the "location" field.

func LocationEqualFold

func LocationEqualFold(v string) predicate.User

LocationEqualFold applies the EqualFold predicate on the "location" field.

func LocationGT

func LocationGT(v string) predicate.User

LocationGT applies the GT predicate on the "location" field.

func LocationGTE

func LocationGTE(v string) predicate.User

LocationGTE applies the GTE predicate on the "location" field.

func LocationHasPrefix

func LocationHasPrefix(v string) predicate.User

LocationHasPrefix applies the HasPrefix predicate on the "location" field.

func LocationHasSuffix

func LocationHasSuffix(v string) predicate.User

LocationHasSuffix applies the HasSuffix predicate on the "location" field.

func LocationIn

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

LocationIn applies the In predicate on the "location" field.

func LocationJa

func LocationJa(v string) predicate.User

LocationJa applies equality check predicate on the "location_ja" field. It's identical to LocationJaEQ.

func LocationJaContains

func LocationJaContains(v string) predicate.User

LocationJaContains applies the Contains predicate on the "location_ja" field.

func LocationJaContainsFold

func LocationJaContainsFold(v string) predicate.User

LocationJaContainsFold applies the ContainsFold predicate on the "location_ja" field.

func LocationJaEQ

func LocationJaEQ(v string) predicate.User

LocationJaEQ applies the EQ predicate on the "location_ja" field.

func LocationJaEqualFold

func LocationJaEqualFold(v string) predicate.User

LocationJaEqualFold applies the EqualFold predicate on the "location_ja" field.

func LocationJaGT

func LocationJaGT(v string) predicate.User

LocationJaGT applies the GT predicate on the "location_ja" field.

func LocationJaGTE

func LocationJaGTE(v string) predicate.User

LocationJaGTE applies the GTE predicate on the "location_ja" field.

func LocationJaHasPrefix

func LocationJaHasPrefix(v string) predicate.User

LocationJaHasPrefix applies the HasPrefix predicate on the "location_ja" field.

func LocationJaHasSuffix

func LocationJaHasSuffix(v string) predicate.User

LocationJaHasSuffix applies the HasSuffix predicate on the "location_ja" field.

func LocationJaIn

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

LocationJaIn applies the In predicate on the "location_ja" field.

func LocationJaLT

func LocationJaLT(v string) predicate.User

LocationJaLT applies the LT predicate on the "location_ja" field.

func LocationJaLTE

func LocationJaLTE(v string) predicate.User

LocationJaLTE applies the LTE predicate on the "location_ja" field.

func LocationJaNEQ

func LocationJaNEQ(v string) predicate.User

LocationJaNEQ applies the NEQ predicate on the "location_ja" field.

func LocationJaNotIn

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

LocationJaNotIn applies the NotIn predicate on the "location_ja" field.

func LocationLT

func LocationLT(v string) predicate.User

LocationLT applies the LT predicate on the "location" field.

func LocationLTE

func LocationLTE(v string) predicate.User

LocationLTE applies the LTE predicate on the "location" field.

func LocationNEQ

func LocationNEQ(v string) predicate.User

LocationNEQ applies the NEQ predicate on the "location" field.

func LocationNotIn

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

LocationNotIn applies the NotIn predicate on the "location" field.

func Mail

func Mail(v string) predicate.User

Mail applies equality check predicate on the "mail" field. It's identical to MailEQ.

func MailContains

func MailContains(v string) predicate.User

MailContains applies the Contains predicate on the "mail" field.

func MailContainsFold

func MailContainsFold(v string) predicate.User

MailContainsFold applies the ContainsFold predicate on the "mail" field.

func MailEQ

func MailEQ(v string) predicate.User

MailEQ applies the EQ predicate on the "mail" field.

func MailEqualFold

func MailEqualFold(v string) predicate.User

MailEqualFold applies the EqualFold predicate on the "mail" field.

func MailGT

func MailGT(v string) predicate.User

MailGT applies the GT predicate on the "mail" field.

func MailGTE

func MailGTE(v string) predicate.User

MailGTE applies the GTE predicate on the "mail" field.

func MailHasPrefix

func MailHasPrefix(v string) predicate.User

MailHasPrefix applies the HasPrefix predicate on the "mail" field.

func MailHasSuffix

func MailHasSuffix(v string) predicate.User

MailHasSuffix applies the HasSuffix predicate on the "mail" field.

func MailIn

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

MailIn applies the In predicate on the "mail" field.

func MailLT

func MailLT(v string) predicate.User

MailLT applies the LT predicate on the "mail" field.

func MailLTE

func MailLTE(v string) predicate.User

MailLTE applies the LTE predicate on the "mail" field.

func MailNEQ

func MailNEQ(v string) predicate.User

MailNEQ applies the NEQ predicate on the "mail" field.

func MailNotIn

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

MailNotIn applies the NotIn predicate on the "mail" field.

func Modified

func Modified(v time.Time) predicate.User

Modified applies equality check predicate on the "modified" field. It's identical to ModifiedEQ.

func ModifiedEQ

func ModifiedEQ(v time.Time) predicate.User

ModifiedEQ applies the EQ predicate on the "modified" field.

func ModifiedGT

func ModifiedGT(v time.Time) predicate.User

ModifiedGT applies the GT predicate on the "modified" field.

func ModifiedGTE

func ModifiedGTE(v time.Time) predicate.User

ModifiedGTE applies the GTE predicate on the "modified" field.

func ModifiedIn

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

ModifiedIn applies the In predicate on the "modified" field.

func ModifiedLT

func ModifiedLT(v time.Time) predicate.User

ModifiedLT applies the LT predicate on the "modified" field.

func ModifiedLTE

func ModifiedLTE(v time.Time) predicate.User

ModifiedLTE applies the LTE predicate on the "modified" field.

func ModifiedNEQ

func ModifiedNEQ(v time.Time) predicate.User

ModifiedNEQ applies the NEQ predicate on the "modified" field.

func ModifiedNotIn

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

ModifiedNotIn applies the NotIn predicate on the "modified" 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 SSOToken

func SSOToken(v string) predicate.User

SSOToken applies equality check predicate on the "sso_token" field. It's identical to SSOTokenEQ.

func SSOTokenContains

func SSOTokenContains(v string) predicate.User

SSOTokenContains applies the Contains predicate on the "sso_token" field.

func SSOTokenContainsFold

func SSOTokenContainsFold(v string) predicate.User

SSOTokenContainsFold applies the ContainsFold predicate on the "sso_token" field.

func SSOTokenEQ

func SSOTokenEQ(v string) predicate.User

SSOTokenEQ applies the EQ predicate on the "sso_token" field.

func SSOTokenEqualFold

func SSOTokenEqualFold(v string) predicate.User

SSOTokenEqualFold applies the EqualFold predicate on the "sso_token" field.

func SSOTokenGT

func SSOTokenGT(v string) predicate.User

SSOTokenGT applies the GT predicate on the "sso_token" field.

func SSOTokenGTE

func SSOTokenGTE(v string) predicate.User

SSOTokenGTE applies the GTE predicate on the "sso_token" field.

func SSOTokenHasPrefix

func SSOTokenHasPrefix(v string) predicate.User

SSOTokenHasPrefix applies the HasPrefix predicate on the "sso_token" field.

func SSOTokenHasSuffix

func SSOTokenHasSuffix(v string) predicate.User

SSOTokenHasSuffix applies the HasSuffix predicate on the "sso_token" field.

func SSOTokenIn

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

SSOTokenIn applies the In predicate on the "sso_token" field.

func SSOTokenLT

func SSOTokenLT(v string) predicate.User

SSOTokenLT applies the LT predicate on the "sso_token" field.

func SSOTokenLTE

func SSOTokenLTE(v string) predicate.User

SSOTokenLTE applies the LTE predicate on the "sso_token" field.

func SSOTokenNEQ

func SSOTokenNEQ(v string) predicate.User

SSOTokenNEQ applies the NEQ predicate on the "sso_token" field.

func SSOTokenNotIn

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

SSOTokenNotIn applies the NotIn predicate on the "sso_token" field.

func Selected

func Selected(v bool) predicate.User

Selected applies equality check predicate on the "selected" field. It's identical to SelectedEQ.

func SelectedEQ

func SelectedEQ(v bool) predicate.User

SelectedEQ applies the EQ predicate on the "selected" field.

func SelectedNEQ

func SelectedNEQ(v bool) predicate.User

SelectedNEQ applies the NEQ predicate on the "selected" field.

func UserID

func UserID(v string) predicate.User

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

func UserIDContains

func UserIDContains(v string) predicate.User

UserIDContains applies the Contains predicate on the "user_id" field.

func UserIDContainsFold

func UserIDContainsFold(v string) predicate.User

UserIDContainsFold applies the ContainsFold predicate on the "user_id" field.

func UserIDEQ

func UserIDEQ(v string) predicate.User

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

func UserIDEqualFold

func UserIDEqualFold(v string) predicate.User

UserIDEqualFold applies the EqualFold predicate on the "user_id" field.

func UserIDGT

func UserIDGT(v string) predicate.User

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

func UserIDGTE

func UserIDGTE(v string) predicate.User

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

func UserIDHasPrefix

func UserIDHasPrefix(v string) predicate.User

UserIDHasPrefix applies the HasPrefix predicate on the "user_id" field.

func UserIDHasSuffix

func UserIDHasSuffix(v string) predicate.User

UserIDHasSuffix applies the HasSuffix predicate on the "user_id" field.

func UserIDIn

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

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

func UserIDLT

func UserIDLT(v string) predicate.User

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

func UserIDLTE

func UserIDLTE(v string) predicate.User

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

func UserIDNEQ

func UserIDNEQ(v string) predicate.User

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

func UserIDNotIn

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

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

This section is empty.

Jump to

Keyboard shortcuts

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