user

package
v0.11.2 Latest Latest
Warning

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

Go to latest
Published: Aug 5, 2022 License: Apache-2.0 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 = "oid"
	// FieldMixedString holds the string denoting the mixed_string field in the database.
	FieldMixedString = "mixed_string"
	// FieldMixedEnum holds the string denoting the mixed_enum field in the database.
	FieldMixedEnum = "mixed_enum"
	// FieldAge holds the string denoting the age field in the database.
	FieldAge = "age"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldNickname holds the string denoting the nickname field in the database.
	FieldNickname = "nickname"
	// FieldPhone holds the string denoting the phone field in the database.
	FieldPhone = "phone"
	// FieldBuffer holds the string denoting the buffer field in the database.
	FieldBuffer = "buffer"
	// FieldTitle holds the string denoting the title field in the database.
	FieldTitle = "title"
	// FieldNewName holds the string denoting the new_name field in the database.
	FieldNewName = "renamed"
	// FieldNewToken holds the string denoting the new_token field in the database.
	FieldNewToken = "new_token"
	// FieldBlob holds the string denoting the blob field in the database.
	FieldBlob = "blob"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldWorkplace holds the string denoting the workplace field in the database.
	FieldWorkplace = "workplace"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldDropOptional holds the string denoting the drop_optional field in the database.
	FieldDropOptional = "drop_optional"
	// EdgeCar holds the string denoting the car edge name in mutations.
	EdgeCar = "car"
	// EdgePets holds the string denoting the pets edge name in mutations.
	EdgePets = "pets"
	// EdgeFriends holds the string denoting the friends edge name in mutations.
	EdgeFriends = "friends"
	// CarFieldID holds the string denoting the ID field of the Car.
	CarFieldID = "id"
	// PetFieldID holds the string denoting the ID field of the Pet.
	PetFieldID = "id"
	// Table holds the table name of the user in the database.
	Table = "users"
	// CarTable is the table that holds the car relation/edge.
	CarTable = "Car"
	// CarInverseTable is the table name for the Car entity.
	// It exists in this package in order to avoid circular dependency with the "car" package.
	CarInverseTable = "Car"
	// CarColumn is the table column denoting the car relation/edge.
	CarColumn = "user_car"
	// PetsTable is the table that holds the pets relation/edge.
	PetsTable = "pets"
	// PetsInverseTable is the table name for the Pet entity.
	// It exists in this package in order to avoid circular dependency with the "pet" package.
	PetsInverseTable = "pets"
	// PetsColumn is the table column denoting the pets relation/edge.
	PetsColumn = "owner_id"
	// FriendsTable is the table that holds the friends relation/edge. The primary key declared below.
	FriendsTable = "friends"
)
View Source
const DefaultMixedEnum = MixedEnumOn

MixedEnumOn is the default value of the MixedEnum enum.

View Source
const DefaultState = StateLoggedIn

StateLoggedIn is the default value of the State enum.

Variables

View Source
var (
	// DefaultMixedString holds the default value on creation for the "mixed_string" field.
	DefaultMixedString string
	// NicknameValidator is a validator for the "nickname" field. It is called by the builders before save.
	NicknameValidator func(string) error
	// DefaultPhone holds the default value on creation for the "phone" field.
	DefaultPhone string
	// DefaultBuffer holds the default value on creation for the "buffer" field.
	DefaultBuffer func() []byte
	// DefaultTitle holds the default value on creation for the "title" field.
	DefaultTitle string
	// DefaultNewToken holds the default value on creation for the "new_token" field.
	DefaultNewToken func() string
	// BlobValidator is a validator for the "blob" field. It is called by the builders before save.
	BlobValidator func([]byte) error
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultDropOptional holds the default value on creation for the "drop_optional" field.
	DefaultDropOptional func() string
)

Columns holds all SQL columns for user fields.

