user

package
v0.0.0-...-e91a8f2 Latest Latest
Warning

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

Go to latest
Published: Feb 6, 2023 License: MIT 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 = "id"
	// FieldCity holds the string denoting the city field in the database.
	FieldCity = "city"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldAddress holds the string denoting the address field in the database.
	FieldAddress = "address"
	// FieldCreditCard holds the string denoting the credit_card field in the database.
	FieldCreditCard = "credit_card"
	// EdgeVehicles holds the string denoting the vehicles edge name in mutations.
	EdgeVehicles = "vehicles"
	// EdgeRides holds the string denoting the rides edge name in mutations.
	EdgeRides = "rides"
	// EdgeUserPromoCodes holds the string denoting the user_promo_codes edge name in mutations.
	EdgeUserPromoCodes = "user_promo_codes"
	// Table holds the table name of the user in the database.
	Table = "users"
	// VehiclesTable is the table that holds the vehicles relation/edge.
	VehiclesTable = "vehicles"
	// VehiclesInverseTable is the table name for the Vehicle entity.
	// It exists in this package in order to avoid circular dependency with the "vehicle" package.
	VehiclesInverseTable = "vehicles"
	// VehiclesColumn is the table column denoting the vehicles relation/edge.
	VehiclesColumn = "owner_id"
	// RidesTable is the table that holds the rides relation/edge.
	RidesTable = "rides"
	// RidesInverseTable is the table name for the Ride entity.
	// It exists in this package in order to avoid circular dependency with the "ride" package.
	RidesInverseTable = "rides"
	// RidesColumn is the table column denoting the rides relation/edge.
	RidesColumn = "rider_id"
	// UserPromoCodesTable is the table that holds the user_promo_codes relation/edge.
	UserPromoCodesTable = "user_promo_codes"
	// UserPromoCodesInverseTable is the table name for the UserPromoCode entity.
	// It exists in this package in order to avoid circular dependency with the "userpromocode" package.
	UserPromoCodesInverseTable = "user_promo_codes"
	// UserPromoCodesColumn is the table column denoting the user_promo_codes relation/edge.
	UserPromoCodesColumn = "user_id"
)

Variables

Columns holds all SQL columns for user fields.

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

Functions

func Address

func Address(v string) predicate.User

Address applies equality check predicate on the "address" field. It's identical to AddressEQ.

func AddressContains

func AddressContains(v string) predicate.User

AddressContains applies the Contains predicate on the "address" field.

func AddressContainsFold

func AddressContainsFold(v string) predicate.User

AddressContainsFold applies the ContainsFold predicate on the "address" field.

func AddressEQ

func AddressEQ(v string) predicate.User

AddressEQ applies the EQ predicate on the "address" field.

func AddressEqualFold

func AddressEqualFold(v string) predicate.User

AddressEqualFold applies the EqualFold predicate on the "address" field.

func AddressGT

func AddressGT(v string) predicate.User

AddressGT applies the GT predicate on the "address" field.

func AddressGTE

func AddressGTE(v string) predicate.User

AddressGTE applies the GTE predicate on the "address" field.

func AddressHasPrefix

func AddressHasPrefix(v string) predicate.User

AddressHasPrefix applies the HasPrefix predicate on the "address" field.

func AddressHasSuffix

func AddressHasSuffix(v string) predicate.User

AddressHasSuffix applies the HasSuffix predicate on the "address" field.

func AddressIn

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

AddressIn applies the In predicate on the "address" field.

func AddressIsNil

func AddressIsNil() predicate.User

AddressIsNil applies the IsNil predicate on the "address" field.

func AddressLT

func AddressLT(v string) predicate.User

AddressLT applies the LT predicate on the "address" field.

func AddressLTE

func AddressLTE(v string) predicate.User

AddressLTE applies the LTE predicate on the "address" field.

func AddressNEQ

func AddressNEQ(v string) predicate.User

AddressNEQ applies the NEQ predicate on the "address" field.

func AddressNotIn

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

AddressNotIn applies the NotIn predicate on the "address" field.

func AddressNotNil

func AddressNotNil() predicate.User

AddressNotNil applies the NotNil predicate on the "address" field.

func And

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

And groups predicates with the AND operator between them.

func City

func City(v string) predicate.User

City applies equality check predicate on the "city" field. It's identical to CityEQ.

func CityContains

func CityContains(v string) predicate.User

CityContains applies the Contains predicate on the "city" field.

func CityContainsFold

func CityContainsFold(v string) predicate.User

CityContainsFold applies the ContainsFold predicate on the "city" field.

