workflowevents

package
v0.5.10 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 16, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
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

Columns holds all SQL columns for workflowevents fields.

View Source
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

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 ID

ID filters vertices based on their ID field.

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

Not applies the not operator on the given predicate.

func Or

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

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL