pet

package
v0.5.4 Latest Latest
Warning

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

Go to latest
Published: Jan 6, 2021 License: Apache-2.0 Imports: 3 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"

	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeCars holds the string denoting the cars edge name in mutations.
	EdgeCars = "cars"
	// EdgeFriends holds the string denoting the friends edge name in mutations.
	EdgeFriends = "friends"
	// EdgeBestFriend holds the string denoting the best_friend edge name in mutations.
	EdgeBestFriend = "best_friend"

	// UserFieldID holds the string denoting the ID field of the User.
	UserFieldID = "oid"
	// Table holds the table name of the pet in the database.
	Table = "pets"
	// OwnerTable is the table the holds the owner relation/edge.
	OwnerTable = "pets"
	// OwnerInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	OwnerInverseTable = "users"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "user_pets"
	// CarsTable is the table the holds the cars relation/edge.
	CarsTable = "cars"
	// CarsInverseTable is the table name for the Car entity.
	// It exists in this package in order to avoid circular dependency with the "car" package.
	CarsInverseTable = "cars"
	// CarsColumn is the table column denoting the cars relation/edge.
	CarsColumn = "pet_cars"
	// FriendsTable is the table the holds the friends relation/edge. The primary key declared below.
	FriendsTable = "pet_friends"
	// BestFriendTable is the table the holds the best_friend relation/edge.
	BestFriendTable = "pets"
	// BestFriendColumn is the table column denoting the best_friend relation/edge.
	BestFriendColumn = "pet_best_friend"
)

Variables

View Source
var Columns = []string{
	FieldID,
}

Columns holds all SQL columns for pet fields.

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

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

View Source
var (
	// FriendsPrimaryKey and FriendsColumn2 are the table columns denoting the
	// primary key for the friends relation (M2M).
	FriendsPrimaryKey = []string{"pet_id", "friend_id"}
)
View Source
var (
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Functions

func And

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

And groups predicates with the AND operator between them.

func HasBestFriend

func HasBestFriend() predicate.Pet

HasBestFriend applies the HasEdge predicate on the "best_friend" edge.

func HasBestFriendWith

func HasBestFriendWith(preds ...predicate.Pet) predicate.Pet

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

func HasCars

func HasCars() predicate.Pet

HasCars applies the HasEdge predicate on the "cars" edge.

func HasCarsWith

func HasCarsWith(preds ...predicate.Car) predicate.Pet

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

func HasFriends

func HasFriends() predicate.Pet

HasFriends applies the HasEdge predicate on the "friends" edge.

func HasFriendsWith

func HasFriendsWith(preds ...predicate.Pet) predicate.Pet

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

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 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 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 ValidColumn added in v0.4.3

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