View Source
var (
	// FriendsPrimaryKey and FriendsColumn2 are the table columns denoting the
	// primary key for the friends relation (M2M).
	FriendsPrimaryKey = []string{"user", "friend"}
)

Functions

func Age

func Age(v int) predicate.User

Age applies equality check predicate on the "age" field. It's identical to AgeEQ.

func AgeEQ

func AgeEQ(v int) predicate.User

AgeEQ applies the EQ predicate on the "age" field.

func AgeGT

func AgeGT(v int) predicate.User

AgeGT applies the GT predicate on the "age" field.

func AgeGTE

func AgeGTE(v int) predicate.User

AgeGTE applies the GTE predicate on the "age" field.

func AgeIn

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

AgeIn applies the In predicate on the "age" field.

func AgeLT

func AgeLT(v int) predicate.User

AgeLT applies the LT predicate on the "age" field.

func AgeLTE

func AgeLTE(v int) predicate.User

AgeLTE applies the LTE predicate on the "age" field.

func AgeNEQ

func AgeNEQ(v int) predicate.User

AgeNEQ applies the NEQ predicate on the "age" field.

func AgeNotIn

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

AgeNotIn applies the NotIn predicate on the "age" field.

func And

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

And groups predicates with the AND operator between them.

func Blob

func Blob(v []byte) predicate.User

Blob applies equality check predicate on the "blob" field. It's identical to BlobEQ.

func BlobEQ

func BlobEQ(v []byte) predicate.User

BlobEQ applies the EQ predicate on the "blob" field.

func BlobGT

func BlobGT(v []byte) predicate.User

BlobGT applies the GT predicate on the "blob" field.

func BlobGTE

func BlobGTE(v []byte) predicate.User

BlobGTE applies the GTE predicate on the "blob" field.

func BlobIn

func BlobIn(vs ...[]byte) predicate.User

BlobIn applies the In predicate on the "blob" field.

func BlobIsNil

func BlobIsNil() predicate.User

BlobIsNil applies the IsNil predicate on the "blob" field.

func BlobLT

func BlobLT(v []byte) predicate.User

BlobLT applies the LT predicate on the "blob" field.

func BlobLTE

func BlobLTE(v []byte) predicate.User

BlobLTE applies the LTE predicate on the "blob" field.

func BlobNEQ

func BlobNEQ(v []byte) predicate.User

BlobNEQ applies the NEQ predicate on the "blob" field.

func BlobNotIn

func BlobNotIn(vs ...[]byte) predicate.User

BlobNotIn applies the NotIn predicate on the "blob" field.

func BlobNotNil

func BlobNotNil() predicate.User

BlobNotNil applies the NotNil predicate on the "blob" field.

func Buffer

func Buffer(v []byte) predicate.User

Buffer applies equality check predicate on the "buffer" field. It's identical to BufferEQ.

func BufferEQ

func BufferEQ(v []byte) predicate.User

BufferEQ applies the EQ predicate on the "buffer" field.

func BufferGT

func BufferGT(v []byte) predicate.User

BufferGT applies the GT predicate on the "buffer" field.

func BufferGTE

func BufferGTE(v []byte) predicate.User

BufferGTE applies the GTE predicate on the "buffer" field.

func BufferIn

func BufferIn(vs ...[]byte) predicate.User

BufferIn applies the In predicate on the "buffer" field.

func BufferIsNil

func BufferIsNil() predicate.User

BufferIsNil applies the IsNil predicate on the "buffer" field.

func BufferLT

func BufferLT(v []byte) predicate.User

BufferLT applies the LT predicate on the "buffer" field.

func BufferLTE

func BufferLTE(v []byte) predicate.User

BufferLTE applies the LTE predicate on the "buffer" field.

func BufferNEQ

func BufferNEQ(v []byte) predicate.User

BufferNEQ applies the NEQ predicate on the "buffer" field.

func BufferNotIn

func BufferNotIn(vs ...[]byte) predicate.User

BufferNotIn applies the NotIn predicate on the "buffer" field.

