user

package
v0.1.5-0...-40e571d Latest Latest
Warning

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

Go to latest
Published: Apr 13, 2020 License: Apache-2.0 Imports: 4 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"      // FieldAge holds the string denoting the age vertex property in the database.
	FieldAge      = "age"      // FieldName holds the string denoting the name vertex property in the database.
	FieldName     = "name"     // FieldNickname holds the string denoting the nickname vertex property in the database.
	FieldNickname = "nickname" // FieldPhone holds the string denoting the phone vertex property in the database.
	FieldPhone    = "phone"    // FieldBuffer holds the string denoting the buffer vertex property in the database.
	FieldBuffer   = "buffer"   // FieldTitle holds the string denoting the title vertex property in the database.
	FieldTitle    = "title"    // FieldNewName holds the string denoting the new_name vertex property in the database.
	FieldNewName  = "renamed"  // FieldBlob holds the string denoting the blob vertex property in the database.
	FieldBlob     = "blob"     // FieldState holds the string denoting the state vertex property in the database.
	FieldState    = "state"

	// 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"

	// Table holds the table name of the user in the database.
	Table = "users"
	// CarTable is the table the holds the car relation/edge.
	CarTable = "cars"
	// 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 = "cars"
	// CarColumn is the table column denoting the car relation/edge.
	CarColumn = "user_car"
	// PetsTable is the table the holds the pets relation/edge.
	PetsTable = "users"
	// 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 = "user_pets"
)

Variables

View Source
var (
	// DefaultPhone holds the default value on creation for the phone field.
	DefaultPhone string
	// DefaultTitle holds the default value on creation for the title field.
	DefaultTitle string
)

Columns holds all SQL columns for user fields.

View Source
var ForeignKeys = []string{
	"user_pets",
}

ForeignKeys holds the SQL foreign-keys that are owned by the User type.

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 list of 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 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 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 identifier.

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 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 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 list of 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 "s" 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.

Types

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

Jump to

Keyboard shortcuts

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