Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.ItemTranslation) predicate.ItemTranslation
- func Content(v string) predicate.ItemTranslation
- func ContentContains(v string) predicate.ItemTranslation
- func ContentContainsFold(v string) predicate.ItemTranslation
- func ContentEQ(v string) predicate.ItemTranslation
- func ContentEqualFold(v string) predicate.ItemTranslation
- func ContentGT(v string) predicate.ItemTranslation
- func ContentGTE(v string) predicate.ItemTranslation
- func ContentHasPrefix(v string) predicate.ItemTranslation
- func ContentHasSuffix(v string) predicate.ItemTranslation
- func ContentIn(vs ...string) predicate.ItemTranslation
- func ContentLT(v string) predicate.ItemTranslation
- func ContentLTE(v string) predicate.ItemTranslation
- func ContentNEQ(v string) predicate.ItemTranslation
- func ContentNotIn(vs ...string) predicate.ItemTranslation
- func HasItem() predicate.ItemTranslation
- func HasItemWith(preds ...predicate.Item) predicate.ItemTranslation
- func ID(id uuid.UUID) predicate.ItemTranslation
- func IDEQ(id uuid.UUID) predicate.ItemTranslation
- func IDGT(id uuid.UUID) predicate.ItemTranslation
- func IDGTE(id uuid.UUID) predicate.ItemTranslation
- func IDIn(ids ...uuid.UUID) predicate.ItemTranslation
- func IDLT(id uuid.UUID) predicate.ItemTranslation
- func IDLTE(id uuid.UUID) predicate.ItemTranslation
- func IDNEQ(id uuid.UUID) predicate.ItemTranslation
- func IDNotIn(ids ...uuid.UUID) predicate.ItemTranslation
- func LocaleEQ(v Locale) predicate.ItemTranslation
- func LocaleIn(vs ...Locale) predicate.ItemTranslation
- func LocaleNEQ(v Locale) predicate.ItemTranslation
- func LocaleNotIn(vs ...Locale) predicate.ItemTranslation
- func LocaleValidator(l Locale) error
- func Not(p predicate.ItemTranslation) predicate.ItemTranslation
- func Or(predicates ...predicate.ItemTranslation) predicate.ItemTranslation
- func ValidColumn(column string) bool
- type Locale
Constants ¶
const ( // Label holds the string label denoting the itemtranslation type in the database. Label = "item_translation" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldLocale holds the string denoting the locale field in the database. FieldLocale = "locale" // FieldContent holds the string denoting the content field in the database. FieldContent = "content" // EdgeItem holds the string denoting the item edge name in mutations. EdgeItem = "item" // Table holds the table name of the itemtranslation in the database. Table = "item_translations" // ItemTable is the table that holds the item relation/edge. ItemTable = "item_translations" // ItemInverseTable is the table name for the Item entity. // It exists in this package in order to avoid circular dependency with the "item" package. ItemInverseTable = "items" // ItemColumn is the table column denoting the item relation/edge. ItemColumn = "item_translations" )
Variables ¶
var ( // ContentValidator is a validator for the "content" field. It is called by the builders before save. ContentValidator func(string) error // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldLocale, FieldContent, }
Columns holds all SQL columns for itemtranslation fields.
var ForeignKeys = []string{
"item_translations",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "item_translations" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.ItemTranslation) predicate.ItemTranslation
And groups predicates with the AND operator between them.
func Content ¶
func Content(v string) predicate.ItemTranslation
Content applies equality check predicate on the "content" field. It's identical to ContentEQ.
func ContentContains ¶
func ContentContains(v string) predicate.ItemTranslation
ContentContains applies the Contains predicate on the "content" field.
func ContentContainsFold ¶
func ContentContainsFold(v string) predicate.ItemTranslation
ContentContainsFold applies the ContainsFold predicate on the "content" field.
func ContentEQ ¶
func ContentEQ(v string) predicate.ItemTranslation
ContentEQ applies the EQ predicate on the "content" field.
func ContentEqualFold ¶
func ContentEqualFold(v string) predicate.ItemTranslation
ContentEqualFold applies the EqualFold predicate on the "content" field.
func ContentGT ¶
func ContentGT(v string) predicate.ItemTranslation
ContentGT applies the GT predicate on the "content" field.
func ContentGTE ¶
func ContentGTE(v string) predicate.ItemTranslation
ContentGTE applies the GTE predicate on the "content" field.
func ContentHasPrefix ¶
func ContentHasPrefix(v string) predicate.ItemTranslation
ContentHasPrefix applies the HasPrefix predicate on the "content" field.
func ContentHasSuffix ¶
func ContentHasSuffix(v string) predicate.ItemTranslation
ContentHasSuffix applies the HasSuffix predicate on the "content" field.
func ContentIn ¶
func ContentIn(vs ...string) predicate.ItemTranslation
ContentIn applies the In predicate on the "content" field.
func ContentLT ¶
func ContentLT(v string) predicate.ItemTranslation
ContentLT applies the LT predicate on the "content" field.
func ContentLTE ¶
func ContentLTE(v string) predicate.ItemTranslation
ContentLTE applies the LTE predicate on the "content" field.
func ContentNEQ ¶
func ContentNEQ(v string) predicate.ItemTranslation
ContentNEQ applies the NEQ predicate on the "content" field.
func ContentNotIn ¶
func ContentNotIn(vs ...string) predicate.ItemTranslation
ContentNotIn applies the NotIn predicate on the "content" field.
func HasItem ¶
func HasItem() predicate.ItemTranslation
HasItem applies the HasEdge predicate on the "item" edge.
func HasItemWith ¶
func HasItemWith(preds ...predicate.Item) predicate.ItemTranslation
HasItemWith applies the HasEdge predicate on the "item" edge with a given conditions (other predicates).
func ID ¶
func ID(id uuid.UUID) predicate.ItemTranslation
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.ItemTranslation
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.ItemTranslation
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.ItemTranslation
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.ItemTranslation
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.ItemTranslation
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.ItemTranslation
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.ItemTranslation
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.ItemTranslation
IDNotIn applies the NotIn predicate on the ID field.
func LocaleEQ ¶
func LocaleEQ(v Locale) predicate.ItemTranslation
LocaleEQ applies the EQ predicate on the "locale" field.
func LocaleIn ¶
func LocaleIn(vs ...Locale) predicate.ItemTranslation
LocaleIn applies the In predicate on the "locale" field.
func LocaleNEQ ¶
func LocaleNEQ(v Locale) predicate.ItemTranslation
LocaleNEQ applies the NEQ predicate on the "locale" field.
func LocaleNotIn ¶
func LocaleNotIn(vs ...Locale) predicate.ItemTranslation
LocaleNotIn applies the NotIn predicate on the "locale" field.
func LocaleValidator ¶
LocaleValidator is a validator for the "locale" field enum values. It is called by the builders before save.
func Not ¶
func Not(p predicate.ItemTranslation) predicate.ItemTranslation
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.ItemTranslation) predicate.ItemTranslation
Or groups predicates with the OR operator between them.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).