user

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

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

Go to latest
Published: Dec 11, 2024 License: Apache-2.0 Imports: 2 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"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldPublicInfo holds the string denoting the public_info field in the database.
	FieldPublicInfo = "public_info"
	// FieldPrivateInfo holds the string denoting the private_info field in the database.
	FieldPrivateInfo = "private_info"
	// Table holds the table name of the user in the database.
	Table = "users"
)

Variables

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 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 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 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 PrivateInfo

func PrivateInfo(v string) predicate.User

PrivateInfo applies equality check predicate on the "private_info" field. It's identical to PrivateInfoEQ.

func PrivateInfoContains

func PrivateInfoContains(v string) predicate.User

PrivateInfoContains applies the Contains predicate on the "private_info" field.

func PrivateInfoContainsFold

func PrivateInfoContainsFold(v string) predicate.User

PrivateInfoContainsFold applies the ContainsFold predicate on the "private_info" field.

func PrivateInfoEQ

func PrivateInfoEQ(v string) predicate.User

PrivateInfoEQ applies the EQ predicate on the "private_info" field.

func PrivateInfoEqualFold

func PrivateInfoEqualFold(v string) predicate.User

PrivateInfoEqualFold applies the EqualFold predicate on the "private_info" field.

func PrivateInfoGT

func PrivateInfoGT(v string) predicate.User

PrivateInfoGT applies the GT predicate on the "private_info" field.

func PrivateInfoGTE

func PrivateInfoGTE(v string) predicate.User

PrivateInfoGTE applies the GTE predicate on the "private_info" field.

func PrivateInfoHasPrefix

func PrivateInfoHasPrefix(v string) predicate.User

PrivateInfoHasPrefix applies the HasPrefix predicate on the "private_info" field.

func PrivateInfoHasSuffix

func PrivateInfoHasSuffix(v string) predicate.User

PrivateInfoHasSuffix applies the HasSuffix predicate on the "private_info" field.

func PrivateInfoIn

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

PrivateInfoIn applies the In predicate on the "private_info" field.

func PrivateInfoLT

func PrivateInfoLT(v string) predicate.User

PrivateInfoLT applies the LT predicate on the "private_info" field.

func PrivateInfoLTE

func PrivateInfoLTE(v string) predicate.User

PrivateInfoLTE applies the LTE predicate on the "private_info" field.

func PrivateInfoNEQ

func PrivateInfoNEQ(v string) predicate.User

PrivateInfoNEQ applies the NEQ predicate on the "private_info" field.

func PrivateInfoNotIn

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

PrivateInfoNotIn applies the NotIn predicate on the "private_info" field.

func PublicInfo

func PublicInfo(v string) predicate.User

PublicInfo applies equality check predicate on the "public_info" field. It's identical to PublicInfoEQ.

func PublicInfoContains

func PublicInfoContains(v string) predicate.User

PublicInfoContains applies the Contains predicate on the "public_info" field.

func PublicInfoContainsFold

func PublicInfoContainsFold(v string) predicate.User

PublicInfoContainsFold applies the ContainsFold predicate on the "public_info" field.

func PublicInfoEQ

func PublicInfoEQ(v string) predicate.User

PublicInfoEQ applies the EQ predicate on the "public_info" field.

func PublicInfoEqualFold

func PublicInfoEqualFold(v string) predicate.User

PublicInfoEqualFold applies the EqualFold predicate on the "public_info" field.

func PublicInfoGT

func PublicInfoGT(v string) predicate.User

PublicInfoGT applies the GT predicate on the "public_info" field.

func PublicInfoGTE

func PublicInfoGTE(v string) predicate.User

PublicInfoGTE applies the GTE predicate on the "public_info" field.

func PublicInfoHasPrefix

func PublicInfoHasPrefix(v string) predicate.User

PublicInfoHasPrefix applies the HasPrefix predicate on the "public_info" field.

func PublicInfoHasSuffix

func PublicInfoHasSuffix(v string) predicate.User

PublicInfoHasSuffix applies the HasSuffix predicate on the "public_info" field.

func PublicInfoIn

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

PublicInfoIn applies the In predicate on the "public_info" field.

func PublicInfoLT

func PublicInfoLT(v string) predicate.User

PublicInfoLT applies the LT predicate on the "public_info" field.

func PublicInfoLTE

func PublicInfoLTE(v string) predicate.User

PublicInfoLTE applies the LTE predicate on the "public_info" field.

func PublicInfoNEQ

func PublicInfoNEQ(v string) predicate.User

PublicInfoNEQ applies the NEQ predicate on the "public_info" field.

func PublicInfoNotIn

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

PublicInfoNotIn applies the NotIn predicate on the "public_info" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the User queries.

func ByID

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

ByID orders the results by the id field.

func ByName

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

ByName orders the results by the name field.

func ByPrivateInfo

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

ByPrivateInfo orders the results by the private_info field.

func ByPublicInfo

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

ByPublicInfo orders the results by the public_info field.

Jump to

Keyboard shortcuts

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