flownodeinstance

package
v0.0.0-...-19e0465 Latest Latest
Warning

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

Go to latest
Published: May 12, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the flownodeinstance type in the database.
	Label = "flow_node_instance"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldFlowInstanceID holds the string denoting the flow_instance_id field in the database.
	FieldFlowInstanceID = "flow_instance_id"
	// FieldSourceFlowNodeInstanceID holds the string denoting the source_flow_node_instance_id field in the database.
	FieldSourceFlowNodeInstanceID = "source_flow_node_instance_id"
	// FieldFlowInstanceDataID holds the string denoting the flow_instance_data_id field in the database.
	FieldFlowInstanceDataID = "flow_instance_data_id"
	// FieldNodeKey holds the string denoting the node_key field in the database.
	FieldNodeKey = "node_key"
	// FieldSourceNodeKey holds the string denoting the source_node_key field in the database.
	FieldSourceNodeKey = "source_node_key"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// EdgeFlowInstance holds the string denoting the flow_instance edge name in mutations.
	EdgeFlowInstance = "flow_instance"
	// Table holds the table name of the flownodeinstance in the database.
	Table = "flow_node_instances"
	// FlowInstanceTable is the table that holds the flow_instance relation/edge.
	FlowInstanceTable = "flow_node_instances"
	// FlowInstanceInverseTable is the table name for the FlowInstance entity.
	// It exists in this package in order to avoid circular dependency with the "flowinstance" package.
	FlowInstanceInverseTable = "flow_instances"
	// FlowInstanceColumn is the table column denoting the flow_instance relation/edge.
	FlowInstanceColumn = "flow_instance_id"
)

Variables

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() int64
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() int64
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() int64
	// DefaultDeletedAt holds the default value on creation for the "deleted_at" field.
	DefaultDeletedAt int64
	// FlowInstanceIDValidator is a validator for the "flow_instance_id" field. It is called by the builders before save.
	FlowInstanceIDValidator func(string) error
	// DefaultSourceFlowNodeInstanceID holds the default value on creation for the "source_flow_node_instance_id" field.
	DefaultSourceFlowNodeInstanceID string
	// DefaultFlowInstanceDataID holds the default value on creation for the "flow_instance_data_id" field.
	DefaultFlowInstanceDataID string
	// NodeKeyValidator is a validator for the "node_key" field. It is called by the builders before save.
	NodeKeyValidator func(string) error
	// DefaultSourceNodeKey holds the default value on creation for the "source_node_key" field.
	DefaultSourceNodeKey string
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus int8
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Columns holds all SQL columns for flownodeinstance fields.

Functions

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v int64) predicate.FlowNodeInstance

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v int64) predicate.FlowNodeInstance

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v int64) predicate.FlowNodeInstance

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v int64) predicate.FlowNodeInstance

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...int64) predicate.FlowNodeInstance

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v int64) predicate.FlowNodeInstance

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v int64) predicate.FlowNodeInstance

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v int64) predicate.FlowNodeInstance

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...int64) predicate.FlowNodeInstance

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func DeletedAt

func DeletedAt(v int64) predicate.FlowNodeInstance

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v int64) predicate.FlowNodeInstance

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v int64) predicate.FlowNodeInstance

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v int64) predicate.FlowNodeInstance

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...int64) predicate.FlowNodeInstance

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.FlowNodeInstance

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v int64) predicate.FlowNodeInstance

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v int64) predicate.FlowNodeInstance

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v int64) predicate.FlowNodeInstance

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...int64) predicate.FlowNodeInstance

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.FlowNodeInstance

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func FlowInstanceDataID

func FlowInstanceDataID(v string) predicate.FlowNodeInstance

FlowInstanceDataID applies equality check predicate on the "flow_instance_data_id" field. It's identical to FlowInstanceDataIDEQ.

func FlowInstanceDataIDContains

func FlowInstanceDataIDContains(v string) predicate.FlowNodeInstance

FlowInstanceDataIDContains applies the Contains predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDContainsFold

func FlowInstanceDataIDContainsFold(v string) predicate.FlowNodeInstance

FlowInstanceDataIDContainsFold applies the ContainsFold predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDEQ

func FlowInstanceDataIDEQ(v string) predicate.FlowNodeInstance

FlowInstanceDataIDEQ applies the EQ predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDEqualFold

func FlowInstanceDataIDEqualFold(v string) predicate.FlowNodeInstance

FlowInstanceDataIDEqualFold applies the EqualFold predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDGT

func FlowInstanceDataIDGT(v string) predicate.FlowNodeInstance

FlowInstanceDataIDGT applies the GT predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDGTE

func FlowInstanceDataIDGTE(v string) predicate.FlowNodeInstance

