Documentation
¶
Index ¶
- Constants
- Variables
- func Action(v string) predicate.Action
- func ActionContains(v string) predicate.Action
- func ActionContainsFold(v string) predicate.Action
- func ActionEQ(v string) predicate.Action
- func ActionEqualFold(v string) predicate.Action
- func ActionGT(v string) predicate.Action
- func ActionGTE(v string) predicate.Action
- func ActionHasPrefix(v string) predicate.Action
- func ActionHasSuffix(v string) predicate.Action
- func ActionIn(vs ...string) predicate.Action
- func ActionLT(v string) predicate.Action
- func ActionLTE(v string) predicate.Action
- func ActionLabel(v string) predicate.Action
- func ActionLabelContains(v string) predicate.Action
- func ActionLabelContainsFold(v string) predicate.Action
- func ActionLabelEQ(v string) predicate.Action
- func ActionLabelEqualFold(v string) predicate.Action
- func ActionLabelGT(v string) predicate.Action
- func ActionLabelGTE(v string) predicate.Action
- func ActionLabelHasPrefix(v string) predicate.Action
- func ActionLabelHasSuffix(v string) predicate.Action
- func ActionLabelIn(vs ...string) predicate.Action
- func ActionLabelIsNil() predicate.Action
- func ActionLabelLT(v string) predicate.Action
- func ActionLabelLTE(v string) predicate.Action
- func ActionLabelNEQ(v string) predicate.Action
- func ActionLabelNotIn(vs ...string) predicate.Action
- func ActionLabelNotNil() predicate.Action
- func ActionNEQ(v string) predicate.Action
- func ActionNotIn(vs ...string) predicate.Action
- func And(predicates ...predicate.Action) predicate.Action
- func Category(v string) predicate.Action
- func CategoryContains(v string) predicate.Action
- func CategoryContainsFold(v string) predicate.Action
- func CategoryEQ(v string) predicate.Action
- func CategoryEqualFold(v string) predicate.Action
- func CategoryGT(v string) predicate.Action
- func CategoryGTE(v string) predicate.Action
- func CategoryHasPrefix(v string) predicate.Action
- func CategoryHasSuffix(v string) predicate.Action
- func CategoryIn(vs ...string) predicate.Action
- func CategoryLT(v string) predicate.Action
- func CategoryLTE(v string) predicate.Action
- func CategoryNEQ(v string) predicate.Action
- func CategoryNotIn(vs ...string) predicate.Action
- func HasEvent() predicate.Action
- func HasEventWith(preds ...predicate.Event) predicate.Action
- func ID(id int) predicate.Action
- func IDEQ(id int) predicate.Action
- func IDGT(id int) predicate.Action
- func IDGTE(id int) predicate.Action
- func IDIn(ids ...int) predicate.Action
- func IDLT(id int) predicate.Action
- func IDLTE(id int) predicate.Action
- func IDNEQ(id int) predicate.Action
- func IDNotIn(ids ...int) predicate.Action
- func Not(p predicate.Action) predicate.Action
- func Or(predicates ...predicate.Action) predicate.Action
- func Property(v string) predicate.Action
- func PropertyContains(v string) predicate.Action
- func PropertyContainsFold(v string) predicate.Action
- func PropertyEQ(v string) predicate.Action
- func PropertyEqualFold(v string) predicate.Action
- func PropertyGT(v string) predicate.Action
- func PropertyGTE(v string) predicate.Action
- func PropertyHasPrefix(v string) predicate.Action
- func PropertyHasSuffix(v string) predicate.Action
- func PropertyIn(vs ...string) predicate.Action
- func PropertyIsNil() predicate.Action
- func PropertyLT(v string) predicate.Action
- func PropertyLTE(v string) predicate.Action
- func PropertyNEQ(v string) predicate.Action
- func PropertyNotIn(vs ...string) predicate.Action
- func PropertyNotNil() predicate.Action
- func Value(v []byte) predicate.Action
- func ValueEQ(v []byte) predicate.Action
- func ValueGT(v []byte) predicate.Action
- func ValueGTE(v []byte) predicate.Action
- func ValueIn(vs ...[]byte) predicate.Action
- func ValueIsNil() predicate.Action
- func ValueLT(v []byte) predicate.Action
- func ValueLTE(v []byte) predicate.Action
- func ValueNEQ(v []byte) predicate.Action
- func ValueNotIn(vs ...[]byte) predicate.Action
- func ValueNotNil() predicate.Action
Constants ¶
const ( // Label holds the string label denoting the action type in the database. Label = "action" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldAction holds the string denoting the action field in the database. FieldAction = "action" // FieldCategory holds the string denoting the category field in the database. FieldCategory = "category" // FieldActionLabel holds the string denoting the action_label field in the database. FieldActionLabel = "label" // FieldProperty holds the string denoting the property field in the database. FieldProperty = "property" // FieldValue holds the string denoting the value field in the database. FieldValue = "value" // EdgeEvent holds the string denoting the event edge name in mutations. EdgeEvent = "event" // Table holds the table name of the action in the database. Table = "actions" // EventTable is the table the holds the event relation/edge. EventTable = "actions" // EventInverseTable is the table name for the Event entity. // It exists in this package in order to avoid circular dependency with the "event" package. EventInverseTable = "events" // EventColumn is the table column denoting the event relation/edge. EventColumn = "event_action" )
Variables ¶
var Columns = []string{ FieldID, FieldAction, FieldCategory, FieldActionLabel, FieldProperty, FieldValue, }
Columns holds all SQL columns for action fields.
var ForeignKeys = []string{
"event_action",
}
ForeignKeys holds the SQL foreign-keys that are owned by the Action type.
Functions ¶
func Action ¶
Action applies equality check predicate on the "action" field. It's identical to ActionEQ.
func ActionContains ¶
ActionContains applies the Contains predicate on the "action" field.
func ActionContainsFold ¶
ActionContainsFold applies the ContainsFold predicate on the "action" field.
func ActionEqualFold ¶
ActionEqualFold applies the EqualFold predicate on the "action" field.
func ActionHasPrefix ¶
ActionHasPrefix applies the HasPrefix predicate on the "action" field.
func ActionHasSuffix ¶
ActionHasSuffix applies the HasSuffix predicate on the "action" field.
func ActionLabel ¶
ActionLabel applies equality check predicate on the "action_label" field. It's identical to ActionLabelEQ.
func ActionLabelContains ¶
ActionLabelContains applies the Contains predicate on the "action_label" field.
func ActionLabelContainsFold ¶
ActionLabelContainsFold applies the ContainsFold predicate on the "action_label" field.
func ActionLabelEQ ¶
ActionLabelEQ applies the EQ predicate on the "action_label" field.
func ActionLabelEqualFold ¶
ActionLabelEqualFold applies the EqualFold predicate on the "action_label" field.
func ActionLabelGT ¶
ActionLabelGT applies the GT predicate on the "action_label" field.
func ActionLabelGTE ¶
ActionLabelGTE applies the GTE predicate on the "action_label" field.
func ActionLabelHasPrefix ¶
ActionLabelHasPrefix applies the HasPrefix predicate on the "action_label" field.
func ActionLabelHasSuffix ¶
ActionLabelHasSuffix applies the HasSuffix predicate on the "action_label" field.
func ActionLabelIn ¶
ActionLabelIn applies the In predicate on the "action_label" field.
func ActionLabelIsNil ¶
ActionLabelIsNil applies the IsNil predicate on the "action_label" field.
func ActionLabelLT ¶
ActionLabelLT applies the LT predicate on the "action_label" field.
func ActionLabelLTE ¶
ActionLabelLTE applies the LTE predicate on the "action_label" field.
func ActionLabelNEQ ¶
ActionLabelNEQ applies the NEQ predicate on the "action_label" field.
func ActionLabelNotIn ¶
ActionLabelNotIn applies the NotIn predicate on the "action_label" field.
func ActionLabelNotNil ¶
ActionLabelNotNil applies the NotNil predicate on the "action_label" field.
func ActionNotIn ¶
ActionNotIn applies the NotIn predicate on the "action" field.
func Category ¶
Category applies equality check predicate on the "category" field. It's identical to CategoryEQ.
func CategoryContains ¶
CategoryContains applies the Contains predicate on the "category" field.
func CategoryContainsFold ¶
CategoryContainsFold applies the ContainsFold predicate on the "category" field.
func CategoryEQ ¶
CategoryEQ applies the EQ predicate on the "category" field.
func CategoryEqualFold ¶
CategoryEqualFold applies the EqualFold predicate on the "category" field.
func CategoryGT ¶
CategoryGT applies the GT predicate on the "category" field.
func CategoryGTE ¶
CategoryGTE applies the GTE predicate on the "category" field.
func CategoryHasPrefix ¶
CategoryHasPrefix applies the HasPrefix predicate on the "category" field.
func CategoryHasSuffix ¶
CategoryHasSuffix applies the HasSuffix predicate on the "category" field.
func CategoryIn ¶
CategoryIn applies the In predicate on the "category" field.
func CategoryLT ¶
CategoryLT applies the LT predicate on the "category" field.
func CategoryLTE ¶
CategoryLTE applies the LTE predicate on the "category" field.
func CategoryNEQ ¶
CategoryNEQ applies the NEQ predicate on the "category" field.
func CategoryNotIn ¶
CategoryNotIn applies the NotIn predicate on the "category" field.
func HasEventWith ¶
HasEventWith applies the HasEdge predicate on the "event" edge with a given conditions (other predicates).
func Property ¶
Property applies equality check predicate on the "property" field. It's identical to PropertyEQ.
func PropertyContains ¶
PropertyContains applies the Contains predicate on the "property" field.
func PropertyContainsFold ¶
PropertyContainsFold applies the ContainsFold predicate on the "property" field.
func PropertyEQ ¶
PropertyEQ applies the EQ predicate on the "property" field.
func PropertyEqualFold ¶
PropertyEqualFold applies the EqualFold predicate on the "property" field.
func PropertyGT ¶
PropertyGT applies the GT predicate on the "property" field.
func PropertyGTE ¶
PropertyGTE applies the GTE predicate on the "property" field.
func PropertyHasPrefix ¶
PropertyHasPrefix applies the HasPrefix predicate on the "property" field.
func PropertyHasSuffix ¶
PropertyHasSuffix applies the HasSuffix predicate on the "property" field.
func PropertyIn ¶
PropertyIn applies the In predicate on the "property" field.
func PropertyIsNil ¶
PropertyIsNil applies the IsNil predicate on the "property" field.
func PropertyLT ¶
PropertyLT applies the LT predicate on the "property" field.
func PropertyLTE ¶
PropertyLTE applies the LTE predicate on the "property" field.
func PropertyNEQ ¶
PropertyNEQ applies the NEQ predicate on the "property" field.
func PropertyNotIn ¶
PropertyNotIn applies the NotIn predicate on the "property" field.
func PropertyNotNil ¶
PropertyNotNil applies the NotNil predicate on the "property" field.
func Value ¶
Value applies equality check predicate on the "value" field. It's identical to ValueEQ.
func ValueIsNil ¶
ValueIsNil applies the IsNil predicate on the "value" field.
func ValueNotIn ¶
ValueNotIn applies the NotIn predicate on the "value" field.
func ValueNotNil ¶
ValueNotNil applies the NotNil predicate on the "value" field.
Types ¶
This section is empty.