integrationattachment

package
v0.89.1 Latest Latest
Warning

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

Go to latest
Published: May 30, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the integrationattachment type in the database.
	Label = "integration_attachment"
	// 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"
	// FieldConfiguration holds the string denoting the configuration field in the database.
	FieldConfiguration = "configuration"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// EdgeIntegration holds the string denoting the integration edge name in mutations.
	EdgeIntegration = "integration"
	// EdgeWorkflow holds the string denoting the workflow edge name in mutations.
	EdgeWorkflow = "workflow"
	// Table holds the table name of the integrationattachment in the database.
	Table = "integration_attachments"
	// IntegrationTable is the table that holds the integration relation/edge.
	IntegrationTable = "integration_attachments"
	// IntegrationInverseTable is the table name for the Integration entity.
	// It exists in this package in order to avoid circular dependency with the "integration" package.
	IntegrationInverseTable = "integrations"
	// IntegrationColumn is the table column denoting the integration relation/edge.
	IntegrationColumn = "integration_attachment_integration"
	// WorkflowTable is the table that holds the workflow relation/edge.
	WorkflowTable = "integration_attachments"
	// 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 = "integration_attachment_workflow"
)

Variables

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for integrationattachment fields.

View Source
var ForeignKeys = []string{
	"integration_attachment_integration",
	"integration_attachment_workflow",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "integration_attachments" table and are not defined as standalone fields in the schema.

Functions

func And

And groups predicates with the AND operator between them.

func Configuration added in v0.11.1

func Configuration(v []byte) predicate.IntegrationAttachment

Configuration applies equality check predicate on the "configuration" field. It's identical to ConfigurationEQ.

func ConfigurationEQ added in v0.11.1

func ConfigurationEQ(v []byte) predicate.IntegrationAttachment

ConfigurationEQ applies the EQ predicate on the "configuration" field.

func ConfigurationGT added in v0.11.1

func ConfigurationGT(v []byte) predicate.IntegrationAttachment

ConfigurationGT applies the GT predicate on the "configuration" field.

func ConfigurationGTE added in v0.11.1

func ConfigurationGTE(v []byte) predicate.IntegrationAttachment

ConfigurationGTE applies the GTE predicate on the "configuration" field.

func ConfigurationIn added in v0.11.1

func ConfigurationIn(vs ...[]byte) predicate.IntegrationAttachment

ConfigurationIn applies the In predicate on the "configuration" field.

func ConfigurationIsNil added in v0.11.1

func ConfigurationIsNil() predicate.IntegrationAttachment

ConfigurationIsNil applies the IsNil predicate on the "configuration" field.

func ConfigurationLT added in v0.11.1

func ConfigurationLT(v []byte) predicate.IntegrationAttachment

ConfigurationLT applies the LT predicate on the "configuration" field.

func ConfigurationLTE added in v0.11.1

func ConfigurationLTE(v []byte) predicate.IntegrationAttachment

ConfigurationLTE applies the LTE predicate on the "configuration" field.

func ConfigurationNEQ added in v0.11.1

func ConfigurationNEQ(v []byte) predicate.IntegrationAttachment

ConfigurationNEQ applies the NEQ predicate on the "configuration" field.

func ConfigurationNotIn added in v0.11.1

func ConfigurationNotIn(vs ...[]byte) predicate.IntegrationAttachment

ConfigurationNotIn applies the NotIn predicate on the "configuration" field.

func ConfigurationNotNil added in v0.11.1

func ConfigurationNotNil() predicate.IntegrationAttachment

ConfigurationNotNil applies the NotNil predicate on the "configuration" field.

func CreatedAt

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

func CreatedAtEQ

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

func CreatedAtGT

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.IntegrationAttachment

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

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.IntegrationAttachment

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

func CreatedAtLT

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.IntegrationAttachment

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.IntegrationAttachment

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

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.IntegrationAttachment

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

func DeletedAt

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

func DeletedAtEQ

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

func DeletedAtGT

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.IntegrationAttachment

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

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.IntegrationAttachment

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.IntegrationAttachment

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

func DeletedAtLT

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.IntegrationAttachment

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.IntegrationAttachment

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

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.IntegrationAttachment

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.IntegrationAttachment

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

func HasIntegration

func HasIntegration() predicate.IntegrationAttachment

HasIntegration applies the HasEdge predicate on the "integration" edge.

func HasIntegrationWith

func HasIntegrationWith(preds ...predicate.Integration) predicate.IntegrationAttachment

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

func HasWorkflow

func HasWorkflow() predicate.IntegrationAttachment

HasWorkflow applies the HasEdge predicate on the "workflow" edge.

func HasWorkflowWith

func HasWorkflowWith(preds ...predicate.Workflow) predicate.IntegrationAttachment

HasWorkflowWith applies the HasEdge predicate on the "workflow" 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

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 ...uuid.UUID) predicate.IntegrationAttachment

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 ValidColumn

func ValidColumn(column string) bool

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

Types

type OrderOption added in v0.13.0

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the IntegrationAttachment queries.

func ByCreatedAt added in v0.13.0

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByDeletedAt added in v0.13.0

func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption

ByDeletedAt orders the results by the deleted_at field.

func ByID added in v0.13.0

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByIntegrationField added in v0.13.0

func ByIntegrationField(field string, opts ...sql.OrderTermOption) OrderOption

ByIntegrationField orders the results by integration field.

func ByWorkflowField added in v0.13.0

func ByWorkflowField(field string, opts ...sql.OrderTermOption) OrderOption

ByWorkflowField orders the results by workflow field.

Jump to

Keyboard shortcuts

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