FlowInstanceDataIDGTE applies the GTE predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDHasPrefix

func FlowInstanceDataIDHasPrefix(v string) predicate.FlowNodeInstance

FlowInstanceDataIDHasPrefix applies the HasPrefix predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDHasSuffix

func FlowInstanceDataIDHasSuffix(v string) predicate.FlowNodeInstance

FlowInstanceDataIDHasSuffix applies the HasSuffix predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDIn

func FlowInstanceDataIDIn(vs ...string) predicate.FlowNodeInstance

FlowInstanceDataIDIn applies the In predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDIsNil

func FlowInstanceDataIDIsNil() predicate.FlowNodeInstance

FlowInstanceDataIDIsNil applies the IsNil predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDLT

func FlowInstanceDataIDLT(v string) predicate.FlowNodeInstance

FlowInstanceDataIDLT applies the LT predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDLTE

func FlowInstanceDataIDLTE(v string) predicate.FlowNodeInstance

FlowInstanceDataIDLTE applies the LTE predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDNEQ

func FlowInstanceDataIDNEQ(v string) predicate.FlowNodeInstance

FlowInstanceDataIDNEQ applies the NEQ predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDNotIn

func FlowInstanceDataIDNotIn(vs ...string) predicate.FlowNodeInstance

FlowInstanceDataIDNotIn applies the NotIn predicate on the "flow_instance_data_id" field.

func FlowInstanceDataIDNotNil

func FlowInstanceDataIDNotNil() predicate.FlowNodeInstance

FlowInstanceDataIDNotNil applies the NotNil predicate on the "flow_instance_data_id" field.

func FlowInstanceID

func FlowInstanceID(v string) predicate.FlowNodeInstance

FlowInstanceID applies equality check predicate on the "flow_instance_id" field. It's identical to FlowInstanceIDEQ.

func FlowInstanceIDContains

func FlowInstanceIDContains(v string) predicate.FlowNodeInstance

FlowInstanceIDContains applies the Contains predicate on the "flow_instance_id" field.

func FlowInstanceIDContainsFold

func FlowInstanceIDContainsFold(v string) predicate.FlowNodeInstance

FlowInstanceIDContainsFold applies the ContainsFold predicate on the "flow_instance_id" field.

func FlowInstanceIDEQ

func FlowInstanceIDEQ(v string) predicate.FlowNodeInstance

FlowInstanceIDEQ applies the EQ predicate on the "flow_instance_id" field.

func FlowInstanceIDEqualFold

func FlowInstanceIDEqualFold(v string) predicate.FlowNodeInstance

FlowInstanceIDEqualFold applies the EqualFold predicate on the "flow_instance_id" field.

func FlowInstanceIDGT

func FlowInstanceIDGT(v string) predicate.FlowNodeInstance

FlowInstanceIDGT applies the GT predicate on the "flow_instance_id" field.

func FlowInstanceIDGTE

func FlowInstanceIDGTE(v string) predicate.FlowNodeInstance

FlowInstanceIDGTE applies the GTE predicate on the "flow_instance_id" field.

func FlowInstanceIDHasPrefix

func FlowInstanceIDHasPrefix(v string) predicate.FlowNodeInstance

FlowInstanceIDHasPrefix applies the HasPrefix predicate on the "flow_instance_id" field.

func FlowInstanceIDHasSuffix

func FlowInstanceIDHasSuffix(v string) predicate.FlowNodeInstance

FlowInstanceIDHasSuffix applies the HasSuffix predicate on the "flow_instance_id" field.

func FlowInstanceIDIn

func FlowInstanceIDIn(vs ...string) predicate.FlowNodeInstance

FlowInstanceIDIn applies the In predicate on the "flow_instance_id" field.

func FlowInstanceIDLT

func FlowInstanceIDLT(v string) predicate.FlowNodeInstance

FlowInstanceIDLT applies the LT predicate on the "flow_instance_id" field.

func FlowInstanceIDLTE

func FlowInstanceIDLTE(v string) predicate.FlowNodeInstance

FlowInstanceIDLTE applies the LTE predicate on the "flow_instance_id" field.

func FlowInstanceIDNEQ

func FlowInstanceIDNEQ(v string) predicate.FlowNodeInstance

FlowInstanceIDNEQ applies the NEQ predicate on the "flow_instance_id" field.

func FlowInstanceIDNotIn

func FlowInstanceIDNotIn(vs ...string) predicate.FlowNodeInstance

FlowInstanceIDNotIn applies the NotIn predicate on the "flow_instance_id" field.

func HasFlowInstance

func HasFlowInstance() predicate.FlowNodeInstance

HasFlowInstance applies the HasEdge predicate on the "flow_instance" edge.

func HasFlowInstanceWith

