Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.MessageWithFieldOne) predicate.MessageWithFieldOne
- func FieldOne(v int32) predicate.MessageWithFieldOne
- func FieldOneEQ(v int32) predicate.MessageWithFieldOne
- func FieldOneGT(v int32) predicate.MessageWithFieldOne
- func FieldOneGTE(v int32) predicate.MessageWithFieldOne
- func FieldOneIn(vs ...int32) predicate.MessageWithFieldOne
- func FieldOneLT(v int32) predicate.MessageWithFieldOne
- func FieldOneLTE(v int32) predicate.MessageWithFieldOne
- func FieldOneNEQ(v int32) predicate.MessageWithFieldOne
- func FieldOneNotIn(vs ...int32) predicate.MessageWithFieldOne
- func ID(id int) predicate.MessageWithFieldOne
- func IDEQ(id int) predicate.MessageWithFieldOne
- func IDGT(id int) predicate.MessageWithFieldOne
- func IDGTE(id int) predicate.MessageWithFieldOne
- func IDIn(ids ...int) predicate.MessageWithFieldOne
- func IDLT(id int) predicate.MessageWithFieldOne
- func IDLTE(id int) predicate.MessageWithFieldOne
- func IDNEQ(id int) predicate.MessageWithFieldOne
- func IDNotIn(ids ...int) predicate.MessageWithFieldOne
- func Not(p predicate.MessageWithFieldOne) predicate.MessageWithFieldOne
- func Or(predicates ...predicate.MessageWithFieldOne) predicate.MessageWithFieldOne
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the messagewithfieldone type in the database. Label = "message_with_field_one" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldFieldOne holds the string denoting the field_one field in the database. FieldFieldOne = "field_one" // Table holds the table name of the messagewithfieldone in the database. Table = "message_with_field_ones" )
Variables ¶
var Columns = []string{ FieldID, FieldFieldOne, }
Columns holds all SQL columns for messagewithfieldone fields.
Functions ¶
func And ¶
func And(predicates ...predicate.MessageWithFieldOne) predicate.MessageWithFieldOne
And groups predicates with the AND operator between them.
func FieldOne ¶
func FieldOne(v int32) predicate.MessageWithFieldOne
FieldOne applies equality check predicate on the "field_one" field. It's identical to FieldOneEQ.
func FieldOneEQ ¶
func FieldOneEQ(v int32) predicate.MessageWithFieldOne
FieldOneEQ applies the EQ predicate on the "field_one" field.
func FieldOneGT ¶
func FieldOneGT(v int32) predicate.MessageWithFieldOne
FieldOneGT applies the GT predicate on the "field_one" field.
func FieldOneGTE ¶
func FieldOneGTE(v int32) predicate.MessageWithFieldOne
FieldOneGTE applies the GTE predicate on the "field_one" field.
func FieldOneIn ¶
func FieldOneIn(vs ...int32) predicate.MessageWithFieldOne
FieldOneIn applies the In predicate on the "field_one" field.
func FieldOneLT ¶
func FieldOneLT(v int32) predicate.MessageWithFieldOne
FieldOneLT applies the LT predicate on the "field_one" field.
func FieldOneLTE ¶
func FieldOneLTE(v int32) predicate.MessageWithFieldOne
FieldOneLTE applies the LTE predicate on the "field_one" field.
func FieldOneNEQ ¶
func FieldOneNEQ(v int32) predicate.MessageWithFieldOne
FieldOneNEQ applies the NEQ predicate on the "field_one" field.
func FieldOneNotIn ¶
func FieldOneNotIn(vs ...int32) predicate.MessageWithFieldOne
FieldOneNotIn applies the NotIn predicate on the "field_one" field.
func ID ¶
func ID(id int) predicate.MessageWithFieldOne
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id int) predicate.MessageWithFieldOne
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.MessageWithFieldOne
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.MessageWithFieldOne
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.MessageWithFieldOne
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.MessageWithFieldOne
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.MessageWithFieldOne
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.MessageWithFieldOne
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.MessageWithFieldOne
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.MessageWithFieldOne) predicate.MessageWithFieldOne
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.MessageWithFieldOne) predicate.MessageWithFieldOne
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 ¶
type OrderOption ¶ added in v0.4.1
OrderOption defines the ordering options for the MessageWithFieldOne queries.
func ByFieldOne ¶ added in v0.4.0
func ByFieldOne(opts ...sql.OrderTermOption) OrderOption
ByFieldOne orders the results by the field_one field.
func ByID ¶ added in v0.4.0
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.