entityintegrationmapping

package
v1.1.59 Latest Latest
Warning

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

Go to latest
Published: Jan 20, 2026 License: AGPL-3.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the entityintegrationmapping type in the database.
	Label = "entity_integration_mapping"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldTenantID holds the string denoting the tenant_id field in the database.
	FieldTenantID = "tenant_id"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// 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"
	// FieldCreatedBy holds the string denoting the created_by field in the database.
	FieldCreatedBy = "created_by"
	// FieldUpdatedBy holds the string denoting the updated_by field in the database.
	FieldUpdatedBy = "updated_by"
	// FieldEnvironmentID holds the string denoting the environment_id field in the database.
	FieldEnvironmentID = "environment_id"
	// FieldEntityID holds the string denoting the entity_id field in the database.
	FieldEntityID = "entity_id"
	// FieldEntityType holds the string denoting the entity_type field in the database.
	FieldEntityType = "entity_type"
	// FieldProviderType holds the string denoting the provider_type field in the database.
	FieldProviderType = "provider_type"
	// FieldProviderEntityID holds the string denoting the provider_entity_id field in the database.
	FieldProviderEntityID = "provider_entity_id"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// Table holds the table name of the entityintegrationmapping in the database.
	Table = "entity_integration_mappings"
)

Variables

View Source
var (
	// TenantIDValidator is a validator for the "tenant_id" field. It is called by the builders before save.
	TenantIDValidator func(string) error
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus string
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
	// DefaultEnvironmentID holds the default value on creation for the "environment_id" field.
	DefaultEnvironmentID string
	// EntityIDValidator is a validator for the "entity_id" field. It is called by the builders before save.
	EntityIDValidator func(string) error
	// EntityTypeValidator is a validator for the "entity_type" field. It is called by the builders before save.
	EntityTypeValidator func(string) error
	// ProviderTypeValidator is a validator for the "provider_type" field. It is called by the builders before save.
	ProviderTypeValidator func(string) error
	// ProviderEntityIDValidator is a validator for the "provider_entity_id" field. It is called by the builders before save.
	ProviderEntityIDValidator func(string) error
)

Columns holds all SQL columns for entityintegrationmapping fields.

Functions

func And

And groups predicates with the AND operator between them.

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

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

func CreatedAtIn

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

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

func CreatedAtLT

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

func CreatedAtLTE

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

func CreatedAtNEQ

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

func CreatedAtNotIn

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

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

func CreatedBy

CreatedBy applies equality check predicate on the "created_by" field. It's identical to CreatedByEQ.

func CreatedByContains

func CreatedByContains(v string) predicate.EntityIntegrationMapping

CreatedByContains applies the Contains predicate on the "created_by" field.

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.EntityIntegrationMapping

CreatedByContainsFold applies the ContainsFold predicate on the "created_by" field.

func CreatedByEQ

CreatedByEQ applies the EQ predicate on the "created_by" field.

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.EntityIntegrationMapping

CreatedByEqualFold applies the EqualFold predicate on the "created_by" field.

func CreatedByGT

CreatedByGT applies the GT predicate on the "created_by" field.

func CreatedByGTE

CreatedByGTE applies the GTE predicate on the "created_by" field.

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.EntityIntegrationMapping

CreatedByHasPrefix applies the HasPrefix predicate on the "created_by" field.

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.EntityIntegrationMapping

CreatedByHasSuffix applies the HasSuffix predicate on the "created_by" field.

func CreatedByIn

func CreatedByIn(vs ...string) predicate.EntityIntegrationMapping

CreatedByIn applies the In predicate on the "created_by" field.

func CreatedByIsNil

func CreatedByIsNil() predicate.EntityIntegrationMapping

CreatedByIsNil applies the IsNil predicate on the "created_by" field.

func CreatedByLT

CreatedByLT applies the LT predicate on the "created_by" field.

func CreatedByLTE

CreatedByLTE applies the LTE predicate on the "created_by" field.

func CreatedByNEQ

