Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.WithModifiedField) predicate.WithModifiedField
- func HasOwner() predicate.WithModifiedField
- func HasOwnerWith(preds ...predicate.User) predicate.WithModifiedField
- func ID(id int) predicate.WithModifiedField
- func IDEQ(id int) predicate.WithModifiedField
- func IDGT(id int) predicate.WithModifiedField
- func IDGTE(id int) predicate.WithModifiedField
- func IDIn(ids ...int) predicate.WithModifiedField
- func IDLT(id int) predicate.WithModifiedField
- func IDLTE(id int) predicate.WithModifiedField
- func IDNEQ(id int) predicate.WithModifiedField
- func IDNotIn(ids ...int) predicate.WithModifiedField
- func Name(v string) predicate.WithModifiedField
- func NameContains(v string) predicate.WithModifiedField
- func NameContainsFold(v string) predicate.WithModifiedField
- func NameEQ(v string) predicate.WithModifiedField
- func NameEqualFold(v string) predicate.WithModifiedField
- func NameGT(v string) predicate.WithModifiedField
- func NameGTE(v string) predicate.WithModifiedField
- func NameHasPrefix(v string) predicate.WithModifiedField
- func NameHasSuffix(v string) predicate.WithModifiedField
- func NameIn(vs ...string) predicate.WithModifiedField
- func NameLT(v string) predicate.WithModifiedField
- func NameLTE(v string) predicate.WithModifiedField
- func NameNEQ(v string) predicate.WithModifiedField
- func NameNotIn(vs ...string) predicate.WithModifiedField
- func Not(p predicate.WithModifiedField) predicate.WithModifiedField
- func Or(predicates ...predicate.WithModifiedField) predicate.WithModifiedField
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the withmodifiedfield type in the database. Label = "with_modified_field" // 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" // EdgeOwner holds the string denoting the owner edge name in mutations. EdgeOwner = "owner" // Table holds the table name of the withmodifiedfield in the database. Table = "with_modified_fields" // OwnerTable is the table that holds the owner relation/edge. OwnerTable = "with_modified_fields" // 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 = "with_modified_field_owner" )
Variables ¶
var Columns = []string{ FieldID, FieldName, }
Columns holds all SQL columns for withmodifiedfield fields.
var ForeignKeys = []string{
"with_modified_field_owner",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "with_modified_fields" table and are not defined as standalone fields in the schema.
var ( // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error )
Functions ¶
func And ¶
func And(predicates ...predicate.WithModifiedField) predicate.WithModifiedField
And groups predicates with the AND operator between them.
func HasOwner ¶
func HasOwner() predicate.WithModifiedField
HasOwner applies the HasEdge predicate on the "owner" edge.
func HasOwnerWith ¶
func HasOwnerWith(preds ...predicate.User) predicate.WithModifiedField
HasOwnerWith applies the HasEdge predicate on the "owner" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id int) predicate.WithModifiedField
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.WithModifiedField
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.WithModifiedField
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.WithModifiedField
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.WithModifiedField
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.WithModifiedField
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.WithModifiedField
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.WithModifiedField
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.WithModifiedField
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.WithModifiedField
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.WithModifiedField
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.WithModifiedField
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.WithModifiedField
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.WithModifiedField
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.WithModifiedField
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.WithModifiedField
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.WithModifiedField
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.WithModifiedField
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.WithModifiedField
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.WithModifiedField
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.WithModifiedField
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.WithModifiedField
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.WithModifiedField) predicate.WithModifiedField
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.WithModifiedField) predicate.WithModifiedField
Or groups predicates with the OR operator between them.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.