Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.DependsOnSkipped) predicate.DependsOnSkipped
- func HasSkipped() predicate.DependsOnSkipped
- func HasSkippedWith(preds ...predicate.ImplicitSkippedMessage) predicate.DependsOnSkipped
- func ID(id int) predicate.DependsOnSkipped
- func IDEQ(id int) predicate.DependsOnSkipped
- func IDGT(id int) predicate.DependsOnSkipped
- func IDGTE(id int) predicate.DependsOnSkipped
- func IDIn(ids ...int) predicate.DependsOnSkipped
- func IDLT(id int) predicate.DependsOnSkipped
- func IDLTE(id int) predicate.DependsOnSkipped
- func IDNEQ(id int) predicate.DependsOnSkipped
- func IDNotIn(ids ...int) predicate.DependsOnSkipped
- func Name(v string) predicate.DependsOnSkipped
- func NameContains(v string) predicate.DependsOnSkipped
- func NameContainsFold(v string) predicate.DependsOnSkipped
- func NameEQ(v string) predicate.DependsOnSkipped
- func NameEqualFold(v string) predicate.DependsOnSkipped
- func NameGT(v string) predicate.DependsOnSkipped
- func NameGTE(v string) predicate.DependsOnSkipped
- func NameHasPrefix(v string) predicate.DependsOnSkipped
- func NameHasSuffix(v string) predicate.DependsOnSkipped
- func NameIn(vs ...string) predicate.DependsOnSkipped
- func NameLT(v string) predicate.DependsOnSkipped
- func NameLTE(v string) predicate.DependsOnSkipped
- func NameNEQ(v string) predicate.DependsOnSkipped
- func NameNotIn(vs ...string) predicate.DependsOnSkipped
- func Not(p predicate.DependsOnSkipped) predicate.DependsOnSkipped
- func Or(predicates ...predicate.DependsOnSkipped) predicate.DependsOnSkipped
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the dependsonskipped type in the database. Label = "depends_on_skipped" // 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" // EdgeSkipped holds the string denoting the skipped edge name in mutations. EdgeSkipped = "skipped" // Table holds the table name of the dependsonskipped in the database. Table = "depends_on_skippeds" // SkippedTable is the table that holds the skipped relation/edge. SkippedTable = "implicit_skipped_messages" // SkippedInverseTable is the table name for the ImplicitSkippedMessage entity. // It exists in this package in order to avoid circular dependency with the "implicitskippedmessage" package. SkippedInverseTable = "implicit_skipped_messages" // SkippedColumn is the table column denoting the skipped relation/edge. SkippedColumn = "depends_on_skipped_skipped" )
Variables ¶
var Columns = []string{ FieldID, FieldName, }
Columns holds all SQL columns for dependsonskipped fields.
Functions ¶
func And ¶
func And(predicates ...predicate.DependsOnSkipped) predicate.DependsOnSkipped
And groups predicates with the AND operator between them.
func HasSkipped ¶
func HasSkipped() predicate.DependsOnSkipped
HasSkipped applies the HasEdge predicate on the "skipped" edge.
func HasSkippedWith ¶
func HasSkippedWith(preds ...predicate.ImplicitSkippedMessage) predicate.DependsOnSkipped
HasSkippedWith applies the HasEdge predicate on the "skipped" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id int) predicate.DependsOnSkipped
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.DependsOnSkipped
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.DependsOnSkipped
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.DependsOnSkipped
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.DependsOnSkipped
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.DependsOnSkipped
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.DependsOnSkipped
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.DependsOnSkipped
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.DependsOnSkipped
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.DependsOnSkipped
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.DependsOnSkipped
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.DependsOnSkipped
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.DependsOnSkipped
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.DependsOnSkipped
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.DependsOnSkipped
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.DependsOnSkipped
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.DependsOnSkipped
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.DependsOnSkipped
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.DependsOnSkipped
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.DependsOnSkipped
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.DependsOnSkipped
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.DependsOnSkipped
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.DependsOnSkipped) predicate.DependsOnSkipped
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.DependsOnSkipped) predicate.DependsOnSkipped
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.