CreatedByNEQ applies the NEQ predicate on the "created_by" field.

func CreatedByNotIn

func CreatedByNotIn(vs ...string) predicate.EntityIntegrationMapping

CreatedByNotIn applies the NotIn predicate on the "created_by" field.

func CreatedByNotNil

func CreatedByNotNil() predicate.EntityIntegrationMapping

CreatedByNotNil applies the NotNil predicate on the "created_by" field.

func EntityID

EntityID applies equality check predicate on the "entity_id" field. It's identical to EntityIDEQ.

func EntityIDContains

func EntityIDContains(v string) predicate.EntityIntegrationMapping

EntityIDContains applies the Contains predicate on the "entity_id" field.

func EntityIDContainsFold

func EntityIDContainsFold(v string) predicate.EntityIntegrationMapping

EntityIDContainsFold applies the ContainsFold predicate on the "entity_id" field.

func EntityIDEQ

EntityIDEQ applies the EQ predicate on the "entity_id" field.

func EntityIDEqualFold

func EntityIDEqualFold(v string) predicate.EntityIntegrationMapping

EntityIDEqualFold applies the EqualFold predicate on the "entity_id" field.

func EntityIDGT

EntityIDGT applies the GT predicate on the "entity_id" field.

func EntityIDGTE

EntityIDGTE applies the GTE predicate on the "entity_id" field.

func EntityIDHasPrefix

func EntityIDHasPrefix(v string) predicate.EntityIntegrationMapping

EntityIDHasPrefix applies the HasPrefix predicate on the "entity_id" field.

func EntityIDHasSuffix

func EntityIDHasSuffix(v string) predicate.EntityIntegrationMapping

EntityIDHasSuffix applies the HasSuffix predicate on the "entity_id" field.

func EntityIDIn

func EntityIDIn(vs ...string) predicate.EntityIntegrationMapping

EntityIDIn applies the In predicate on the "entity_id" field.

func EntityIDLT

EntityIDLT applies the LT predicate on the "entity_id" field.

func EntityIDLTE

EntityIDLTE applies the LTE predicate on the "entity_id" field.

func EntityIDNEQ

EntityIDNEQ applies the NEQ predicate on the "entity_id" field.

func EntityIDNotIn

func EntityIDNotIn(vs ...string) predicate.EntityIntegrationMapping

EntityIDNotIn applies the NotIn predicate on the "entity_id" field.

func EntityType

EntityType applies equality check predicate on the "entity_type" field. It's identical to EntityTypeEQ.

func EntityTypeContains

func EntityTypeContains(v string) predicate.EntityIntegrationMapping

EntityTypeContains applies the Contains predicate on the "entity_type" field.

func EntityTypeContainsFold

func EntityTypeContainsFold(v string) predicate.EntityIntegrationMapping

EntityTypeContainsFold applies the ContainsFold predicate on the "entity_type" field.

func EntityTypeEQ

EntityTypeEQ applies the EQ predicate on the "entity_type" field.

func EntityTypeEqualFold

func EntityTypeEqualFold(v string) predicate.EntityIntegrationMapping

EntityTypeEqualFold applies the EqualFold predicate on the "entity_type" field.

func EntityTypeGT

EntityTypeGT applies the GT predicate on the "entity_type" field.

func EntityTypeGTE

func EntityTypeGTE(v string) predicate.EntityIntegrationMapping

EntityTypeGTE applies the GTE predicate on the "entity_type" field.

func EntityTypeHasPrefix

func EntityTypeHasPrefix(v string) predicate.EntityIntegrationMapping

EntityTypeHasPrefix applies the HasPrefix predicate on the "entity_type" field.

func EntityTypeHasSuffix

func EntityTypeHasSuffix(v string) predicate.EntityIntegrationMapping

EntityTypeHasSuffix applies the HasSuffix predicate on the "entity_type" field.

func EntityTypeIn

func EntityTypeIn(vs ...string) predicate.EntityIntegrationMapping

EntityTypeIn applies the In predicate on the "entity_type" field.

func EntityTypeLT

