Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.WorkflowEvents) predicate.WorkflowEvents
- func Count(v int) predicate.WorkflowEvents
- func CountEQ(v int) predicate.WorkflowEvents
- func CountGT(v int) predicate.WorkflowEvents
- func CountGTE(v int) predicate.WorkflowEvents
- func CountIn(vs ...int) predicate.WorkflowEvents
- func CountLT(v int) predicate.WorkflowEvents
- func CountLTE(v int) predicate.WorkflowEvents
- func CountNEQ(v int) predicate.WorkflowEvents
- func CountNotIn(vs ...int) predicate.WorkflowEvents
- func HasWfeventswait() predicate.WorkflowEvents
- func HasWfeventswaitWith(preds ...predicate.WorkflowEventsWait) predicate.WorkflowEvents
- func HasWorkflow() predicate.WorkflowEvents
- func HasWorkflowWith(preds ...predicate.Workflow) predicate.WorkflowEvents
- func HasWorkflowinstance() predicate.WorkflowEvents
- func HasWorkflowinstanceWith(preds ...predicate.WorkflowInstance) predicate.WorkflowEvents
- func ID(id int) predicate.WorkflowEvents
- func IDEQ(id int) predicate.WorkflowEvents
- func IDGT(id int) predicate.WorkflowEvents
- func IDGTE(id int) predicate.WorkflowEvents
- func IDIn(ids ...int) predicate.WorkflowEvents
- func IDLT(id int) predicate.WorkflowEvents
- func IDLTE(id int) predicate.WorkflowEvents
- func IDNEQ(id int) predicate.WorkflowEvents
- func IDNotIn(ids ...int) predicate.WorkflowEvents
- func Not(p predicate.WorkflowEvents) predicate.WorkflowEvents
- func Or(predicates ...predicate.WorkflowEvents) predicate.WorkflowEvents
- func Signature(v []byte) predicate.WorkflowEvents
- func SignatureEQ(v []byte) predicate.WorkflowEvents
- func SignatureGT(v []byte) predicate.WorkflowEvents
- func SignatureGTE(v []byte) predicate.WorkflowEvents
- func SignatureIn(vs ...[]byte) predicate.WorkflowEvents
- func SignatureIsNil() predicate.WorkflowEvents
- func SignatureLT(v []byte) predicate.WorkflowEvents
- func SignatureLTE(v []byte) predicate.WorkflowEvents
- func SignatureNEQ(v []byte) predicate.WorkflowEvents
- func SignatureNotIn(vs ...[]byte) predicate.WorkflowEvents
- func SignatureNotNil() predicate.WorkflowEvents
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the workflowevents type in the database. Label = "workflow_events" // 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" // FieldCorrelations holds the string denoting the correlations field in the database. FieldCorrelations = "correlations" // FieldSignature holds the string denoting the signature field in the database. FieldSignature = "signature" // FieldCount holds the string denoting the count field in the database. FieldCount = "count" // EdgeWorkflow holds the string denoting the workflow edge name in mutations. EdgeWorkflow = "workflow" // EdgeWfeventswait holds the string denoting the wfeventswait edge name in mutations. EdgeWfeventswait = "wfeventswait" // EdgeWorkflowinstance holds the string denoting the workflowinstance edge name in mutations. EdgeWorkflowinstance = "workflowinstance" // Table holds the table name of the workflowevents in the database. Table = "workflow_events" // WorkflowTable is the table that holds the workflow relation/edge. WorkflowTable = "workflow_events" // WorkflowInverseTable is the table name for the Workflow entity. // It exists in this package in order to avoid circular dependency with the "workflow" package. WorkflowInverseTable = "workflows" // WorkflowColumn is the table column denoting the workflow relation/edge. WorkflowColumn = "workflow_wfevents" // WfeventswaitTable is the table that holds the wfeventswait relation/edge. WfeventswaitTable = "workflow_events_waits" // WfeventswaitInverseTable is the table name for the WorkflowEventsWait entity. // It exists in this package in order to avoid circular dependency with the "workfloweventswait" package. WfeventswaitInverseTable = "workflow_events_waits" // WfeventswaitColumn is the table column denoting the wfeventswait relation/edge. WfeventswaitColumn = "workflow_events_wfeventswait" // WorkflowinstanceTable is the table that holds the workflowinstance relation/edge. WorkflowinstanceTable = "workflow_events" // WorkflowinstanceInverseTable is the table name for the WorkflowInstance entity. // It exists in this package in order to avoid circular dependency with the "workflowinstance" package. WorkflowinstanceInverseTable = "workflow_instances" // WorkflowinstanceColumn is the table column denoting the workflowinstance relation/edge. WorkflowinstanceColumn = "workflow_instance_instance" )
Variables ¶
var Columns = []string{ FieldID, FieldEvents, FieldCorrelations, FieldSignature, FieldCount, }
Columns holds all SQL columns for workflowevents fields.
var ForeignKeys = []string{
"workflow_wfevents",
"workflow_instance_instance",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "workflow_events" table and are not defined as standalone fields in the schema.
Functions ¶
func And ¶
func And(predicates ...predicate.WorkflowEvents) predicate.WorkflowEvents
And groups predicates with the AND operator between them.
func Count ¶
func Count(v int) predicate.WorkflowEvents
Count applies equality check predicate on the "count" field. It's identical to CountEQ.
func CountEQ ¶
func CountEQ(v int) predicate.WorkflowEvents
CountEQ applies the EQ predicate on the "count" field.
func CountGT ¶
func CountGT(v int) predicate.WorkflowEvents
CountGT applies the GT predicate on the "count" field.
func CountGTE ¶
func CountGTE(v int) predicate.WorkflowEvents
CountGTE applies the GTE predicate on the "count" field.
func CountIn ¶
func CountIn(vs ...int) predicate.WorkflowEvents
CountIn applies the In predicate on the "count" field.
func CountLT ¶
func CountLT(v int) predicate.WorkflowEvents
CountLT applies the LT predicate on the "count" field.
func CountLTE ¶
func CountLTE(v int) predicate.WorkflowEvents
CountLTE applies the LTE predicate on the "count" field.
func CountNEQ ¶
func CountNEQ(v int) predicate.WorkflowEvents
CountNEQ applies the NEQ predicate on the "count" field.
func CountNotIn ¶
func CountNotIn(vs ...int) predicate.WorkflowEvents
CountNotIn applies the NotIn predicate on the "count" field.
func HasWfeventswait ¶
func HasWfeventswait() predicate.WorkflowEvents
HasWfeventswait applies the HasEdge predicate on the "wfeventswait" edge.
func HasWfeventswaitWith ¶
func HasWfeventswaitWith(preds ...predicate.WorkflowEventsWait) predicate.WorkflowEvents
HasWfeventswaitWith applies the HasEdge predicate on the "wfeventswait" edge with a given conditions (other predicates).
func HasWorkflow ¶
func HasWorkflow() predicate.WorkflowEvents
HasWorkflow applies the HasEdge predicate on the "workflow" edge.
func HasWorkflowWith ¶
func HasWorkflowWith(preds ...predicate.Workflow) predicate.WorkflowEvents
HasWorkflowWith applies the HasEdge predicate on the "workflow" edge with a given conditions (other predicates).
func HasWorkflowinstance ¶
func HasWorkflowinstance() predicate.WorkflowEvents
HasWorkflowinstance applies the HasEdge predicate on the "workflowinstance" edge.
func HasWorkflowinstanceWith ¶
func HasWorkflowinstanceWith(preds ...predicate.WorkflowInstance) predicate.WorkflowEvents
HasWorkflowinstanceWith applies the HasEdge predicate on the "workflowinstance" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id int) predicate.WorkflowEvents
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.WorkflowEvents
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.WorkflowEvents
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.WorkflowEvents
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.WorkflowEvents
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.WorkflowEvents
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.WorkflowEvents
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.WorkflowEvents
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.WorkflowEvents) predicate.WorkflowEvents
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.WorkflowEvents) predicate.WorkflowEvents
Or groups predicates with the OR operator between them.
func Signature ¶
func Signature(v []byte) predicate.WorkflowEvents
Signature applies equality check predicate on the "signature" field. It's identical to SignatureEQ.
func SignatureEQ ¶
func SignatureEQ(v []byte) predicate.WorkflowEvents
SignatureEQ applies the EQ predicate on the "signature" field.
func SignatureGT ¶
func SignatureGT(v []byte) predicate.WorkflowEvents
SignatureGT applies the GT predicate on the "signature" field.
func SignatureGTE ¶
func SignatureGTE(v []byte) predicate.WorkflowEvents
SignatureGTE applies the GTE predicate on the "signature" field.
func SignatureIn ¶
func SignatureIn(vs ...[]byte) predicate.WorkflowEvents
SignatureIn applies the In predicate on the "signature" field.
func SignatureIsNil ¶
func SignatureIsNil() predicate.WorkflowEvents
SignatureIsNil applies the IsNil predicate on the "signature" field.
func SignatureLT ¶
func SignatureLT(v []byte) predicate.WorkflowEvents
SignatureLT applies the LT predicate on the "signature" field.
func SignatureLTE ¶
func SignatureLTE(v []byte) predicate.WorkflowEvents
SignatureLTE applies the LTE predicate on the "signature" field.
func SignatureNEQ ¶
func SignatureNEQ(v []byte) predicate.WorkflowEvents
SignatureNEQ applies the NEQ predicate on the "signature" field.
func SignatureNotIn ¶
func SignatureNotIn(vs ...[]byte) predicate.WorkflowEvents
SignatureNotIn applies the NotIn predicate on the "signature" field.
func SignatureNotNil ¶
func SignatureNotNil() predicate.WorkflowEvents
SignatureNotNil applies the NotNil predicate on the "signature" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.