pet

package
v0.10.1 Latest Latest
Warning

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

Go to latest
Published: Mar 4, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the pet type in the database.
	Label = "pet"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// 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"
	// FieldUUID holds the string denoting the uuid field in the database.
	FieldUUID = "uuid"
	// FieldNickname holds the string denoting the nickname field in the database.
	FieldNickname = "nickname"
	// EdgeTeam holds the string denoting the team edge name in mutations.
	EdgeTeam = "team"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// TeamInverseLabel holds the string label denoting the team inverse edge type in the database.
	TeamInverseLabel = "user_team"
	// OwnerInverseLabel holds the string label denoting the owner inverse edge type in the database.
	OwnerInverseLabel = "user_pets"
)

Variables

View Source
var (
	// DefaultAge holds the default value on creation for the "age" field.
	DefaultAge float64
)

Functions

func Age added in v0.9.0

func Age(v float64) predicate.Pet

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

func AgeEQ added in v0.9.0

func AgeEQ(v float64) predicate.Pet

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

func AgeGT added in v0.9.0

func AgeGT(v float64) predicate.Pet

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

func AgeGTE added in v0.9.0

func AgeGTE(v float64) predicate.Pet

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

func AgeIn added in v0.9.0

func AgeIn(vs ...float64) predicate.Pet

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

func AgeLT added in v0.9.0

func AgeLT(v float64) predicate.Pet

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

func AgeLTE added in v0.9.0

func AgeLTE(v float64) predicate.Pet

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

func AgeNEQ added in v0.9.0

func AgeNEQ(v float64) predicate.Pet

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

func AgeNotIn added in v0.9.0

func AgeNotIn(vs ...float64) predicate.Pet

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

func And

func And(predicates ...predicate.Pet) predicate.Pet

And groups predicates with the AND operator between them.

func HasOwner

func HasOwner() predicate.Pet

HasOwner applies the HasEdge predicate on the "owner" edge.

func HasOwnerWith

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

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

func HasTeam

func HasTeam() predicate.Pet

HasTeam applies the HasEdge predicate on the "team" edge.

func HasTeamWith

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

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

func ID

func ID(id string) predicate.Pet

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.Pet

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Pet

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Pet

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.Pet

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Pet

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Pet

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Pet

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.Pet

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.Pet

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

func NameContains

func NameContains(v string) predicate.Pet

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

func NameEQ

func NameEQ(v string) predicate.Pet

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

func NameGT

func NameGT(v string) predicate.Pet

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

func NameGTE

func NameGTE(v string) predicate.Pet

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Pet

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Pet

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Pet

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

func NameLTE

func NameLTE(v string) predicate.Pet

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

func NameNEQ

func NameNEQ(v string) predicate.Pet

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

func NameNotIn

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

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

func Nickname added in v0.10.0

func Nickname(v string) predicate.Pet

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

func NicknameContains added in v0.10.0

func NicknameContains(v string) predicate.Pet

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

func NicknameEQ added in v0.10.0

func NicknameEQ(v string) predicate.Pet

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

func NicknameGT added in v0.10.0

func NicknameGT(v string) predicate.Pet

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

func NicknameGTE added in v0.10.0

func NicknameGTE(v string) predicate.Pet

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

func NicknameHasPrefix added in v0.10.0

func NicknameHasPrefix(v string) predicate.Pet

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

func NicknameHasSuffix added in v0.10.0

func NicknameHasSuffix(v string) predicate.Pet

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

func NicknameIn added in v0.10.0

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

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

func NicknameIsNil added in v0.10.0

func NicknameIsNil() predicate.Pet

NicknameIsNil applies the IsNil predicate on the "nickname" field.

func NicknameLT added in v0.10.0

func NicknameLT(v string) predicate.Pet

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

func NicknameLTE added in v0.10.0

func NicknameLTE(v string) predicate.Pet

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

func NicknameNEQ added in v0.10.0

func NicknameNEQ(v string) predicate.Pet

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

func NicknameNotIn added in v0.10.0

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

NicknameNotIn applies the NotIn predicate on the "nickname" field.

func NicknameNotNil added in v0.10.0

func NicknameNotNil() predicate.Pet

NicknameNotNil applies the NotNil predicate on the "nickname" field.

func Not

func Not(p predicate.Pet) predicate.Pet

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Pet) predicate.Pet

Or groups predicates with the OR operator between them.

func UUID

func UUID(v uuid.UUID) predicate.Pet

UUID applies equality check predicate on the "uuid" field. It's identical to UUIDEQ.

func UUIDEQ

func UUIDEQ(v uuid.UUID) predicate.Pet

UUIDEQ applies the EQ predicate on the "uuid" field.

func UUIDGT

func UUIDGT(v uuid.UUID) predicate.Pet

UUIDGT applies the GT predicate on the "uuid" field.

func UUIDGTE

func UUIDGTE(v uuid.UUID) predicate.Pet

UUIDGTE applies the GTE predicate on the "uuid" field.

func UUIDIn

func UUIDIn(vs ...uuid.UUID) predicate.Pet

UUIDIn applies the In predicate on the "uuid" field.

func UUIDIsNil

func UUIDIsNil() predicate.Pet

UUIDIsNil applies the IsNil predicate on the "uuid" field.

func UUIDLT

func UUIDLT(v uuid.UUID) predicate.Pet

UUIDLT applies the LT predicate on the "uuid" field.

func UUIDLTE

func UUIDLTE(v uuid.UUID) predicate.Pet

UUIDLTE applies the LTE predicate on the "uuid" field.

func UUIDNEQ

func UUIDNEQ(v uuid.UUID) predicate.Pet

UUIDNEQ applies the NEQ predicate on the "uuid" field.

func UUIDNotIn

func UUIDNotIn(vs ...uuid.UUID) predicate.Pet

UUIDNotIn applies the NotIn predicate on the "uuid" field.

func UUIDNotNil

func UUIDNotNil() predicate.Pet

UUIDNotNil applies the NotNil predicate on the "uuid" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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