EntityTypeLT applies the LT predicate on the "entity_type" field.

func EntityTypeLTE

func EntityTypeLTE(v string) predicate.EntityIntegrationMapping

EntityTypeLTE applies the LTE predicate on the "entity_type" field.

func EntityTypeNEQ

func EntityTypeNEQ(v string) predicate.EntityIntegrationMapping

EntityTypeNEQ applies the NEQ predicate on the "entity_type" field.

func EntityTypeNotIn

func EntityTypeNotIn(vs ...string) predicate.EntityIntegrationMapping

EntityTypeNotIn applies the NotIn predicate on the "entity_type" field.

func EnvironmentID

func EnvironmentID(v string) predicate.EntityIntegrationMapping

EnvironmentID applies equality check predicate on the "environment_id" field. It's identical to EnvironmentIDEQ.

func EnvironmentIDContains

func EnvironmentIDContains(v string) predicate.EntityIntegrationMapping

EnvironmentIDContains applies the Contains predicate on the "environment_id" field.

func EnvironmentIDContainsFold

func EnvironmentIDContainsFold(v string) predicate.EntityIntegrationMapping

EnvironmentIDContainsFold applies the ContainsFold predicate on the "environment_id" field.

func EnvironmentIDEQ

func EnvironmentIDEQ(v string) predicate.EntityIntegrationMapping

EnvironmentIDEQ applies the EQ predicate on the "environment_id" field.

func EnvironmentIDEqualFold

func EnvironmentIDEqualFold(v string) predicate.EntityIntegrationMapping

EnvironmentIDEqualFold applies the EqualFold predicate on the "environment_id" field.

func EnvironmentIDGT

func EnvironmentIDGT(v string) predicate.EntityIntegrationMapping

EnvironmentIDGT applies the GT predicate on the "environment_id" field.

func EnvironmentIDGTE

func EnvironmentIDGTE(v string) predicate.EntityIntegrationMapping

EnvironmentIDGTE applies the GTE predicate on the "environment_id" field.

func EnvironmentIDHasPrefix

func EnvironmentIDHasPrefix(v string) predicate.EntityIntegrationMapping

EnvironmentIDHasPrefix applies the HasPrefix predicate on the "environment_id" field.

func EnvironmentIDHasSuffix

func EnvironmentIDHasSuffix(v string) predicate.EntityIntegrationMapping

EnvironmentIDHasSuffix applies the HasSuffix predicate on the "environment_id" field.

func EnvironmentIDIn

func EnvironmentIDIn(vs ...string) predicate.EntityIntegrationMapping

EnvironmentIDIn applies the In predicate on the "environment_id" field.

func EnvironmentIDIsNil

func EnvironmentIDIsNil() predicate.EntityIntegrationMapping

EnvironmentIDIsNil applies the IsNil predicate on the "environment_id" field.

func EnvironmentIDLT

func EnvironmentIDLT(v string) predicate.EntityIntegrationMapping

EnvironmentIDLT applies the LT predicate on the "environment_id" field.

func EnvironmentIDLTE

func EnvironmentIDLTE(v string) predicate.EntityIntegrationMapping

EnvironmentIDLTE applies the LTE predicate on the "environment_id" field.

func EnvironmentIDNEQ

func EnvironmentIDNEQ(v string) predicate.EntityIntegrationMapping

EnvironmentIDNEQ applies the NEQ predicate on the "environment_id" field.

func EnvironmentIDNotIn

func EnvironmentIDNotIn(vs ...string) predicate.EntityIntegrationMapping

EnvironmentIDNotIn applies the NotIn predicate on the "environment_id" field.

func EnvironmentIDNotNil

func EnvironmentIDNotNil() predicate.EntityIntegrationMapping

EnvironmentIDNotNil applies the NotNil predicate on the "environment_id" field.

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.EntityIntegrationMapping

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

IDEqualFold applies the EqualFold 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

IDNotIn applies the NotIn predicate on the ID field.

func MetadataIsNil

func MetadataIsNil() predicate.EntityIntegrationMapping

