Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.WorkflowEventsWait) predicate.WorkflowEventsWait
- func HasWorkflowevent() predicate.WorkflowEventsWait
- func HasWorkfloweventWith(preds ...predicate.WorkflowEvents) predicate.WorkflowEventsWait
- func ID(id int) predicate.WorkflowEventsWait
- func IDEQ(id int) predicate.WorkflowEventsWait
- func IDGT(id int) predicate.WorkflowEventsWait
- func IDGTE(id int) predicate.WorkflowEventsWait
- func IDIn(ids ...int) predicate.WorkflowEventsWait
- func IDLT(id int) predicate.WorkflowEventsWait
- func IDLTE(id int) predicate.WorkflowEventsWait
- func IDNEQ(id int) predicate.WorkflowEventsWait
- func IDNotIn(ids ...int) predicate.WorkflowEventsWait
- func Not(p predicate.WorkflowEventsWait) predicate.WorkflowEventsWait
- func Or(predicates ...predicate.WorkflowEventsWait) predicate.WorkflowEventsWait
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the workfloweventswait type in the database. Label = "workflow_events_wait" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldEvents holds the string denoting the events field in the database. FieldEvents = "events" // EdgeWorkflowevent holds the string denoting the workflowevent edge name in mutations. EdgeWorkflowevent = "workflowevent" // Table holds the table name of the workfloweventswait in the database. Table = "workflow_events_waits" // WorkfloweventTable is the table the holds the workflowevent relation/edge. WorkfloweventTable = "workflow_events_waits" // WorkfloweventInverseTable is the table name for the WorkflowEvents entity. // It exists in this package in order to avoid circular dependency with the "workflowevents" package. WorkfloweventInverseTable = "workflow_events" // WorkfloweventColumn is the table column denoting the workflowevent relation/edge. WorkfloweventColumn = "workflow_events_wfeventswait" )
Variables ¶
var Columns = []string{ FieldID, FieldEvents, }
Columns holds all SQL columns for workfloweventswait fields.
var ForeignKeys = []string{
"workflow_events_wfeventswait",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "workflow_events_waits" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.WorkflowEventsWait) predicate.WorkflowEventsWait
And groups predicates with the AND operator between them.
func HasWorkflowevent ¶
func HasWorkflowevent() predicate.WorkflowEventsWait
HasWorkflowevent applies the HasEdge predicate on the "workflowevent" edge.
func HasWorkfloweventWith ¶
func HasWorkfloweventWith(preds ...predicate.WorkflowEvents) predicate.WorkflowEventsWait
HasWorkfloweventWith applies the HasEdge predicate on the "workflowevent" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id int) predicate.WorkflowEventsWait
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.WorkflowEventsWait
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.WorkflowEventsWait
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.WorkflowEventsWait
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.WorkflowEventsWait
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.WorkflowEventsWait
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.WorkflowEventsWait
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.WorkflowEventsWait
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.WorkflowEventsWait) predicate.WorkflowEventsWait
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.WorkflowEventsWait) predicate.WorkflowEventsWait
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.