Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.IntegrationAttachment) predicate.IntegrationAttachment
- func Configuration(v []byte) predicate.IntegrationAttachment
- func ConfigurationEQ(v []byte) predicate.IntegrationAttachment
- func ConfigurationGT(v []byte) predicate.IntegrationAttachment
- func ConfigurationGTE(v []byte) predicate.IntegrationAttachment
- func ConfigurationIn(vs ...[]byte) predicate.IntegrationAttachment
- func ConfigurationIsNil() predicate.IntegrationAttachment
- func ConfigurationLT(v []byte) predicate.IntegrationAttachment
- func ConfigurationLTE(v []byte) predicate.IntegrationAttachment
- func ConfigurationNEQ(v []byte) predicate.IntegrationAttachment
- func ConfigurationNotIn(vs ...[]byte) predicate.IntegrationAttachment
- func ConfigurationNotNil() 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
- type OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByDeletedAt(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByIntegrationField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByWorkflowField(field string, opts ...sql.OrderTermOption) OrderOption
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" // 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 ¶
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, FieldConfiguration, 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 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 ¶
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 ¶
type OrderOption ¶ added in v0.13.0
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.