MetadataIsNil applies the IsNil predicate on the "metadata" field.

func MetadataNotNil

func MetadataNotNil() predicate.EntityIntegrationMapping

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func ProviderEntityID

func ProviderEntityID(v string) predicate.EntityIntegrationMapping

ProviderEntityID applies equality check predicate on the "provider_entity_id" field. It's identical to ProviderEntityIDEQ.

func ProviderEntityIDContains

func ProviderEntityIDContains(v string) predicate.EntityIntegrationMapping

ProviderEntityIDContains applies the Contains predicate on the "provider_entity_id" field.

func ProviderEntityIDContainsFold

func ProviderEntityIDContainsFold(v string) predicate.EntityIntegrationMapping

ProviderEntityIDContainsFold applies the ContainsFold predicate on the "provider_entity_id" field.

func ProviderEntityIDEQ

func ProviderEntityIDEQ(v string) predicate.EntityIntegrationMapping

ProviderEntityIDEQ applies the EQ predicate on the "provider_entity_id" field.

func ProviderEntityIDEqualFold

func ProviderEntityIDEqualFold(v string) predicate.EntityIntegrationMapping

ProviderEntityIDEqualFold applies the EqualFold predicate on the "provider_entity_id" field.

func ProviderEntityIDGT

func ProviderEntityIDGT(v string) predicate.EntityIntegrationMapping

ProviderEntityIDGT applies the GT predicate on the "provider_entity_id" field.

func ProviderEntityIDGTE

func ProviderEntityIDGTE(v string) predicate.EntityIntegrationMapping

ProviderEntityIDGTE applies the GTE predicate on the "provider_entity_id" field.

func ProviderEntityIDHasPrefix

func ProviderEntityIDHasPrefix(v string) predicate.EntityIntegrationMapping

ProviderEntityIDHasPrefix applies the HasPrefix predicate on the "provider_entity_id" field.

func ProviderEntityIDHasSuffix

func ProviderEntityIDHasSuffix(v string) predicate.EntityIntegrationMapping

ProviderEntityIDHasSuffix applies the HasSuffix predicate on the "provider_entity_id" field.

func ProviderEntityIDIn

func ProviderEntityIDIn(vs ...string) predicate.EntityIntegrationMapping

ProviderEntityIDIn applies the In predicate on the "provider_entity_id" field.

func ProviderEntityIDLT

func ProviderEntityIDLT(v string) predicate.EntityIntegrationMapping

ProviderEntityIDLT applies the LT predicate on the "provider_entity_id" field.

func ProviderEntityIDLTE

func ProviderEntityIDLTE(v string) predicate.EntityIntegrationMapping

ProviderEntityIDLTE applies the LTE predicate on the "provider_entity_id" field.

func ProviderEntityIDNEQ

func ProviderEntityIDNEQ(v string) predicate.EntityIntegrationMapping

ProviderEntityIDNEQ applies the NEQ predicate on the "provider_entity_id" field.

func ProviderEntityIDNotIn

func ProviderEntityIDNotIn(vs ...string) predicate.EntityIntegrationMapping

ProviderEntityIDNotIn applies the NotIn predicate on the "provider_entity_id" field.

func ProviderType

ProviderType applies equality check predicate on the "provider_type" field. It's identical to ProviderTypeEQ.

func ProviderTypeContains

func ProviderTypeContains(v string) predicate.EntityIntegrationMapping

ProviderTypeContains applies the Contains predicate on the "provider_type" field.

func ProviderTypeContainsFold

func ProviderTypeContainsFold(v string) predicate.EntityIntegrationMapping

ProviderTypeContainsFold applies the ContainsFold predicate on the "provider_type" field.

func ProviderTypeEQ

func ProviderTypeEQ(v string) predicate.EntityIntegrationMapping

ProviderTypeEQ applies the EQ predicate on the "provider_type" field.

func ProviderTypeEqualFold

func ProviderTypeEqualFold(v string) predicate.EntityIntegrationMapping