func BufferNotNil

func BufferNotNil() predicate.User

BufferNotNil applies the NotNil predicate on the "buffer" field.

func CreatedAt added in v0.8.0

func CreatedAt(v time.Time) predicate.User

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

func CreatedAtEQ added in v0.8.0

func CreatedAtEQ(v time.Time) predicate.User

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

func CreatedAtGT added in v0.8.0

func CreatedAtGT(v time.Time) predicate.User

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

func CreatedAtGTE added in v0.8.0

func CreatedAtGTE(v time.Time) predicate.User

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

func CreatedAtIn added in v0.8.0

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

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

func CreatedAtLT added in v0.8.0

func CreatedAtLT(v time.Time) predicate.User

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

func CreatedAtLTE added in v0.8.0

func CreatedAtLTE(v time.Time) predicate.User

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

func CreatedAtNEQ added in v0.8.0

func CreatedAtNEQ(v time.Time) predicate.User

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

func CreatedAtNotIn added in v0.8.0

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

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

func Description added in v0.9.0

func Description(v string) predicate.User

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains added in v0.9.0

func DescriptionContains(v string) predicate.User

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold added in v0.9.0

func DescriptionContainsFold(v string) predicate.User

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ added in v0.9.0

func DescriptionEQ(v string) predicate.User

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold added in v0.9.0

func DescriptionEqualFold(v string) predicate.User

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT added in v0.9.0

func DescriptionGT(v string) predicate.User

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE added in v0.9.0

func DescriptionGTE(v string) predicate.User

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix added in v0.9.0

func DescriptionHasPrefix(v string) predicate.User

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix added in v0.9.0

func DescriptionHasSuffix(v string) predicate.User

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn added in v0.9.0

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

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil added in v0.9.0

func DescriptionIsNil() predicate.User

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT added in v0.9.0

func DescriptionLT(v string) predicate.User

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE added in v0.9.0

func DescriptionLTE(v string) predicate.User

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ added in v0.9.0

func DescriptionNEQ(v string) predicate.User

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn added in v0.9.0

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

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil added in v0.9.0

func DescriptionNotNil() predicate.User

DescriptionNotNil applies the NotNil predicate on the "description" field.

func DropOptional added in v0.11.0

func DropOptional(v string) predicate.User

DropOptional applies equality check predicate on the "drop_optional" field. It's identical to DropOptionalEQ.

func DropOptionalContains added in v0.11.0

func DropOptionalContains(v string) predicate.User

DropOptionalContains applies the Contains predicate on the "drop_optional" field.

func DropOptionalContainsFold added in v0.11.0

func DropOptionalContainsFold(v string) predicate.User

DropOptionalContainsFold applies the ContainsFold predicate on the "drop_optional" field.

func DropOptionalEQ added in v0.11.0

func DropOptionalEQ(v string) predicate.User

DropOptionalEQ applies the EQ predicate on the "drop_optional" field.

func DropOptionalEqualFold added in v0.11.0

func DropOptionalEqualFold(v string) predicate.User

DropOptionalEqualFold applies the EqualFold predicate on the "drop_optional" field.

func DropOptionalGT added in v0.11.0

func DropOptionalGT(v string) predicate.User

DropOptionalGT applies the GT predicate on the "drop_optional" field.

func DropOptionalGTE added in v0.11.0

func DropOptionalGTE(v string) predicate.User

DropOptionalGTE applies the GTE predicate on the "drop_optional" field.

func DropOptionalHasPrefix added in v0.11.0

func DropOptionalHasPrefix(v string) predicate.User

DropOptionalHasPrefix applies the HasPrefix predicate on the "drop_optional" field.

func DropOptionalHasSuffix added in v0.11.0

func DropOptionalHasSuffix(v string) predicate.User

DropOptionalHasSuffix applies the HasSuffix predicate on the "drop_optional" field.

func DropOptionalIn added in v0.11.0

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

