Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.DuplicateNumberMessage) predicate.DuplicateNumberMessage
- func Hello(v string) predicate.DuplicateNumberMessage
- func HelloContains(v string) predicate.DuplicateNumberMessage
- func HelloContainsFold(v string) predicate.DuplicateNumberMessage
- func HelloEQ(v string) predicate.DuplicateNumberMessage
- func HelloEqualFold(v string) predicate.DuplicateNumberMessage
- func HelloGT(v string) predicate.DuplicateNumberMessage
- func HelloGTE(v string) predicate.DuplicateNumberMessage
- func HelloHasPrefix(v string) predicate.DuplicateNumberMessage
- func HelloHasSuffix(v string) predicate.DuplicateNumberMessage
- func HelloIn(vs ...string) predicate.DuplicateNumberMessage
- func HelloLT(v string) predicate.DuplicateNumberMessage
- func HelloLTE(v string) predicate.DuplicateNumberMessage
- func HelloNEQ(v string) predicate.DuplicateNumberMessage
- func HelloNotIn(vs ...string) predicate.DuplicateNumberMessage
- func ID(id int) predicate.DuplicateNumberMessage
- func IDEQ(id int) predicate.DuplicateNumberMessage
- func IDGT(id int) predicate.DuplicateNumberMessage
- func IDGTE(id int) predicate.DuplicateNumberMessage
- func IDIn(ids ...int) predicate.DuplicateNumberMessage
- func IDLT(id int) predicate.DuplicateNumberMessage
- func IDLTE(id int) predicate.DuplicateNumberMessage
- func IDNEQ(id int) predicate.DuplicateNumberMessage
- func IDNotIn(ids ...int) predicate.DuplicateNumberMessage
- func Not(p predicate.DuplicateNumberMessage) predicate.DuplicateNumberMessage
- func Or(predicates ...predicate.DuplicateNumberMessage) predicate.DuplicateNumberMessage
- func ValidColumn(column string) bool
- func World(v string) predicate.DuplicateNumberMessage
- func WorldContains(v string) predicate.DuplicateNumberMessage
- func WorldContainsFold(v string) predicate.DuplicateNumberMessage
- func WorldEQ(v string) predicate.DuplicateNumberMessage
- func WorldEqualFold(v string) predicate.DuplicateNumberMessage
- func WorldGT(v string) predicate.DuplicateNumberMessage
- func WorldGTE(v string) predicate.DuplicateNumberMessage
- func WorldHasPrefix(v string) predicate.DuplicateNumberMessage
- func WorldHasSuffix(v string) predicate.DuplicateNumberMessage
- func WorldIn(vs ...string) predicate.DuplicateNumberMessage
- func WorldLT(v string) predicate.DuplicateNumberMessage
- func WorldLTE(v string) predicate.DuplicateNumberMessage
- func WorldNEQ(v string) predicate.DuplicateNumberMessage
- func WorldNotIn(vs ...string) predicate.DuplicateNumberMessage
Constants ¶
const ( // Label holds the string label denoting the duplicatenumbermessage type in the database. Label = "duplicate_number_message" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldHello holds the string denoting the hello field in the database. FieldHello = "hello" // FieldWorld holds the string denoting the world field in the database. FieldWorld = "world" // Table holds the table name of the duplicatenumbermessage in the database. Table = "duplicate_number_messages" )
Variables ¶
var Columns = []string{ FieldID, FieldHello, FieldWorld, }
Columns holds all SQL columns for duplicatenumbermessage fields.
Functions ¶
func And ¶
func And(predicates ...predicate.DuplicateNumberMessage) predicate.DuplicateNumberMessage
And groups predicates with the AND operator between them.
func Hello ¶
func Hello(v string) predicate.DuplicateNumberMessage
Hello applies equality check predicate on the "hello" field. It's identical to HelloEQ.
func HelloContains ¶
func HelloContains(v string) predicate.DuplicateNumberMessage
HelloContains applies the Contains predicate on the "hello" field.
func HelloContainsFold ¶
func HelloContainsFold(v string) predicate.DuplicateNumberMessage
HelloContainsFold applies the ContainsFold predicate on the "hello" field.
func HelloEQ ¶
func HelloEQ(v string) predicate.DuplicateNumberMessage
HelloEQ applies the EQ predicate on the "hello" field.
func HelloEqualFold ¶
func HelloEqualFold(v string) predicate.DuplicateNumberMessage
HelloEqualFold applies the EqualFold predicate on the "hello" field.
func HelloGT ¶
func HelloGT(v string) predicate.DuplicateNumberMessage
HelloGT applies the GT predicate on the "hello" field.
func HelloGTE ¶
func HelloGTE(v string) predicate.DuplicateNumberMessage
HelloGTE applies the GTE predicate on the "hello" field.
func HelloHasPrefix ¶
func HelloHasPrefix(v string) predicate.DuplicateNumberMessage
HelloHasPrefix applies the HasPrefix predicate on the "hello" field.
func HelloHasSuffix ¶
func HelloHasSuffix(v string) predicate.DuplicateNumberMessage
HelloHasSuffix applies the HasSuffix predicate on the "hello" field.
func HelloIn ¶
func HelloIn(vs ...string) predicate.DuplicateNumberMessage
HelloIn applies the In predicate on the "hello" field.
func HelloLT ¶
func HelloLT(v string) predicate.DuplicateNumberMessage
HelloLT applies the LT predicate on the "hello" field.
func HelloLTE ¶
func HelloLTE(v string) predicate.DuplicateNumberMessage
HelloLTE applies the LTE predicate on the "hello" field.
func HelloNEQ ¶
func HelloNEQ(v string) predicate.DuplicateNumberMessage
HelloNEQ applies the NEQ predicate on the "hello" field.
func HelloNotIn ¶
func HelloNotIn(vs ...string) predicate.DuplicateNumberMessage
HelloNotIn applies the NotIn predicate on the "hello" field.
func ID ¶
func ID(id int) predicate.DuplicateNumberMessage
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id int) predicate.DuplicateNumberMessage
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.DuplicateNumberMessage
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.DuplicateNumberMessage
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.DuplicateNumberMessage
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.DuplicateNumberMessage
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.DuplicateNumberMessage
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.DuplicateNumberMessage
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.DuplicateNumberMessage
IDNotIn applies the NotIn predicate on the ID field.
func Or ¶
func Or(predicates ...predicate.DuplicateNumberMessage) predicate.DuplicateNumberMessage
Or groups predicates with the OR operator between them.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func World ¶
func World(v string) predicate.DuplicateNumberMessage
World applies equality check predicate on the "world" field. It's identical to WorldEQ.
func WorldContains ¶
func WorldContains(v string) predicate.DuplicateNumberMessage
WorldContains applies the Contains predicate on the "world" field.
func WorldContainsFold ¶
func WorldContainsFold(v string) predicate.DuplicateNumberMessage
WorldContainsFold applies the ContainsFold predicate on the "world" field.
func WorldEQ ¶
func WorldEQ(v string) predicate.DuplicateNumberMessage
WorldEQ applies the EQ predicate on the "world" field.
func WorldEqualFold ¶
func WorldEqualFold(v string) predicate.DuplicateNumberMessage
WorldEqualFold applies the EqualFold predicate on the "world" field.
func WorldGT ¶
func WorldGT(v string) predicate.DuplicateNumberMessage
WorldGT applies the GT predicate on the "world" field.
func WorldGTE ¶
func WorldGTE(v string) predicate.DuplicateNumberMessage
WorldGTE applies the GTE predicate on the "world" field.
func WorldHasPrefix ¶
func WorldHasPrefix(v string) predicate.DuplicateNumberMessage
WorldHasPrefix applies the HasPrefix predicate on the "world" field.
func WorldHasSuffix ¶
func WorldHasSuffix(v string) predicate.DuplicateNumberMessage
WorldHasSuffix applies the HasSuffix predicate on the "world" field.
func WorldIn ¶
func WorldIn(vs ...string) predicate.DuplicateNumberMessage
WorldIn applies the In predicate on the "world" field.
func WorldLT ¶
func WorldLT(v string) predicate.DuplicateNumberMessage
WorldLT applies the LT predicate on the "world" field.
func WorldLTE ¶
func WorldLTE(v string) predicate.DuplicateNumberMessage
WorldLTE applies the LTE predicate on the "world" field.
func WorldNEQ ¶
func WorldNEQ(v string) predicate.DuplicateNumberMessage
WorldNEQ applies the NEQ predicate on the "world" field.
func WorldNotIn ¶
func WorldNotIn(vs ...string) predicate.DuplicateNumberMessage
WorldNotIn applies the NotIn predicate on the "world" field.
Types ¶
This section is empty.