Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Category) predicate.Category
- func HasPets() predicate.Category
- func HasPetsWith(preds ...predicate.Pet) predicate.Category
- func ID(id int) predicate.Category
- func IDEQ(id int) predicate.Category
- func IDGT(id int) predicate.Category
- func IDGTE(id int) predicate.Category
- func IDIn(ids ...int) predicate.Category
- func IDLT(id int) predicate.Category
- func IDLTE(id int) predicate.Category
- func IDNEQ(id int) predicate.Category
- func IDNotIn(ids ...int) predicate.Category
- func Name(v string) predicate.Category
- func NameContains(v string) predicate.Category
- func NameContainsFold(v string) predicate.Category
- func NameEQ(v string) predicate.Category
- func NameEqualFold(v string) predicate.Category
- func NameGT(v string) predicate.Category
- func NameGTE(v string) predicate.Category
- func NameHasPrefix(v string) predicate.Category
- func NameHasSuffix(v string) predicate.Category
- func NameIn(vs ...string) predicate.Category
- func NameLT(v string) predicate.Category
- func NameLTE(v string) predicate.Category
- func NameNEQ(v string) predicate.Category
- func NameNotIn(vs ...string) predicate.Category
- func Not(p predicate.Category) predicate.Category
- func Or(predicates ...predicate.Category) predicate.Category
- func Readonly(v string) predicate.Category
- func ReadonlyContains(v string) predicate.Category
- func ReadonlyContainsFold(v string) predicate.Category
- func ReadonlyEQ(v string) predicate.Category
- func ReadonlyEqualFold(v string) predicate.Category
- func ReadonlyGT(v string) predicate.Category
- func ReadonlyGTE(v string) predicate.Category
- func ReadonlyHasPrefix(v string) predicate.Category
- func ReadonlyHasSuffix(v string) predicate.Category
- func ReadonlyIn(vs ...string) predicate.Category
- func ReadonlyLT(v string) predicate.Category
- func ReadonlyLTE(v string) predicate.Category
- func ReadonlyNEQ(v string) predicate.Category
- func ReadonlyNotIn(vs ...string) predicate.Category
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the category type in the database. Label = "category" // 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" // FieldReadonly holds the string denoting the readonly field in the database. FieldReadonly = "readonly" // EdgePets holds the string denoting the pets edge name in mutations. EdgePets = "pets" // Table holds the table name of the category in the database. Table = "categories" // PetsTable is the table that holds the pets relation/edge. The primary key declared below. PetsTable = "category_pets" // PetsInverseTable is the table name for the Pet entity. // It exists in this package in order to avoid circular dependency with the "pet" package. PetsInverseTable = "pets" )
Variables ¶
var Columns = []string{ FieldID, FieldName, FieldReadonly, }
Columns holds all SQL columns for category fields.
var ( // PetsPrimaryKey and PetsColumn2 are the table columns denoting the // primary key for the pets relation (M2M). PetsPrimaryKey = []string{"category_id", "pet_id"} )
Functions ¶
func HasPetsWith ¶
HasPetsWith applies the HasEdge predicate on the "pets" edge with a given conditions (other predicates).
func NameContains ¶
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEqualFold ¶
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameHasPrefix ¶
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func Readonly ¶
Readonly applies equality check predicate on the "readonly" field. It's identical to ReadonlyEQ.
func ReadonlyContains ¶
ReadonlyContains applies the Contains predicate on the "readonly" field.
func ReadonlyContainsFold ¶
ReadonlyContainsFold applies the ContainsFold predicate on the "readonly" field.
func ReadonlyEQ ¶
ReadonlyEQ applies the EQ predicate on the "readonly" field.
func ReadonlyEqualFold ¶
ReadonlyEqualFold applies the EqualFold predicate on the "readonly" field.
func ReadonlyGT ¶
ReadonlyGT applies the GT predicate on the "readonly" field.
func ReadonlyGTE ¶
ReadonlyGTE applies the GTE predicate on the "readonly" field.
func ReadonlyHasPrefix ¶
ReadonlyHasPrefix applies the HasPrefix predicate on the "readonly" field.
func ReadonlyHasSuffix ¶
ReadonlyHasSuffix applies the HasSuffix predicate on the "readonly" field.
func ReadonlyIn ¶
ReadonlyIn applies the In predicate on the "readonly" field.
func ReadonlyLT ¶
ReadonlyLT applies the LT predicate on the "readonly" field.
func ReadonlyLTE ¶
ReadonlyLTE applies the LTE predicate on the "readonly" field.
func ReadonlyNEQ ¶
ReadonlyNEQ applies the NEQ predicate on the "readonly" field.
func ReadonlyNotIn ¶
ReadonlyNotIn applies the NotIn predicate on the "readonly" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.