DropOptionalIn applies the In predicate on the "drop_optional" field.

func DropOptionalLT added in v0.11.0

func DropOptionalLT(v string) predicate.User

DropOptionalLT applies the LT predicate on the "drop_optional" field.

func DropOptionalLTE added in v0.11.0

func DropOptionalLTE(v string) predicate.User

DropOptionalLTE applies the LTE predicate on the "drop_optional" field.

func DropOptionalNEQ added in v0.11.0

func DropOptionalNEQ(v string) predicate.User

DropOptionalNEQ applies the NEQ predicate on the "drop_optional" field.

func DropOptionalNotIn added in v0.11.0

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

DropOptionalNotIn applies the NotIn predicate on the "drop_optional" field.

func HasCar

func HasCar() predicate.User

HasCar applies the HasEdge predicate on the "car" edge.

func HasCarWith

func HasCarWith(preds ...predicate.Car) predicate.User

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

func HasFriends

func HasFriends() predicate.User

HasFriends applies the HasEdge predicate on the "friends" edge.

func HasFriendsWith

func HasFriendsWith(preds ...predicate.User) predicate.User

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

func HasPets

func HasPets() predicate.User

HasPets applies the HasEdge predicate on the "pets" edge.

func HasPetsWith

func HasPetsWith(preds ...predicate.Pet) predicate.User

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

func ID

func ID(id int) predicate.User

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.User

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.User

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.User

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.User

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.User

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.User

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func MixedEnumEQ

func MixedEnumEQ(v MixedEnum) predicate.User

MixedEnumEQ applies the EQ predicate on the "mixed_enum" field.

func MixedEnumIn

func MixedEnumIn(vs ...MixedEnum) predicate.User

MixedEnumIn applies the In predicate on the "mixed_enum" field.

func MixedEnumNEQ

func MixedEnumNEQ(v MixedEnum) predicate.User

MixedEnumNEQ applies the NEQ predicate on the "mixed_enum" field.

func MixedEnumNotIn

func MixedEnumNotIn(vs ...MixedEnum) predicate.User

MixedEnumNotIn applies the NotIn predicate on the "mixed_enum" field.

func MixedEnumValidator

func MixedEnumValidator(me MixedEnum) error

MixedEnumValidator is a validator for the "mixed_enum" field enum values. It is called by the builders before save.

func MixedString

func MixedString(v string) predicate.User

MixedString applies equality check predicate on the "mixed_string" field. It's identical to MixedStringEQ.

func MixedStringContains

func MixedStringContains(v string) predicate.User

MixedStringContains applies the Contains predicate on the "mixed_string" field.

func MixedStringContainsFold

func MixedStringContainsFold(v string) predicate.User

MixedStringContainsFold applies the ContainsFold predicate on the "mixed_string" field.

func MixedStringEQ

func MixedStringEQ(v string) predicate.User

MixedStringEQ applies the EQ predicate on the "mixed_string" field.

func MixedStringEqualFold

func MixedStringEqualFold(v string) predicate.User

MixedStringEqualFold applies the EqualFold predicate on the "mixed_string" field.

func MixedStringGT

func MixedStringGT(v string) predicate.User

MixedStringGT applies the GT predicate on the "mixed_string" field.

func MixedStringGTE

func MixedStringGTE(v string) predicate.User

MixedStringGTE applies the GTE predicate on the "mixed_string" field.

func MixedStringHasPrefix

func MixedStringHasPrefix(v string) predicate.User

MixedStringHasPrefix applies the HasPrefix predicate on the "mixed_string" field.

func MixedStringHasSuffix

func MixedStringHasSuffix(v string) predicate.User

MixedStringHasSuffix applies the HasSuffix predicate on the "mixed_string" field.

func MixedStringIn

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

MixedStringIn applies the In predicate on the "mixed_string" field.

func MixedStringLT

func MixedStringLT(v string) predicate.User

