Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.IntegrationAttachment) predicate.IntegrationAttachment
- func Config(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigEQ(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigGT(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigGTE(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigIn(vs ...*v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigLT(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigLTE(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigNEQ(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func ConfigNotIn(vs ...*v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
- func CreatedAt(v time.Time) predicate.IntegrationAttachment
- func CreatedAtEQ(v time.Time) predicate.IntegrationAttachment
- func CreatedAtGT(v time.Time) predicate.IntegrationAttachment
- func CreatedAtGTE(v time.Time) predicate.IntegrationAttachment
- func CreatedAtIn(vs ...time.Time) predicate.IntegrationAttachment
- func CreatedAtLT(v time.Time) predicate.IntegrationAttachment
- func CreatedAtLTE(v time.Time) predicate.IntegrationAttachment
- func CreatedAtNEQ(v time.Time) predicate.IntegrationAttachment
- func CreatedAtNotIn(vs ...time.Time) predicate.IntegrationAttachment
- func DeletedAt(v time.Time) predicate.IntegrationAttachment
- func DeletedAtEQ(v time.Time) predicate.IntegrationAttachment
- func DeletedAtGT(v time.Time) predicate.IntegrationAttachment
- func DeletedAtGTE(v time.Time) predicate.IntegrationAttachment
- func DeletedAtIn(vs ...time.Time) predicate.IntegrationAttachment
- func DeletedAtIsNil() predicate.IntegrationAttachment
- func DeletedAtLT(v time.Time) predicate.IntegrationAttachment
- func DeletedAtLTE(v time.Time) predicate.IntegrationAttachment
- func DeletedAtNEQ(v time.Time) predicate.IntegrationAttachment
- func DeletedAtNotIn(vs ...time.Time) predicate.IntegrationAttachment
- func DeletedAtNotNil() predicate.IntegrationAttachment
- func HasIntegration() predicate.IntegrationAttachment
- func HasIntegrationWith(preds ...predicate.Integration) predicate.IntegrationAttachment
- func HasWorkflow() predicate.IntegrationAttachment
- func HasWorkflowWith(preds ...predicate.Workflow) predicate.IntegrationAttachment
- func ID(id uuid.UUID) predicate.IntegrationAttachment
- func IDEQ(id uuid.UUID) predicate.IntegrationAttachment
- func IDGT(id uuid.UUID) predicate.IntegrationAttachment
- func IDGTE(id uuid.UUID) predicate.IntegrationAttachment
- func IDIn(ids ...uuid.UUID) predicate.IntegrationAttachment
- func IDLT(id uuid.UUID) predicate.IntegrationAttachment
- func IDLTE(id uuid.UUID) predicate.IntegrationAttachment
- func IDNEQ(id uuid.UUID) predicate.IntegrationAttachment
- func IDNotIn(ids ...uuid.UUID) predicate.IntegrationAttachment
- func Not(p predicate.IntegrationAttachment) predicate.IntegrationAttachment
- func Or(predicates ...predicate.IntegrationAttachment) predicate.IntegrationAttachment
- func ValidColumn(column string) bool
Constants ¶
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" // FieldConfig holds the string denoting the config field in the database. FieldConfig = "config" // 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 ¶
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 )
var Columns = []string{ FieldID, FieldCreatedAt, FieldConfig, FieldDeletedAt, }
Columns holds all SQL columns for integrationattachment fields.
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 ¶
func And(predicates ...predicate.IntegrationAttachment) predicate.IntegrationAttachment
And groups predicates with the AND operator between them.
func Config ¶
func Config(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
Config applies equality check predicate on the "config" field. It's identical to ConfigEQ.
func ConfigEQ ¶
func ConfigEQ(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigEQ applies the EQ predicate on the "config" field.
func ConfigGT ¶
func ConfigGT(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigGT applies the GT predicate on the "config" field.
func ConfigGTE ¶
func ConfigGTE(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigGTE applies the GTE predicate on the "config" field.
func ConfigIn ¶
func ConfigIn(vs ...*v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigIn applies the In predicate on the "config" field.
func ConfigLT ¶
func ConfigLT(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigLT applies the LT predicate on the "config" field.
func ConfigLTE ¶
func ConfigLTE(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigLTE applies the LTE predicate on the "config" field.
func ConfigNEQ ¶
func ConfigNEQ(v *v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigNEQ applies the NEQ predicate on the "config" field.
func ConfigNotIn ¶
func ConfigNotIn(vs ...*v1.IntegrationAttachmentConfig) predicate.IntegrationAttachment
ConfigNotIn applies the NotIn predicate on the "config" field.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.IntegrationAttachment
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.IntegrationAttachment
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.IntegrationAttachment
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 ¶
func CreatedAtLT(v time.Time) predicate.IntegrationAttachment
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 ¶
func DeletedAt(v time.Time) predicate.IntegrationAttachment
DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
func DeletedAtEQ ¶
func DeletedAtEQ(v time.Time) predicate.IntegrationAttachment
DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
func DeletedAtGT ¶
func DeletedAtGT(v time.Time) predicate.IntegrationAttachment
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 ¶
func DeletedAtLT(v time.Time) predicate.IntegrationAttachment
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 ¶
func ID(id uuid.UUID) predicate.IntegrationAttachment
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.IntegrationAttachment
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.IntegrationAttachment
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.IntegrationAttachment
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.IntegrationAttachment
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.IntegrationAttachment
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.IntegrationAttachment
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.IntegrationAttachment
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 ¶
func Not(p predicate.IntegrationAttachment) predicate.IntegrationAttachment
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.IntegrationAttachment) predicate.IntegrationAttachment
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.