Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Trait) predicate.Trait
- func DescIsNil() predicate.Trait
- func DescNotNil() predicate.Trait
- func HasRace() predicate.Trait
- func HasRaceWith(preds ...predicate.Race) predicate.Trait
- func ID(id int) predicate.Trait
- func IDEQ(id int) predicate.Trait
- func IDGT(id int) predicate.Trait
- func IDGTE(id int) predicate.Trait
- func IDIn(ids ...int) predicate.Trait
- func IDLT(id int) predicate.Trait
- func IDLTE(id int) predicate.Trait
- func IDNEQ(id int) predicate.Trait
- func IDNotIn(ids ...int) predicate.Trait
- func Indx(v string) predicate.Trait
- func IndxContains(v string) predicate.Trait
- func IndxContainsFold(v string) predicate.Trait
- func IndxEQ(v string) predicate.Trait
- func IndxEqualFold(v string) predicate.Trait
- func IndxGT(v string) predicate.Trait
- func IndxGTE(v string) predicate.Trait
- func IndxHasPrefix(v string) predicate.Trait
- func IndxHasSuffix(v string) predicate.Trait
- func IndxIn(vs ...string) predicate.Trait
- func IndxLT(v string) predicate.Trait
- func IndxLTE(v string) predicate.Trait
- func IndxNEQ(v string) predicate.Trait
- func IndxNotIn(vs ...string) predicate.Trait
- func Name(v string) predicate.Trait
- func NameContains(v string) predicate.Trait
- func NameContainsFold(v string) predicate.Trait
- func NameEQ(v string) predicate.Trait
- func NameEqualFold(v string) predicate.Trait
- func NameGT(v string) predicate.Trait
- func NameGTE(v string) predicate.Trait
- func NameHasPrefix(v string) predicate.Trait
- func NameHasSuffix(v string) predicate.Trait
- func NameIn(vs ...string) predicate.Trait
- func NameLT(v string) predicate.Trait
- func NameLTE(v string) predicate.Trait
- func NameNEQ(v string) predicate.Trait
- func NameNotIn(vs ...string) predicate.Trait
- func Not(p predicate.Trait) predicate.Trait
- func Or(predicates ...predicate.Trait) predicate.Trait
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the trait type in the database. Label = "trait" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldIndx holds the string denoting the indx field in the database. FieldIndx = "indx" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldDesc holds the string denoting the desc field in the database. FieldDesc = "desc" // EdgeRace holds the string denoting the race edge name in mutations. EdgeRace = "race" // Table holds the table name of the trait in the database. Table = "traits" // RaceTable is the table that holds the race relation/edge. The primary key declared below. RaceTable = "race_traits" // RaceInverseTable is the table name for the Race entity. // It exists in this package in order to avoid circular dependency with the "race" package. RaceInverseTable = "races" )
Variables ¶
var ( // IndxValidator is a validator for the "indx" field. It is called by the builders before save. IndxValidator func(string) error // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error )
Columns holds all SQL columns for trait fields.
var ( // RacePrimaryKey and RaceColumn2 are the table columns denoting the // primary key for the race relation (M2M). RacePrimaryKey = []string{"race_id", "trait_id"} )
Functions ¶
func DescNotNil ¶
DescNotNil applies the NotNil predicate on the "desc" field.
func HasRaceWith ¶
HasRaceWith applies the HasEdge predicate on the "race" edge with a given conditions (other predicates).
func IndxContains ¶
IndxContains applies the Contains predicate on the "indx" field.
func IndxContainsFold ¶
IndxContainsFold applies the ContainsFold predicate on the "indx" field.
func IndxEqualFold ¶
IndxEqualFold applies the EqualFold predicate on the "indx" field.
func IndxHasPrefix ¶
IndxHasPrefix applies the HasPrefix predicate on the "indx" field.
func IndxHasSuffix ¶
IndxHasSuffix applies the HasSuffix predicate on the "indx" field.
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 ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the Trait queries.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByIndx ¶
func ByIndx(opts ...sql.OrderTermOption) OrderOption
ByIndx orders the results by the indx field.
func ByName ¶
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByRace ¶
func ByRace(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByRace orders the results by race terms.
func ByRaceCount ¶
func ByRaceCount(opts ...sql.OrderTermOption) OrderOption
ByRaceCount orders the results by race count.