MixedStringLT applies the LT predicate on the "mixed_string" field.

func MixedStringLTE

func MixedStringLTE(v string) predicate.User

MixedStringLTE applies the LTE predicate on the "mixed_string" field.

func MixedStringNEQ

func MixedStringNEQ(v string) predicate.User

MixedStringNEQ applies the NEQ predicate on the "mixed_string" field.

func MixedStringNotIn

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

MixedStringNotIn applies the NotIn predicate on the "mixed_string" field.

func Name

func Name(v string) predicate.User

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

func NameContains

func NameContains(v string) predicate.User

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

func NameContainsFold

func NameContainsFold(v string) predicate.User

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

func NameEQ

func NameEQ(v string) predicate.User

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

func NameEqualFold

func NameEqualFold(v string) predicate.User

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

func NameGT

func NameGT(v string) predicate.User

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

func NameGTE

func NameGTE(v string) predicate.User

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.User

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.User

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.User

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

func NameLTE

func NameLTE(v string) predicate.User

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

func NameNEQ

func NameNEQ(v string) predicate.User

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

func NameNotIn

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

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

func NewName

func NewName(v string) predicate.User

NewName applies equality check predicate on the "new_name" field. It's identical to NewNameEQ.

func NewNameContains

func NewNameContains(v string) predicate.User

NewNameContains applies the Contains predicate on the "new_name" field.

func NewNameContainsFold

func NewNameContainsFold(v string) predicate.User

NewNameContainsFold applies the ContainsFold predicate on the "new_name" field.

func NewNameEQ

func NewNameEQ(v string) predicate.User

NewNameEQ applies the EQ predicate on the "new_name" field.

func NewNameEqualFold

func NewNameEqualFold(v string) predicate.User

NewNameEqualFold applies the EqualFold predicate on the "new_name" field.

func NewNameGT

func NewNameGT(v string) predicate.User

NewNameGT applies the GT predicate on the "new_name" field.

func NewNameGTE

func NewNameGTE(v string) predicate.User

NewNameGTE applies the GTE predicate on the "new_name" field.

func NewNameHasPrefix

func NewNameHasPrefix(v string) predicate.User

NewNameHasPrefix applies the HasPrefix predicate on the "new_name" field.

func NewNameHasSuffix

func NewNameHasSuffix(v string) predicate.User

NewNameHasSuffix applies the HasSuffix predicate on the "new_name" field.

func NewNameIn

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

NewNameIn applies the In predicate on the "new_name" field.

func NewNameIsNil

func NewNameIsNil() predicate.User

NewNameIsNil applies the IsNil predicate on the "new_name" field.

func NewNameLT

func NewNameLT(v string) predicate.User

NewNameLT applies the LT predicate on the "new_name" field.

func NewNameLTE

func NewNameLTE(v string) predicate.User

NewNameLTE applies the LTE predicate on the "new_name" field.

func NewNameNEQ

func NewNameNEQ(v string) predicate.User

NewNameNEQ applies the NEQ predicate on the "new_name" field.

func NewNameNotIn

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

NewNameNotIn applies the NotIn predicate on the "new_name" field.

func NewNameNotNil

func NewNameNotNil() predicate.User

NewNameNotNil applies the NotNil predicate on the "new_name" field.

func NewToken added in v0.11.0

func NewToken(v string) predicate.User

NewToken applies equality check predicate on the "new_token" field. It's identical to NewTokenEQ.

func NewTokenContains added in v0.11.0

func NewTokenContains(v string) predicate.User

NewTokenContains applies the Contains predicate on the "new_token" field.

func NewTokenContainsFold added in v0.11.0

func NewTokenContainsFold(v string) predicate.User

NewTokenContainsFold applies the ContainsFold predicate on the "new_token" field.

func NewTokenEQ added in v0.11.0

func NewTokenEQ(v string) predicate.User

NewTokenEQ applies the EQ predicate on the "new_token" field.

func NewTokenEqualFold added in v0.11.0

