Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.InvalidFieldMessage) predicate.InvalidFieldMessage
- func ID(id int) predicate.InvalidFieldMessage
- func IDEQ(id int) predicate.InvalidFieldMessage
- func IDGT(id int) predicate.InvalidFieldMessage
- func IDGTE(id int) predicate.InvalidFieldMessage
- func IDIn(ids ...int) predicate.InvalidFieldMessage
- func IDLT(id int) predicate.InvalidFieldMessage
- func IDLTE(id int) predicate.InvalidFieldMessage
- func IDNEQ(id int) predicate.InvalidFieldMessage
- func IDNotIn(ids ...int) predicate.InvalidFieldMessage
- func Not(p predicate.InvalidFieldMessage) predicate.InvalidFieldMessage
- func Or(predicates ...predicate.InvalidFieldMessage) predicate.InvalidFieldMessage
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the invalidfieldmessage type in the database. Label = "invalid_field_message" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldJSON holds the string denoting the json field in the database. FieldJSON = "json" // Table holds the table name of the invalidfieldmessage in the database. Table = "invalid_field_messages" )
Variables ¶
var Columns = []string{ FieldID, FieldJSON, }
Columns holds all SQL columns for invalidfieldmessage fields.
Functions ¶
func And ¶
func And(predicates ...predicate.InvalidFieldMessage) predicate.InvalidFieldMessage
And groups predicates with the AND operator between them.
func ID ¶
func ID(id int) predicate.InvalidFieldMessage
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id int) predicate.InvalidFieldMessage
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.InvalidFieldMessage
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.InvalidFieldMessage
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.InvalidFieldMessage
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.InvalidFieldMessage
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.InvalidFieldMessage
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.InvalidFieldMessage
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.InvalidFieldMessage
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.InvalidFieldMessage) predicate.InvalidFieldMessage
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.InvalidFieldMessage) predicate.InvalidFieldMessage
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.