Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.MixinID) predicate.MixinID
- func ID(id uuid.UUID) predicate.MixinID
- func IDEQ(id uuid.UUID) predicate.MixinID
- func IDGT(id uuid.UUID) predicate.MixinID
- func IDGTE(id uuid.UUID) predicate.MixinID
- func IDIn(ids ...uuid.UUID) predicate.MixinID
- func IDLT(id uuid.UUID) predicate.MixinID
- func IDLTE(id uuid.UUID) predicate.MixinID
- func IDNEQ(id uuid.UUID) predicate.MixinID
- func IDNotIn(ids ...uuid.UUID) predicate.MixinID
- func MixinField(v string) predicate.MixinID
- func MixinFieldContains(v string) predicate.MixinID
- func MixinFieldContainsFold(v string) predicate.MixinID
- func MixinFieldEQ(v string) predicate.MixinID
- func MixinFieldEqualFold(v string) predicate.MixinID
- func MixinFieldGT(v string) predicate.MixinID
- func MixinFieldGTE(v string) predicate.MixinID
- func MixinFieldHasPrefix(v string) predicate.MixinID
- func MixinFieldHasSuffix(v string) predicate.MixinID
- func MixinFieldIn(vs ...string) predicate.MixinID
- func MixinFieldLT(v string) predicate.MixinID
- func MixinFieldLTE(v string) predicate.MixinID
- func MixinFieldNEQ(v string) predicate.MixinID
- func MixinFieldNotIn(vs ...string) predicate.MixinID
- func Not(p predicate.MixinID) predicate.MixinID
- func Or(predicates ...predicate.MixinID) predicate.MixinID
- func SomeField(v string) predicate.MixinID
- func SomeFieldContains(v string) predicate.MixinID
- func SomeFieldContainsFold(v string) predicate.MixinID
- func SomeFieldEQ(v string) predicate.MixinID
- func SomeFieldEqualFold(v string) predicate.MixinID
- func SomeFieldGT(v string) predicate.MixinID
- func SomeFieldGTE(v string) predicate.MixinID
- func SomeFieldHasPrefix(v string) predicate.MixinID
- func SomeFieldHasSuffix(v string) predicate.MixinID
- func SomeFieldIn(vs ...string) predicate.MixinID
- func SomeFieldLT(v string) predicate.MixinID
- func SomeFieldLTE(v string) predicate.MixinID
- func SomeFieldNEQ(v string) predicate.MixinID
- func SomeFieldNotIn(vs ...string) predicate.MixinID
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the mixinid type in the database. Label = "mixin_id" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldSomeField holds the string denoting the some_field field in the database. FieldSomeField = "some_field" // FieldMixinField holds the string denoting the mixin_field field in the database. FieldMixinField = "mixin_field" // Table holds the table name of the mixinid in the database. Table = "mixin_ids" )
Variables ¶
var Columns = []string{ FieldID, FieldSomeField, FieldMixinField, }
Columns holds all SQL columns for mixinid fields.
var ( // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
Functions ¶
func MixinField ¶
MixinField applies equality check predicate on the "mixin_field" field. It's identical to MixinFieldEQ.
func MixinFieldContains ¶
MixinFieldContains applies the Contains predicate on the "mixin_field" field.
func MixinFieldContainsFold ¶
MixinFieldContainsFold applies the ContainsFold predicate on the "mixin_field" field.
func MixinFieldEQ ¶
MixinFieldEQ applies the EQ predicate on the "mixin_field" field.
func MixinFieldEqualFold ¶
MixinFieldEqualFold applies the EqualFold predicate on the "mixin_field" field.
func MixinFieldGT ¶
MixinFieldGT applies the GT predicate on the "mixin_field" field.
func MixinFieldGTE ¶
MixinFieldGTE applies the GTE predicate on the "mixin_field" field.
func MixinFieldHasPrefix ¶
MixinFieldHasPrefix applies the HasPrefix predicate on the "mixin_field" field.
func MixinFieldHasSuffix ¶
MixinFieldHasSuffix applies the HasSuffix predicate on the "mixin_field" field.
func MixinFieldIn ¶
MixinFieldIn applies the In predicate on the "mixin_field" field.
func MixinFieldLT ¶
MixinFieldLT applies the LT predicate on the "mixin_field" field.
func MixinFieldLTE ¶
MixinFieldLTE applies the LTE predicate on the "mixin_field" field.
func MixinFieldNEQ ¶
MixinFieldNEQ applies the NEQ predicate on the "mixin_field" field.
func MixinFieldNotIn ¶
MixinFieldNotIn applies the NotIn predicate on the "mixin_field" field.
func SomeField ¶
SomeField applies equality check predicate on the "some_field" field. It's identical to SomeFieldEQ.
func SomeFieldContains ¶
SomeFieldContains applies the Contains predicate on the "some_field" field.
func SomeFieldContainsFold ¶
SomeFieldContainsFold applies the ContainsFold predicate on the "some_field" field.
func SomeFieldEQ ¶
SomeFieldEQ applies the EQ predicate on the "some_field" field.
func SomeFieldEqualFold ¶
SomeFieldEqualFold applies the EqualFold predicate on the "some_field" field.
func SomeFieldGT ¶
SomeFieldGT applies the GT predicate on the "some_field" field.
func SomeFieldGTE ¶
SomeFieldGTE applies the GTE predicate on the "some_field" field.
func SomeFieldHasPrefix ¶
SomeFieldHasPrefix applies the HasPrefix predicate on the "some_field" field.
func SomeFieldHasSuffix ¶
SomeFieldHasSuffix applies the HasSuffix predicate on the "some_field" field.
func SomeFieldIn ¶
SomeFieldIn applies the In predicate on the "some_field" field.
func SomeFieldLT ¶
SomeFieldLT applies the LT predicate on the "some_field" field.
func SomeFieldLTE ¶
SomeFieldLTE applies the LTE predicate on the "some_field" field.
func SomeFieldNEQ ¶
SomeFieldNEQ applies the NEQ predicate on the "some_field" field.
func SomeFieldNotIn ¶
SomeFieldNotIn applies the NotIn predicate on the "some_field" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.