func NewTokenEqualFold(v string) predicate.User

NewTokenEqualFold applies the EqualFold predicate on the "new_token" field.

func NewTokenGT added in v0.11.0

func NewTokenGT(v string) predicate.User

NewTokenGT applies the GT predicate on the "new_token" field.

func NewTokenGTE added in v0.11.0

func NewTokenGTE(v string) predicate.User

NewTokenGTE applies the GTE predicate on the "new_token" field.

func NewTokenHasPrefix added in v0.11.0

func NewTokenHasPrefix(v string) predicate.User

NewTokenHasPrefix applies the HasPrefix predicate on the "new_token" field.

func NewTokenHasSuffix added in v0.11.0

func NewTokenHasSuffix(v string) predicate.User

NewTokenHasSuffix applies the HasSuffix predicate on the "new_token" field.

func NewTokenIn added in v0.11.0

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

NewTokenIn applies the In predicate on the "new_token" field.

func NewTokenLT added in v0.11.0

func NewTokenLT(v string) predicate.User

NewTokenLT applies the LT predicate on the "new_token" field.

func NewTokenLTE added in v0.11.0

func NewTokenLTE(v string) predicate.User

NewTokenLTE applies the LTE predicate on the "new_token" field.

func NewTokenNEQ added in v0.11.0

func NewTokenNEQ(v string) predicate.User

NewTokenNEQ applies the NEQ predicate on the "new_token" field.

func NewTokenNotIn added in v0.11.0

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

NewTokenNotIn applies the NotIn predicate on the "new_token" field.

func Nickname

func Nickname(v string) predicate.User

Nickname applies equality check predicate on the "nickname" field. It's identical to NicknameEQ.

func NicknameContains

func NicknameContains(v string) predicate.User

NicknameContains applies the Contains predicate on the "nickname" field.

func NicknameContainsFold

func NicknameContainsFold(v string) predicate.User

NicknameContainsFold applies the ContainsFold predicate on the "nickname" field.

func NicknameEQ

func NicknameEQ(v string) predicate.User

NicknameEQ applies the EQ predicate on the "nickname" field.

func NicknameEqualFold

func NicknameEqualFold(v string) predicate.User

NicknameEqualFold applies the EqualFold predicate on the "nickname" field.

func NicknameGT

func NicknameGT(v string) predicate.User

NicknameGT applies the GT predicate on the "nickname" field.

func NicknameGTE

func NicknameGTE(v string) predicate.User

NicknameGTE applies the GTE predicate on the "nickname" field.

func NicknameHasPrefix

func NicknameHasPrefix(v string) predicate.User

NicknameHasPrefix applies the HasPrefix predicate on the "nickname" field.

func NicknameHasSuffix

func NicknameHasSuffix(v string) predicate.User

NicknameHasSuffix applies the HasSuffix predicate on the "nickname" field.

func NicknameIn

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

NicknameIn applies the In predicate on the "nickname" field.

func NicknameLT

func NicknameLT(v string) predicate.User

NicknameLT applies the LT predicate on the "nickname" field.

func NicknameLTE

func NicknameLTE(v string) predicate.User

NicknameLTE applies the LTE predicate on the "nickname" field.

func NicknameNEQ

func NicknameNEQ(v string) predicate.User

NicknameNEQ applies the NEQ predicate on the "nickname" field.

func NicknameNotIn

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

NicknameNotIn applies the NotIn predicate on the "nickname" 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 Phone

func Phone(v string) predicate.User

Phone applies equality check predicate on the "phone" field. It's identical to PhoneEQ.

func PhoneContains

func PhoneContains(v string) predicate.User

PhoneContains applies the Contains predicate on the "phone" field.

func PhoneContainsFold

func PhoneContainsFold(v string) predicate.User

PhoneContainsFold applies the ContainsFold predicate on the "phone" field.

func PhoneEQ

func PhoneEQ(v string) predicate.User