func CityEQ

func CityEQ(v string) predicate.User

CityEQ applies the EQ predicate on the "city" field.

func CityEqualFold

func CityEqualFold(v string) predicate.User

CityEqualFold applies the EqualFold predicate on the "city" field.

func CityGT

func CityGT(v string) predicate.User

CityGT applies the GT predicate on the "city" field.

func CityGTE

func CityGTE(v string) predicate.User

CityGTE applies the GTE predicate on the "city" field.

func CityHasPrefix

func CityHasPrefix(v string) predicate.User

CityHasPrefix applies the HasPrefix predicate on the "city" field.

func CityHasSuffix

func CityHasSuffix(v string) predicate.User

CityHasSuffix applies the HasSuffix predicate on the "city" field.

func CityIn

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

CityIn applies the In predicate on the "city" field.

func CityLT

func CityLT(v string) predicate.User

CityLT applies the LT predicate on the "city" field.

func CityLTE

func CityLTE(v string) predicate.User

CityLTE applies the LTE predicate on the "city" field.

func CityNEQ

func CityNEQ(v string) predicate.User

CityNEQ applies the NEQ predicate on the "city" field.

func CityNotIn

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

CityNotIn applies the NotIn predicate on the "city" field.

func CreditCard

func CreditCard(v string) predicate.User

CreditCard applies equality check predicate on the "credit_card" field. It's identical to CreditCardEQ.

func CreditCardContains

func CreditCardContains(v string) predicate.User

CreditCardContains applies the Contains predicate on the "credit_card" field.

func CreditCardContainsFold

func CreditCardContainsFold(v string) predicate.User

CreditCardContainsFold applies the ContainsFold predicate on the "credit_card" field.

func CreditCardEQ

func CreditCardEQ(v string) predicate.User

CreditCardEQ applies the EQ predicate on the "credit_card" field.

func CreditCardEqualFold

func CreditCardEqualFold(v string) predicate.User

CreditCardEqualFold applies the EqualFold predicate on the "credit_card" field.

func CreditCardGT

func CreditCardGT(v string) predicate.User

CreditCardGT applies the GT predicate on the "credit_card" field.

func CreditCardGTE

func CreditCardGTE(v string) predicate.User

CreditCardGTE applies the GTE predicate on the "credit_card" field.

func CreditCardHasPrefix

func CreditCardHasPrefix(v string) predicate.User

CreditCardHasPrefix applies the HasPrefix predicate on the "credit_card" field.

func CreditCardHasSuffix

func CreditCardHasSuffix(v string) predicate.User

CreditCardHasSuffix applies the HasSuffix predicate on the "credit_card" field.

func CreditCardIn

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

CreditCardIn applies the In predicate on the "credit_card" field.

func CreditCardIsNil

func CreditCardIsNil() predicate.User

CreditCardIsNil applies the IsNil predicate on the "credit_card" field.

func CreditCardLT

func CreditCardLT(v string) predicate.User

CreditCardLT applies the LT predicate on the "credit_card" field.

func CreditCardLTE

func CreditCardLTE(v string) predicate.User

CreditCardLTE applies the LTE predicate on the "credit_card" field.

func CreditCardNEQ

func CreditCardNEQ(v string) predicate.User

CreditCardNEQ applies the NEQ predicate on the "credit_card" field.

func CreditCardNotIn

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

CreditCardNotIn applies the NotIn predicate on the "credit_card" field.

func CreditCardNotNil

func CreditCardNotNil() predicate.User

CreditCardNotNil applies the NotNil predicate on the "credit_card" field.

func HasRides

func HasRides() predicate.User

HasRides applies the HasEdge predicate on the "rides" edge.

func HasRidesWith

func HasRidesWith(preds ...predicate.Ride) predicate.User

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

func HasUserPromoCodes

func HasUserPromoCodes() predicate.User

HasUserPromoCodes applies the HasEdge predicate on the "user_promo_codes" edge.

func HasUserPromoCodesWith

func HasUserPromoCodesWith(preds ...predicate.UserPromoCode) predicate.User

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

func HasVehicles

func HasVehicles() predicate.User

HasVehicles applies the HasEdge predicate on the "vehicles" edge.

func HasVehiclesWith

func HasVehiclesWith(preds ...predicate.Vehicle) predicate.User

HasVehiclesWith applies the HasEdge predicate on the "vehicles" 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 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 NameIsNil

func NameIsNil() predicate.User

NameIsNil applies the IsNil 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 NameNotNil

func NameNotNil() predicate.User

NameNotNil applies the NotNil 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 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