ProviderTypeEqualFold applies the EqualFold predicate on the "provider_type" field.

func ProviderTypeGT

func ProviderTypeGT(v string) predicate.EntityIntegrationMapping

ProviderTypeGT applies the GT predicate on the "provider_type" field.

func ProviderTypeGTE

func ProviderTypeGTE(v string) predicate.EntityIntegrationMapping

ProviderTypeGTE applies the GTE predicate on the "provider_type" field.

func ProviderTypeHasPrefix

func ProviderTypeHasPrefix(v string) predicate.EntityIntegrationMapping

ProviderTypeHasPrefix applies the HasPrefix predicate on the "provider_type" field.

func ProviderTypeHasSuffix

func ProviderTypeHasSuffix(v string) predicate.EntityIntegrationMapping

ProviderTypeHasSuffix applies the HasSuffix predicate on the "provider_type" field.

func ProviderTypeIn

func ProviderTypeIn(vs ...string) predicate.EntityIntegrationMapping

ProviderTypeIn applies the In predicate on the "provider_type" field.

func ProviderTypeLT

func ProviderTypeLT(v string) predicate.EntityIntegrationMapping

ProviderTypeLT applies the LT predicate on the "provider_type" field.

func ProviderTypeLTE

func ProviderTypeLTE(v string) predicate.EntityIntegrationMapping

ProviderTypeLTE applies the LTE predicate on the "provider_type" field.

func ProviderTypeNEQ

func ProviderTypeNEQ(v string) predicate.EntityIntegrationMapping

ProviderTypeNEQ applies the NEQ predicate on the "provider_type" field.

func ProviderTypeNotIn

func ProviderTypeNotIn(vs ...string) predicate.EntityIntegrationMapping

ProviderTypeNotIn applies the NotIn predicate on the "provider_type" field.

func Status

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

func StatusContains

func StatusContains(v string) predicate.EntityIntegrationMapping

StatusContains applies the Contains predicate on the "status" field.

func StatusContainsFold

func StatusContainsFold(v string) predicate.EntityIntegrationMapping

StatusContainsFold applies the ContainsFold predicate on the "status" field.

func StatusEQ

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

func StatusEqualFold

func StatusEqualFold(v string) predicate.EntityIntegrationMapping

StatusEqualFold applies the EqualFold predicate on the "status" field.

func StatusGT

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

func StatusGTE

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

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.EntityIntegrationMapping

StatusHasPrefix applies the HasPrefix predicate on the "status" field.

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.EntityIntegrationMapping

StatusHasSuffix applies the HasSuffix predicate on the "status" field.

func StatusIn

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

func StatusLT

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

func StatusLTE

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

func StatusNEQ

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

func StatusNotIn

func StatusNotIn(vs ...string) predicate.EntityIntegrationMapping

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

func TenantID

TenantID applies equality check predicate on the "tenant_id" field. It's identical to TenantIDEQ.

func TenantIDContains

func TenantIDContains(v string) predicate.EntityIntegrationMapping

TenantIDContains applies the Contains predicate on the "tenant_id" field.

func TenantIDContainsFold

func TenantIDContainsFold(v string) predicate.EntityIntegrationMapping

TenantIDContainsFold applies the ContainsFold predicate on the "tenant_id" field.

func TenantIDEQ

TenantIDEQ applies the EQ predicate on the "tenant_id" field.

func TenantIDEqualFold

func TenantIDEqualFold(v string) predicate.EntityIntegrationMapping

TenantIDEqualFold applies the EqualFold predicate on the "tenant_id" field.

func TenantIDGT

TenantIDGT applies the GT predicate on the "tenant_id" field.

func TenantIDGTE

TenantIDGTE applies the GTE predicate on the "tenant_id" field.

func TenantIDHasPrefix

func TenantIDHasPrefix(v string) predicate.EntityIntegrationMapping

TenantIDHasPrefix applies the HasPrefix predicate on the "tenant_id" field.

func TenantIDHasSuffix

func TenantIDHasSuffix(v string) predicate.EntityIntegrationMapping