PhoneEQ applies the EQ predicate on the "phone" field.

func PhoneEqualFold

func PhoneEqualFold(v string) predicate.User

PhoneEqualFold applies the EqualFold predicate on the "phone" field.

func PhoneGT

func PhoneGT(v string) predicate.User

PhoneGT applies the GT predicate on the "phone" field.

func PhoneGTE

func PhoneGTE(v string) predicate.User

PhoneGTE applies the GTE predicate on the "phone" field.

func PhoneHasPrefix

func PhoneHasPrefix(v string) predicate.User

PhoneHasPrefix applies the HasPrefix predicate on the "phone" field.

func PhoneHasSuffix

func PhoneHasSuffix(v string) predicate.User

PhoneHasSuffix applies the HasSuffix predicate on the "phone" field.

func PhoneIn

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

PhoneIn applies the In predicate on the "phone" field.

func PhoneLT

func PhoneLT(v string) predicate.User

PhoneLT applies the LT predicate on the "phone" field.

func PhoneLTE

func PhoneLTE(v string) predicate.User

PhoneLTE applies the LTE predicate on the "phone" field.

func PhoneNEQ

func PhoneNEQ(v string) predicate.User

PhoneNEQ applies the NEQ predicate on the "phone" field.

func PhoneNotIn

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

PhoneNotIn applies the NotIn predicate on the "phone" field.

func StateEQ

func StateEQ(v State) predicate.User

StateEQ applies the EQ predicate on the "state" field.

func StateIn

func StateIn(vs ...State) predicate.User

StateIn applies the In predicate on the "state" field.

func StateIsNil

func StateIsNil() predicate.User

StateIsNil applies the IsNil predicate on the "state" field.

func StateNEQ

func StateNEQ(v State) predicate.User

StateNEQ applies the NEQ predicate on the "state" field.

func StateNotIn

func StateNotIn(vs ...State) predicate.User

StateNotIn applies the NotIn predicate on the "state" field.

func StateNotNil

func StateNotNil() predicate.User

StateNotNil applies the NotNil predicate on the "state" field.

func StateValidator

func StateValidator(s State) error

StateValidator is a validator for the "state" field enum values. It is called by the builders before save.

func StatusEQ

func StatusEQ(v Status) predicate.User

StatusEQ applies the EQ predicate on the "status" field.

func StatusIn

func StatusIn(vs ...Status) predicate.User

StatusIn applies the In predicate on the "status" field.

func StatusIsNil

func StatusIsNil() predicate.User

StatusIsNil applies the IsNil predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v Status) predicate.User

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...Status) predicate.User

StatusNotIn applies the NotIn predicate on the "status" field.

func StatusNotNil

func StatusNotNil() predicate.User

StatusNotNil applies the NotNil predicate on the "status" field.

func StatusValidator

func StatusValidator(s Status) error

StatusValidator is a validator for the "status" field enum values. It is called by the builders before save.

func Title

func Title(v string) predicate.User

Title applies equality check predicate on the "title" field. It's identical to TitleEQ.

func TitleContains

func TitleContains(v string) predicate.User

TitleContains applies the Contains predicate on the "title" field.

func TitleContainsFold

func TitleContainsFold(v string) predicate.User

TitleContainsFold applies the ContainsFold predicate on the "title" field.

func TitleEQ

func TitleEQ(v string) predicate.User

TitleEQ applies the EQ predicate on the "title" field.

func TitleEqualFold

func TitleEqualFold(v string) predicate.User

TitleEqualFold applies the EqualFold predicate on the "title" field.

func TitleGT

func TitleGT(v string) predicate.User

TitleGT applies the GT predicate on the "title" field.

func TitleGTE

func TitleGTE(v string) predicate.User

TitleGTE applies the GTE predicate on the "title" field.

func TitleHasPrefix

func TitleHasPrefix(v string) predicate.User

TitleHasPrefix applies the HasPrefix predicate on the "title" field.