func HasFlowInstanceWith(preds ...predicate.FlowInstance) predicate.FlowNodeInstance

HasFlowInstanceWith applies the HasEdge predicate on the "flow_instance" edge with a given conditions (other predicates).

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.FlowNodeInstance

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.FlowNodeInstance

IDNotIn applies the NotIn predicate on the ID field.

func NodeKey

NodeKey applies equality check predicate on the "node_key" field. It's identical to NodeKeyEQ.

func NodeKeyContains

func NodeKeyContains(v string) predicate.FlowNodeInstance

NodeKeyContains applies the Contains predicate on the "node_key" field.

func NodeKeyContainsFold

func NodeKeyContainsFold(v string) predicate.FlowNodeInstance

NodeKeyContainsFold applies the ContainsFold predicate on the "node_key" field.

func NodeKeyEQ

func NodeKeyEQ(v string) predicate.FlowNodeInstance

NodeKeyEQ applies the EQ predicate on the "node_key" field.

func NodeKeyEqualFold

func NodeKeyEqualFold(v string) predicate.FlowNodeInstance

NodeKeyEqualFold applies the EqualFold predicate on the "node_key" field.

func NodeKeyGT

func NodeKeyGT(v string) predicate.FlowNodeInstance

NodeKeyGT applies the GT predicate on the "node_key" field.

func NodeKeyGTE

func NodeKeyGTE(v string) predicate.FlowNodeInstance

NodeKeyGTE applies the GTE predicate on the "node_key" field.

func NodeKeyHasPrefix

func NodeKeyHasPrefix(v string) predicate.FlowNodeInstance

NodeKeyHasPrefix applies the HasPrefix predicate on the "node_key" field.

func NodeKeyHasSuffix

func NodeKeyHasSuffix(v string) predicate.FlowNodeInstance

NodeKeyHasSuffix applies the HasSuffix predicate on the "node_key" field.

func NodeKeyIn

func NodeKeyIn(vs ...string) predicate.FlowNodeInstance

NodeKeyIn applies the In predicate on the "node_key" field.

func NodeKeyLT

func NodeKeyLT(v string) predicate.FlowNodeInstance

NodeKeyLT applies the LT predicate on the "node_key" field.

func NodeKeyLTE

func NodeKeyLTE(v string) predicate.FlowNodeInstance

NodeKeyLTE applies the LTE predicate on the "node_key" field.

func NodeKeyNEQ

func NodeKeyNEQ(v string) predicate.FlowNodeInstance

NodeKeyNEQ applies the NEQ predicate on the "node_key" field.

func NodeKeyNotIn

func NodeKeyNotIn(vs ...string) predicate.FlowNodeInstance

NodeKeyNotIn applies the NotIn predicate on the "node_key" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func SourceFlowNodeInstanceID