TenantIDHasSuffix applies the HasSuffix predicate on the "tenant_id" field.

func TenantIDIn

func TenantIDIn(vs ...string) predicate.EntityIntegrationMapping

TenantIDIn applies the In predicate on the "tenant_id" field.

func TenantIDLT

TenantIDLT applies the LT predicate on the "tenant_id" field.

func TenantIDLTE

TenantIDLTE applies the LTE predicate on the "tenant_id" field.

func TenantIDNEQ

TenantIDNEQ applies the NEQ predicate on the "tenant_id" field.

func TenantIDNotIn

func TenantIDNotIn(vs ...string) predicate.EntityIntegrationMapping

TenantIDNotIn applies the NotIn predicate on the "tenant_id" field.

func UpdatedAt

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

func UpdatedAtEQ

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

func UpdatedAtGT

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

func UpdatedAtGTE

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

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.EntityIntegrationMapping

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

func UpdatedAtLT

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

func UpdatedAtLTE

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

func UpdatedAtNEQ

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

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.EntityIntegrationMapping

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UpdatedBy

UpdatedBy applies equality check predicate on the "updated_by" field. It's identical to UpdatedByEQ.

func UpdatedByContains

func UpdatedByContains(v string) predicate.EntityIntegrationMapping

UpdatedByContains applies the Contains predicate on the "updated_by" field.

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.EntityIntegrationMapping

UpdatedByContainsFold applies the ContainsFold predicate on the "updated_by" field.

func UpdatedByEQ

UpdatedByEQ applies the EQ predicate on the "updated_by" field.

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.EntityIntegrationMapping

UpdatedByEqualFold applies the EqualFold predicate on the "updated_by" field.

func UpdatedByGT

UpdatedByGT applies the GT predicate on the "updated_by" field.

func UpdatedByGTE

UpdatedByGTE applies the GTE predicate on the "updated_by" field.

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.EntityIntegrationMapping

UpdatedByHasPrefix applies the HasPrefix predicate on the "updated_by" field.

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.EntityIntegrationMapping

UpdatedByHasSuffix applies the HasSuffix predicate on the "updated_by" field.

func UpdatedByIn

func UpdatedByIn(vs ...string) predicate.EntityIntegrationMapping

UpdatedByIn applies the In predicate on the "updated_by" field.

func UpdatedByIsNil

func UpdatedByIsNil() predicate.EntityIntegrationMapping

UpdatedByIsNil applies the IsNil predicate on the "updated_by" field.

func UpdatedByLT

UpdatedByLT applies the LT predicate on the "updated_by" field.

func UpdatedByLTE

UpdatedByLTE applies the LTE predicate on the "updated_by" field.

func UpdatedByNEQ

UpdatedByNEQ applies the NEQ predicate on the "updated_by" field.

func UpdatedByNotIn

func UpdatedByNotIn(vs ...string) predicate.EntityIntegrationMapping

UpdatedByNotIn applies the NotIn predicate on the "updated_by" field.

func UpdatedByNotNil

func UpdatedByNotNil() predicate.EntityIntegrationMapping

UpdatedByNotNil applies the NotNil predicate on the "updated_by" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the EntityIntegrationMapping queries.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByCreatedBy

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

ByCreatedBy orders the results by the created_by field.

func ByEntityID

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

ByEntityID orders the results by the entity_id field.

func ByEntityType

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

ByEntityType orders the results by the entity_type field.

func ByEnvironmentID

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

ByEnvironmentID orders the results by the environment_id field.

func ByID

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

ByID orders the results by the id field.

func ByProviderEntityID

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

ByProviderEntityID orders the results by the provider_entity_id field.

func ByProviderType

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

ByProviderType orders the results by the provider_type field.

func ByStatus

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

ByStatus orders the results by the status field.

func ByTenantID

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

ByTenantID orders the results by the tenant_id field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

func ByUpdatedBy

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

ByUpdatedBy orders the results by the updated_by field.

Jump to

Keyboard shortcuts

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