func TitleHasSuffix

func TitleHasSuffix(v string) predicate.User

TitleHasSuffix applies the HasSuffix predicate on the "title" field.

func TitleIn

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

TitleIn applies the In predicate on the "title" field.

func TitleLT

func TitleLT(v string) predicate.User

TitleLT applies the LT predicate on the "title" field.

func TitleLTE

func TitleLTE(v string) predicate.User

TitleLTE applies the LTE predicate on the "title" field.

func TitleNEQ

func TitleNEQ(v string) predicate.User

TitleNEQ applies the NEQ predicate on the "title" field.

func TitleNotIn

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

TitleNotIn applies the NotIn predicate on the "title" field.

func ValidColumn

func ValidColumn(column string) bool

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

func Workplace

func Workplace(v string) predicate.User

Workplace applies equality check predicate on the "workplace" field. It's identical to WorkplaceEQ.

func WorkplaceContains

func WorkplaceContains(v string) predicate.User

WorkplaceContains applies the Contains predicate on the "workplace" field.

func WorkplaceContainsFold

func WorkplaceContainsFold(v string) predicate.User

WorkplaceContainsFold applies the ContainsFold predicate on the "workplace" field.

func WorkplaceEQ

func WorkplaceEQ(v string) predicate.User

WorkplaceEQ applies the EQ predicate on the "workplace" field.

func WorkplaceEqualFold

func WorkplaceEqualFold(v string) predicate.User

WorkplaceEqualFold applies the EqualFold predicate on the "workplace" field.

func WorkplaceGT

func WorkplaceGT(v string) predicate.User

WorkplaceGT applies the GT predicate on the "workplace" field.

func WorkplaceGTE

func WorkplaceGTE(v string) predicate.User

WorkplaceGTE applies the GTE predicate on the "workplace" field.

func WorkplaceHasPrefix

func WorkplaceHasPrefix(v string) predicate.User

WorkplaceHasPrefix applies the HasPrefix predicate on the "workplace" field.

func WorkplaceHasSuffix

func WorkplaceHasSuffix(v string) predicate.User

WorkplaceHasSuffix applies the HasSuffix predicate on the "workplace" field.

func WorkplaceIn

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

WorkplaceIn applies the In predicate on the "workplace" field.

func WorkplaceIsNil

func WorkplaceIsNil() predicate.User

WorkplaceIsNil applies the IsNil predicate on the "workplace" field.

func WorkplaceLT

func WorkplaceLT(v string) predicate.User

WorkplaceLT applies the LT predicate on the "workplace" field.

func WorkplaceLTE

func WorkplaceLTE(v string) predicate.User

WorkplaceLTE applies the LTE predicate on the "workplace" field.

func WorkplaceNEQ

func WorkplaceNEQ(v string) predicate.User

WorkplaceNEQ applies the NEQ predicate on the "workplace" field.

func WorkplaceNotIn

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

WorkplaceNotIn applies the NotIn predicate on the "workplace" field.

func WorkplaceNotNil

func WorkplaceNotNil() predicate.User

WorkplaceNotNil applies the NotNil predicate on the "workplace" field.

Types

type MixedEnum

type MixedEnum string

MixedEnum defines the type for the "mixed_enum" enum field.

const (
	MixedEnumOn  MixedEnum = "on"
	MixedEnumOff MixedEnum = "off"
)

MixedEnum values.

func (MixedEnum) String

func (me MixedEnum) String() string

type State

type State string

State defines the type for the "state" enum field.

const (
	StateLoggedIn  State = "logged_in"
	StateLoggedOut State = "logged_out"
	StateOnline    State = "online"
)

State values.

func (State) String

func (s State) String() string

type Status

type Status string

Status defines the type for the "status" enum field.

const (
	StatusDone    Status = "done"
	StatusPending Status = "pending"
)

Status values.

func (Status) String

func (s Status) String() string

Jump to

Keyboard shortcuts

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