phoneaccount

package
v0.0.0-...-dfe096b Latest Latest
Warning

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

Go to latest
Published: Dec 28, 2021 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the phoneaccount type in the database.
	Label = "phone_account"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldUserIdentity holds the string denoting the user_identity field in the database.
	FieldUserIdentity = "user_identity"
	// FieldPhone holds the string denoting the phone field in the database.
	FieldPhone = "phone"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"

	// Table holds the table name of the phoneaccount in the database.
	Table = "phone_account"
)

Variables

Columns holds all SQL columns for phoneaccount fields.

Functions

func And

func And(predicates ...predicate.PhoneAccount) predicate.PhoneAccount

And groups list of predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.PhoneAccount

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.PhoneAccount

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.PhoneAccount

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.PhoneAccount

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.PhoneAccount

CreatedAtIsNil applies the IsNil predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.PhoneAccount

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.PhoneAccount

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.PhoneAccount

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.PhoneAccount

CreatedAtNotNil applies the NotNil predicate on the "created_at" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.PhoneAccount

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.PhoneAccount

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.PhoneAccount

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.PhoneAccount

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.PhoneAccount

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.PhoneAccount

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.PhoneAccount

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.PhoneAccount

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.PhoneAccount

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.PhoneAccount

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.PhoneAccount

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func ID

ID filters vertices based on their identifier.

func IDEQ

func IDEQ(id int64) predicate.PhoneAccount

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int64) predicate.PhoneAccount

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int64) predicate.PhoneAccount

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int64) predicate.PhoneAccount

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int64) predicate.PhoneAccount

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int64) predicate.PhoneAccount

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int64) predicate.PhoneAccount

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int64) predicate.PhoneAccount

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.PhoneAccount) predicate.PhoneAccount

Or groups list of predicates with the OR operator between them.

func Phone

func Phone(v string) predicate.PhoneAccount

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

func PhoneContains

func PhoneContains(v string) predicate.PhoneAccount

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

func PhoneContainsFold

func PhoneContainsFold(v string) predicate.PhoneAccount

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

func PhoneEQ

func PhoneEQ(v string) predicate.PhoneAccount

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

func PhoneEqualFold

func PhoneEqualFold(v string) predicate.PhoneAccount

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

func PhoneGT

func PhoneGT(v string) predicate.PhoneAccount

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

func PhoneGTE

func PhoneGTE(v string) predicate.PhoneAccount

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

func PhoneHasPrefix

func PhoneHasPrefix(v string) predicate.PhoneAccount

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

func PhoneHasSuffix

func PhoneHasSuffix(v string) predicate.PhoneAccount

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

func PhoneIn

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

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

func PhoneIsNil

func PhoneIsNil() predicate.PhoneAccount

PhoneIsNil applies the IsNil predicate on the "phone" field.

func PhoneLT

func PhoneLT(v string) predicate.PhoneAccount

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

func PhoneLTE

func PhoneLTE(v string) predicate.PhoneAccount

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

func PhoneNEQ

func PhoneNEQ(v string) predicate.PhoneAccount

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

func PhoneNotIn

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

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

func PhoneNotNil

func PhoneNotNil() predicate.PhoneAccount

PhoneNotNil applies the NotNil predicate on the "phone" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.PhoneAccount

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.PhoneAccount

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.PhoneAccount

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.PhoneAccount

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.PhoneAccount

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.PhoneAccount

UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.PhoneAccount

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.PhoneAccount

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.PhoneAccount

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.PhoneAccount

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.PhoneAccount

UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.

func UserIdentity

func UserIdentity(v string) predicate.PhoneAccount

UserIdentity applies equality check predicate on the "user_identity" field. It's identical to UserIdentityEQ.

func UserIdentityContains

func UserIdentityContains(v string) predicate.PhoneAccount

UserIdentityContains applies the Contains predicate on the "user_identity" field.

func UserIdentityContainsFold

func UserIdentityContainsFold(v string) predicate.PhoneAccount

UserIdentityContainsFold applies the ContainsFold predicate on the "user_identity" field.

func UserIdentityEQ

func UserIdentityEQ(v string) predicate.PhoneAccount

UserIdentityEQ applies the EQ predicate on the "user_identity" field.

func UserIdentityEqualFold

func UserIdentityEqualFold(v string) predicate.PhoneAccount

UserIdentityEqualFold applies the EqualFold predicate on the "user_identity" field.

func UserIdentityGT

func UserIdentityGT(v string) predicate.PhoneAccount

UserIdentityGT applies the GT predicate on the "user_identity" field.

func UserIdentityGTE

func UserIdentityGTE(v string) predicate.PhoneAccount

UserIdentityGTE applies the GTE predicate on the "user_identity" field.

func UserIdentityHasPrefix

func UserIdentityHasPrefix(v string) predicate.PhoneAccount

UserIdentityHasPrefix applies the HasPrefix predicate on the "user_identity" field.

func UserIdentityHasSuffix

func UserIdentityHasSuffix(v string) predicate.PhoneAccount

UserIdentityHasSuffix applies the HasSuffix predicate on the "user_identity" field.

func UserIdentityIn

func UserIdentityIn(vs ...string) predicate.PhoneAccount

UserIdentityIn applies the In predicate on the "user_identity" field.

func UserIdentityIsNil

func UserIdentityIsNil() predicate.PhoneAccount

UserIdentityIsNil applies the IsNil predicate on the "user_identity" field.

func UserIdentityLT

func UserIdentityLT(v string) predicate.PhoneAccount

UserIdentityLT applies the LT predicate on the "user_identity" field.

func UserIdentityLTE

func UserIdentityLTE(v string) predicate.PhoneAccount

UserIdentityLTE applies the LTE predicate on the "user_identity" field.

func UserIdentityNEQ

func UserIdentityNEQ(v string) predicate.PhoneAccount

UserIdentityNEQ applies the NEQ predicate on the "user_identity" field.

func UserIdentityNotIn

func UserIdentityNotIn(vs ...string) predicate.PhoneAccount

UserIdentityNotIn applies the NotIn predicate on the "user_identity" field.

func UserIdentityNotNil

func UserIdentityNotNil() predicate.PhoneAccount

UserIdentityNotNil applies the NotNil predicate on the "user_identity" 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