func SourceFlowNodeInstanceID(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceID applies equality check predicate on the "source_flow_node_instance_id" field. It's identical to SourceFlowNodeInstanceIDEQ.

func SourceFlowNodeInstanceIDContains

func SourceFlowNodeInstanceIDContains(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDContains applies the Contains predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDContainsFold

func SourceFlowNodeInstanceIDContainsFold(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDContainsFold applies the ContainsFold predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDEQ

func SourceFlowNodeInstanceIDEQ(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDEQ applies the EQ predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDEqualFold

func SourceFlowNodeInstanceIDEqualFold(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDEqualFold applies the EqualFold predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDGT

func SourceFlowNodeInstanceIDGT(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDGT applies the GT predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDGTE

func SourceFlowNodeInstanceIDGTE(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDGTE applies the GTE predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDHasPrefix

func SourceFlowNodeInstanceIDHasPrefix(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDHasPrefix applies the HasPrefix predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDHasSuffix

func SourceFlowNodeInstanceIDHasSuffix(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDHasSuffix applies the HasSuffix predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDIn

func SourceFlowNodeInstanceIDIn(vs ...string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDIn applies the In predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDIsNil

func SourceFlowNodeInstanceIDIsNil() predicate.FlowNodeInstance

SourceFlowNodeInstanceIDIsNil applies the IsNil predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDLT

func SourceFlowNodeInstanceIDLT(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDLT applies the LT predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDLTE

func SourceFlowNodeInstanceIDLTE(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDLTE applies the LTE predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDNEQ

func SourceFlowNodeInstanceIDNEQ(v string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDNEQ applies the NEQ predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDNotIn

func SourceFlowNodeInstanceIDNotIn(vs ...string) predicate.FlowNodeInstance

SourceFlowNodeInstanceIDNotIn applies the NotIn predicate on the "source_flow_node_instance_id" field.

func SourceFlowNodeInstanceIDNotNil

func SourceFlowNodeInstanceIDNotNil() predicate.FlowNodeInstance

SourceFlowNodeInstanceIDNotNil applies the NotNil predicate on the "source_flow_node_instance_id" field.

func SourceNodeKey

func SourceNodeKey(v string) predicate.FlowNodeInstance

SourceNodeKey applies equality check predicate on the "source_node_key" field. It's identical to SourceNodeKeyEQ.

func SourceNodeKeyContains

func SourceNodeKeyContains(v string) predicate.FlowNodeInstance

SourceNodeKeyContains applies the Contains predicate on the "source_node_key" field.

func SourceNodeKeyContainsFold

func SourceNodeKeyContainsFold(v string) predicate.FlowNodeInstance

SourceNodeKeyContainsFold applies the ContainsFold predicate on the "source_node_key" field.

func SourceNodeKeyEQ

func SourceNodeKeyEQ(v string) predicate.FlowNodeInstance

SourceNodeKeyEQ applies the EQ predicate on the "source_node_key" field.

func SourceNodeKeyEqualFold

func SourceNodeKeyEqualFold(v string) predicate.FlowNodeInstance

SourceNodeKeyEqualFold applies the EqualFold predicate on the "source_node_key" field.

func SourceNodeKeyGT

func SourceNodeKeyGT(v string) predicate.FlowNodeInstance

SourceNodeKeyGT applies the GT predicate on the "source_node_key" field.

func SourceNodeKeyGTE

func SourceNodeKeyGTE(v string) predicate.FlowNodeInstance

SourceNodeKeyGTE applies the GTE predicate on the "source_node_key" field.

func SourceNodeKeyHasPrefix

func SourceNodeKeyHasPrefix(v string) predicate.FlowNodeInstance

SourceNodeKeyHasPrefix applies the HasPrefix predicate on the "source_node_key" field.

func SourceNodeKeyHasSuffix

func SourceNodeKeyHasSuffix(v string) predicate.FlowNodeInstance

SourceNodeKeyHasSuffix applies the HasSuffix predicate on the "source_node_key" field.

func SourceNodeKeyIn

func SourceNodeKeyIn(vs ...string) predicate.FlowNodeInstance

SourceNodeKeyIn applies the In predicate on the "source_node_key" field.

func SourceNodeKeyIsNil

func SourceNodeKeyIsNil() predicate.FlowNodeInstance

SourceNodeKeyIsNil applies the IsNil predicate on the "source_node_key" field.

func SourceNodeKeyLT

func SourceNodeKeyLT(v string) predicate.FlowNodeInstance

SourceNodeKeyLT applies the LT predicate on the "source_node_key" field.

func SourceNodeKeyLTE

func SourceNodeKeyLTE(v string) predicate.FlowNodeInstance

SourceNodeKeyLTE applies the LTE predicate on the "source_node_key" field.

func SourceNodeKeyNEQ

func SourceNodeKeyNEQ(v string) predicate.FlowNodeInstance

SourceNodeKeyNEQ applies the NEQ predicate on the "source_node_key" field.

func SourceNodeKeyNotIn

func SourceNodeKeyNotIn(vs ...string) predicate.FlowNodeInstance

SourceNodeKeyNotIn applies the NotIn predicate on the "source_node_key" field.

func SourceNodeKeyNotNil

func SourceNodeKeyNotNil() predicate.FlowNodeInstance

SourceNodeKeyNotNil applies the NotNil predicate on the "source_node_key" field.

func Status

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusEQ

func StatusEQ(v int8) predicate.FlowNodeInstance

StatusEQ applies the EQ predicate on the "status" field.

func StatusGT

func StatusGT(v int8) predicate.FlowNodeInstance

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

func StatusGTE(v int8) predicate.FlowNodeInstance

StatusGTE applies the GTE predicate on the "status" field.

func StatusIn

func StatusIn(vs ...int8) predicate.FlowNodeInstance

StatusIn applies the In predicate on the "status" field.

func StatusLT

func StatusLT(v int8) predicate.FlowNodeInstance

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

func StatusLTE(v int8) predicate.FlowNodeInstance

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v int8) predicate.FlowNodeInstance

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...int8) predicate.FlowNodeInstance

StatusNotIn applies the NotIn predicate on the "status" field.

func UpdatedAt

func UpdatedAt(v int64) predicate.FlowNodeInstance

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v int64) predicate.FlowNodeInstance

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v int64) predicate.FlowNodeInstance

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v int64) predicate.FlowNodeInstance

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...int64) predicate.FlowNodeInstance

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v int64) predicate.FlowNodeInstance

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v int64) predicate.FlowNodeInstance

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v int64) predicate.FlowNodeInstance

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...int64) predicate.FlowNodeInstance

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" 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