trustcenter

package
v1.12.1 Latest Latest
Warning

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

Go to latest
Published: Mar 20, 2026 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the trustcenter type in the database.
	Label = "trust_center"
	// 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"
	// 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"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// FieldDeletedBy holds the string denoting the deleted_by field in the database.
	FieldDeletedBy = "deleted_by"
	// FieldTags holds the string denoting the tags field in the database.
	FieldTags = "tags"
	// FieldOwnerID holds the string denoting the owner_id field in the database.
	FieldOwnerID = "owner_id"
	// FieldSlug holds the string denoting the slug field in the database.
	FieldSlug = "slug"
	// FieldCustomDomainID holds the string denoting the custom_domain_id field in the database.
	FieldCustomDomainID = "custom_domain_id"
	// FieldPreviewDomainID holds the string denoting the preview_domain_id field in the database.
	FieldPreviewDomainID = "preview_domain_id"
	// FieldPirschDomainID holds the string denoting the pirsch_domain_id field in the database.
	FieldPirschDomainID = "pirsch_domain_id"
	// FieldPirschIdentificationCode holds the string denoting the pirsch_identification_code field in the database.
	FieldPirschIdentificationCode = "pirsch_identification_code"
	// FieldPirschAccessLink holds the string denoting the pirsch_access_link field in the database.
	FieldPirschAccessLink = "pirsch_access_link"
	// FieldPreviewStatus holds the string denoting the preview_status field in the database.
	FieldPreviewStatus = "preview_status"
	// FieldSubprocessorURL holds the string denoting the subprocessor_url field in the database.
	FieldSubprocessorURL = "subprocessor_url"
	// EdgeOwner holds the string denoting the owner edge name in mutations.
	EdgeOwner = "owner"
	// EdgeBlockedGroups holds the string denoting the blocked_groups edge name in mutations.
	EdgeBlockedGroups = "blocked_groups"
	// EdgeEditors holds the string denoting the editors edge name in mutations.
	EdgeEditors = "editors"
	// EdgeCustomDomain holds the string denoting the custom_domain edge name in mutations.
	EdgeCustomDomain = "custom_domain"
	// EdgePreviewDomain holds the string denoting the preview_domain edge name in mutations.
	EdgePreviewDomain = "preview_domain"
	// EdgeSetting holds the string denoting the setting edge name in mutations.
	EdgeSetting = "setting"
	// EdgePreviewSetting holds the string denoting the preview_setting edge name in mutations.
	EdgePreviewSetting = "preview_setting"
	// EdgeWatermarkConfig holds the string denoting the watermark_config edge name in mutations.
	EdgeWatermarkConfig = "watermark_config"
	// EdgeTrustCenterSubprocessors holds the string denoting the trust_center_subprocessors edge name in mutations.
	EdgeTrustCenterSubprocessors = "trust_center_subprocessors"
	// EdgeTrustCenterDocs holds the string denoting the trust_center_docs edge name in mutations.
	EdgeTrustCenterDocs = "trust_center_docs"
	// EdgeTrustCenterCompliances holds the string denoting the trust_center_compliances edge name in mutations.
	EdgeTrustCenterCompliances = "trust_center_compliances"
	// EdgeTemplates holds the string denoting the templates edge name in mutations.
	EdgeTemplates = "templates"
	// EdgePosts holds the string denoting the posts edge name in mutations.
	EdgePosts = "posts"
	// EdgeTrustCenterEntities holds the string denoting the trust_center_entities edge name in mutations.
	EdgeTrustCenterEntities = "trust_center_entities"
	// EdgeTrustCenterNdaRequests holds the string denoting the trust_center_nda_requests edge name in mutations.
	EdgeTrustCenterNdaRequests = "trust_center_nda_requests"
	// EdgeTrustCenterFaqs holds the string denoting the trust_center_faqs edge name in mutations.
	EdgeTrustCenterFaqs = "trust_center_faqs"
	// Table holds the table name of the trustcenter in the database.
	Table = "trust_centers"
	// OwnerTable is the table that holds the owner relation/edge.
	OwnerTable = "trust_centers"
	// OwnerInverseTable is the table name for the Organization entity.
	// It exists in this package in order to avoid circular dependency with the "organization" package.
	OwnerInverseTable = "organizations"
	// OwnerColumn is the table column denoting the owner relation/edge.
	OwnerColumn = "owner_id"
	// BlockedGroupsTable is the table that holds the blocked_groups relation/edge.
	BlockedGroupsTable = "groups"
	// BlockedGroupsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	BlockedGroupsInverseTable = "groups"
	// BlockedGroupsColumn is the table column denoting the blocked_groups relation/edge.
	BlockedGroupsColumn = "trust_center_blocked_groups"
	// EditorsTable is the table that holds the editors relation/edge.
	EditorsTable = "groups"
	// EditorsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	EditorsInverseTable = "groups"
	// EditorsColumn is the table column denoting the editors relation/edge.
	EditorsColumn = "trust_center_editors"
	// CustomDomainTable is the table that holds the custom_domain relation/edge.
	CustomDomainTable = "trust_centers"
	// CustomDomainInverseTable is the table name for the CustomDomain entity.
	// It exists in this package in order to avoid circular dependency with the "customdomain" package.
	CustomDomainInverseTable = "custom_domains"
	// CustomDomainColumn is the table column denoting the custom_domain relation/edge.
	CustomDomainColumn = "custom_domain_id"
	// PreviewDomainTable is the table that holds the preview_domain relation/edge.
	PreviewDomainTable = "trust_centers"
	// PreviewDomainInverseTable is the table name for the CustomDomain entity.
	// It exists in this package in order to avoid circular dependency with the "customdomain" package.
	PreviewDomainInverseTable = "custom_domains"
	// PreviewDomainColumn is the table column denoting the preview_domain relation/edge.
	PreviewDomainColumn = "preview_domain_id"
	// SettingTable is the table that holds the setting relation/edge.
	SettingTable = "trust_centers"
	// SettingInverseTable is the table name for the TrustCenterSetting entity.
	// It exists in this package in order to avoid circular dependency with the "trustcentersetting" package.
	SettingInverseTable = "trust_center_settings"
	// SettingColumn is the table column denoting the setting relation/edge.
	SettingColumn = "trust_center_setting"
	// PreviewSettingTable is the table that holds the preview_setting relation/edge.
	PreviewSettingTable = "trust_centers"
	// PreviewSettingInverseTable is the table name for the TrustCenterSetting entity.
	// It exists in this package in order to avoid circular dependency with the "trustcentersetting" package.
	PreviewSettingInverseTable = "trust_center_settings"
	// PreviewSettingColumn is the table column denoting the preview_setting relation/edge.
	PreviewSettingColumn = "trust_center_preview_setting"
	// WatermarkConfigTable is the table that holds the watermark_config relation/edge.
	WatermarkConfigTable = "trust_centers"
	// WatermarkConfigInverseTable is the table name for the TrustCenterWatermarkConfig entity.
	// It exists in this package in order to avoid circular dependency with the "trustcenterwatermarkconfig" package.
	WatermarkConfigInverseTable = "trust_center_watermark_configs"
	// WatermarkConfigColumn is the table column denoting the watermark_config relation/edge.
	WatermarkConfigColumn = "trust_center_watermark_config"
	// TrustCenterSubprocessorsTable is the table that holds the trust_center_subprocessors relation/edge.
	TrustCenterSubprocessorsTable = "trust_center_subprocessors"
	// TrustCenterSubprocessorsInverseTable is the table name for the TrustCenterSubprocessor entity.
	// It exists in this package in order to avoid circular dependency with the "trustcentersubprocessor" package.
	TrustCenterSubprocessorsInverseTable = "trust_center_subprocessors"
	// TrustCenterSubprocessorsColumn is the table column denoting the trust_center_subprocessors relation/edge.
	TrustCenterSubprocessorsColumn = "trust_center_id"
	// TrustCenterDocsTable is the table that holds the trust_center_docs relation/edge.
	TrustCenterDocsTable = "trust_center_docs"
	// TrustCenterDocsInverseTable is the table name for the TrustCenterDoc entity.
	// It exists in this package in order to avoid circular dependency with the "trustcenterdoc" package.
	TrustCenterDocsInverseTable = "trust_center_docs"
	// TrustCenterDocsColumn is the table column denoting the trust_center_docs relation/edge.
	TrustCenterDocsColumn = "trust_center_id"
	// TrustCenterCompliancesTable is the table that holds the trust_center_compliances relation/edge.
	TrustCenterCompliancesTable = "trust_center_compliances"
	// TrustCenterCompliancesInverseTable is the table name for the TrustCenterCompliance entity.
	// It exists in this package in order to avoid circular dependency with the "trustcentercompliance" package.
	TrustCenterCompliancesInverseTable = "trust_center_compliances"
	// TrustCenterCompliancesColumn is the table column denoting the trust_center_compliances relation/edge.
	TrustCenterCompliancesColumn = "trust_center_id"
	// TemplatesTable is the table that holds the templates relation/edge.
	TemplatesTable = "templates"
	// TemplatesInverseTable is the table name for the Template entity.
	// It exists in this package in order to avoid circular dependency with the "template" package.
	TemplatesInverseTable = "templates"
	// TemplatesColumn is the table column denoting the templates relation/edge.
	TemplatesColumn = "trust_center_id"
	// PostsTable is the table that holds the posts relation/edge.
	PostsTable = "notes"
	// PostsInverseTable is the table name for the Note entity.
	// It exists in this package in order to avoid circular dependency with the "note" package.
	PostsInverseTable = "notes"
	// PostsColumn is the table column denoting the posts relation/edge.
	PostsColumn = "trust_center_id"
	// TrustCenterEntitiesTable is the table that holds the trust_center_entities relation/edge.
	TrustCenterEntitiesTable = "trust_center_entities"
	// TrustCenterEntitiesInverseTable is the table name for the TrustCenterEntity entity.
	// It exists in this package in order to avoid circular dependency with the "trustcenterentity" package.
	TrustCenterEntitiesInverseTable = "trust_center_entities"
	// TrustCenterEntitiesColumn is the table column denoting the trust_center_entities relation/edge.
	TrustCenterEntitiesColumn = "trust_center_id"
	// TrustCenterNdaRequestsTable is the table that holds the trust_center_nda_requests relation/edge.
	TrustCenterNdaRequestsTable = "trust_center_nda_requests"
	// TrustCenterNdaRequestsInverseTable is the table name for the TrustCenterNDARequest entity.
	// It exists in this package in order to avoid circular dependency with the "trustcenterndarequest" package.
	TrustCenterNdaRequestsInverseTable = "trust_center_nda_requests"
	// TrustCenterNdaRequestsColumn is the table column denoting the trust_center_nda_requests relation/edge.
	TrustCenterNdaRequestsColumn = "trust_center_id"
	// TrustCenterFaqsTable is the table that holds the trust_center_faqs relation/edge.
	TrustCenterFaqsTable = "trust_center_faqs"
	// TrustCenterFaqsInverseTable is the table name for the TrustCenterFAQ entity.
	// It exists in this package in order to avoid circular dependency with the "trustcenterfaq" package.
	TrustCenterFaqsInverseTable = "trust_center_faqs"
	// TrustCenterFaqsColumn is the table column denoting the trust_center_faqs relation/edge.
	TrustCenterFaqsColumn = "trust_center_id"
)
View Source
const DefaultPreviewStatus enums.TrustCenterPreviewStatus = "NONE"

Variables

View Source
var (
	Hooks        [11]ent.Hook
	Interceptors [3]ent.Interceptor
	Policy       ent.Policy
	// 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
	// DefaultTags holds the default value on creation for the "tags" field.
	DefaultTags []string
	// SlugValidator is a validator for the "slug" field. It is called by the builders before save.
	SlugValidator func(string) error
	// PirschAccessLinkValidator is a validator for the "pirsch_access_link" field. It is called by the builders before save.
	PirschAccessLinkValidator func(string) error
	// SubprocessorURLValidator is a validator for the "subprocessor_url" field. It is called by the builders before save.
	SubprocessorURLValidator func(string) error
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/theopenlane/core/internal/ent/generated/runtime"

Columns holds all SQL columns for trustcenter fields.

View Source
var ForeignKeys = []string{
	"trust_center_setting",
	"trust_center_preview_setting",
	"trust_center_watermark_config",
}

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

Functions

func And

func And(predicates ...predicate.TrustCenter) predicate.TrustCenter

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.TrustCenter

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.TrustCenter

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.TrustCenter

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.TrustCenter

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.TrustCenter

CreatedAtIsNil applies the IsNil predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.TrustCenter

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.TrustCenter

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.TrustCenter

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.TrustCenter

CreatedAtNotNil applies the NotNil predicate on the "created_at" field.

func CreatedBy

func CreatedBy(v string) predicate.TrustCenter

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

func CreatedByContains

func CreatedByContains(v string) predicate.TrustCenter

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.TrustCenter

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.TrustCenter

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.TrustCenter

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

func CreatedByGT

func CreatedByGT(v string) predicate.TrustCenter

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.TrustCenter

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.TrustCenter

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.TrustCenter

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.TrustCenter

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

func CreatedByLT

func CreatedByLT(v string) predicate.TrustCenter

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.TrustCenter

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.TrustCenter

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.TrustCenter

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

func CustomDomainID

func CustomDomainID(v string) predicate.TrustCenter

CustomDomainID applies equality check predicate on the "custom_domain_id" field. It's identical to CustomDomainIDEQ.

func CustomDomainIDContains

func CustomDomainIDContains(v string) predicate.TrustCenter

CustomDomainIDContains applies the Contains predicate on the "custom_domain_id" field.

func CustomDomainIDContainsFold

func CustomDomainIDContainsFold(v string) predicate.TrustCenter

CustomDomainIDContainsFold applies the ContainsFold predicate on the "custom_domain_id" field.

func CustomDomainIDEQ

func CustomDomainIDEQ(v string) predicate.TrustCenter

CustomDomainIDEQ applies the EQ predicate on the "custom_domain_id" field.

func CustomDomainIDEqualFold

func CustomDomainIDEqualFold(v string) predicate.TrustCenter

CustomDomainIDEqualFold applies the EqualFold predicate on the "custom_domain_id" field.

func CustomDomainIDGT

func CustomDomainIDGT(v string) predicate.TrustCenter

CustomDomainIDGT applies the GT predicate on the "custom_domain_id" field.

func CustomDomainIDGTE

func CustomDomainIDGTE(v string) predicate.TrustCenter

CustomDomainIDGTE applies the GTE predicate on the "custom_domain_id" field.

func CustomDomainIDHasPrefix

func CustomDomainIDHasPrefix(v string) predicate.TrustCenter

CustomDomainIDHasPrefix applies the HasPrefix predicate on the "custom_domain_id" field.

func CustomDomainIDHasSuffix

func CustomDomainIDHasSuffix(v string) predicate.TrustCenter

CustomDomainIDHasSuffix applies the HasSuffix predicate on the "custom_domain_id" field.

func CustomDomainIDIn

func CustomDomainIDIn(vs ...string) predicate.TrustCenter

CustomDomainIDIn applies the In predicate on the "custom_domain_id" field.

func CustomDomainIDIsNil

func CustomDomainIDIsNil() predicate.TrustCenter

CustomDomainIDIsNil applies the IsNil predicate on the "custom_domain_id" field.

func CustomDomainIDLT

func CustomDomainIDLT(v string) predicate.TrustCenter

CustomDomainIDLT applies the LT predicate on the "custom_domain_id" field.

func CustomDomainIDLTE

func CustomDomainIDLTE(v string) predicate.TrustCenter

CustomDomainIDLTE applies the LTE predicate on the "custom_domain_id" field.

func CustomDomainIDNEQ

func CustomDomainIDNEQ(v string) predicate.TrustCenter

CustomDomainIDNEQ applies the NEQ predicate on the "custom_domain_id" field.

func CustomDomainIDNotIn

func CustomDomainIDNotIn(vs ...string) predicate.TrustCenter

CustomDomainIDNotIn applies the NotIn predicate on the "custom_domain_id" field.

func CustomDomainIDNotNil

func CustomDomainIDNotNil() predicate.TrustCenter

CustomDomainIDNotNil applies the NotNil predicate on the "custom_domain_id" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.TrustCenter

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.TrustCenter

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.TrustCenter

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.TrustCenter

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.TrustCenter

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.TrustCenter

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.TrustCenter

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.TrustCenter

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.TrustCenter

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

func DeletedBy

func DeletedBy(v string) predicate.TrustCenter

DeletedBy applies equality check predicate on the "deleted_by" field. It's identical to DeletedByEQ.

func DeletedByContains

func DeletedByContains(v string) predicate.TrustCenter

DeletedByContains applies the Contains predicate on the "deleted_by" field.

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.TrustCenter

DeletedByContainsFold applies the ContainsFold predicate on the "deleted_by" field.

func DeletedByEQ

func DeletedByEQ(v string) predicate.TrustCenter

DeletedByEQ applies the EQ predicate on the "deleted_by" field.

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.TrustCenter

DeletedByEqualFold applies the EqualFold predicate on the "deleted_by" field.

func DeletedByGT

func DeletedByGT(v string) predicate.TrustCenter

DeletedByGT applies the GT predicate on the "deleted_by" field.

func DeletedByGTE

func DeletedByGTE(v string) predicate.TrustCenter

DeletedByGTE applies the GTE predicate on the "deleted_by" field.

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.TrustCenter

DeletedByHasPrefix applies the HasPrefix predicate on the "deleted_by" field.

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.TrustCenter

DeletedByHasSuffix applies the HasSuffix predicate on the "deleted_by" field.

func DeletedByIn

func DeletedByIn(vs ...string) predicate.TrustCenter

DeletedByIn applies the In predicate on the "deleted_by" field.

func DeletedByIsNil

func DeletedByIsNil() predicate.TrustCenter

DeletedByIsNil applies the IsNil predicate on the "deleted_by" field.

func DeletedByLT

func DeletedByLT(v string) predicate.TrustCenter

DeletedByLT applies the LT predicate on the "deleted_by" field.

func DeletedByLTE

func DeletedByLTE(v string) predicate.TrustCenter

DeletedByLTE applies the LTE predicate on the "deleted_by" field.

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.TrustCenter

DeletedByNEQ applies the NEQ predicate on the "deleted_by" field.

func DeletedByNotIn

func DeletedByNotIn(vs ...string) predicate.TrustCenter

DeletedByNotIn applies the NotIn predicate on the "deleted_by" field.

func DeletedByNotNil

func DeletedByNotNil() predicate.TrustCenter

DeletedByNotNil applies the NotNil predicate on the "deleted_by" field.

func HasBlockedGroups added in v1.3.0

func HasBlockedGroups() predicate.TrustCenter

HasBlockedGroups applies the HasEdge predicate on the "blocked_groups" edge.

func HasBlockedGroupsWith added in v1.3.0

func HasBlockedGroupsWith(preds ...predicate.Group) predicate.TrustCenter

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

func HasCustomDomain

func HasCustomDomain() predicate.TrustCenter

HasCustomDomain applies the HasEdge predicate on the "custom_domain" edge.

func HasCustomDomainWith

func HasCustomDomainWith(preds ...predicate.CustomDomain) predicate.TrustCenter

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

func HasEditors added in v1.3.0

func HasEditors() predicate.TrustCenter

HasEditors applies the HasEdge predicate on the "editors" edge.

func HasEditorsWith added in v1.3.0

func HasEditorsWith(preds ...predicate.Group) predicate.TrustCenter

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

func HasOwner

func HasOwner() predicate.TrustCenter

HasOwner applies the HasEdge predicate on the "owner" edge.

func HasOwnerWith

func HasOwnerWith(preds ...predicate.Organization) predicate.TrustCenter

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

func HasPosts added in v0.45.0

func HasPosts() predicate.TrustCenter

HasPosts applies the HasEdge predicate on the "posts" edge.

func HasPostsWith added in v0.45.0

func HasPostsWith(preds ...predicate.Note) predicate.TrustCenter

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

func HasPreviewDomain added in v0.46.6

func HasPreviewDomain() predicate.TrustCenter

HasPreviewDomain applies the HasEdge predicate on the "preview_domain" edge.

func HasPreviewDomainWith added in v0.46.6

func HasPreviewDomainWith(preds ...predicate.CustomDomain) predicate.TrustCenter

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

func HasPreviewSetting added in v0.46.6

func HasPreviewSetting() predicate.TrustCenter

HasPreviewSetting applies the HasEdge predicate on the "preview_setting" edge.

func HasPreviewSettingWith added in v0.46.6

func HasPreviewSettingWith(preds ...predicate.TrustCenterSetting) predicate.TrustCenter

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

func HasSetting

func HasSetting() predicate.TrustCenter

HasSetting applies the HasEdge predicate on the "setting" edge.

func HasSettingWith

func HasSettingWith(preds ...predicate.TrustCenterSetting) predicate.TrustCenter

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

func HasTemplates added in v0.34.1

func HasTemplates() predicate.TrustCenter

HasTemplates applies the HasEdge predicate on the "templates" edge.

func HasTemplatesWith added in v0.34.1

func HasTemplatesWith(preds ...predicate.Template) predicate.TrustCenter

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

func HasTrustCenterCompliances added in v0.28.2

func HasTrustCenterCompliances() predicate.TrustCenter

HasTrustCenterCompliances applies the HasEdge predicate on the "trust_center_compliances" edge.

func HasTrustCenterCompliancesWith added in v0.28.2

func HasTrustCenterCompliancesWith(preds ...predicate.TrustCenterCompliance) predicate.TrustCenter

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

func HasTrustCenterDocs added in v0.34.0

func HasTrustCenterDocs() predicate.TrustCenter

HasTrustCenterDocs applies the HasEdge predicate on the "trust_center_docs" edge.

func HasTrustCenterDocsWith added in v0.34.0

func HasTrustCenterDocsWith(preds ...predicate.TrustCenterDoc) predicate.TrustCenter

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

func HasTrustCenterEntities added in v1.3.0

func HasTrustCenterEntities() predicate.TrustCenter

HasTrustCenterEntities applies the HasEdge predicate on the "trust_center_entities" edge.

func HasTrustCenterEntitiesWith added in v1.3.0

func HasTrustCenterEntitiesWith(preds ...predicate.TrustCenterEntity) predicate.TrustCenter

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

func HasTrustCenterFaqs added in v1.9.11

func HasTrustCenterFaqs() predicate.TrustCenter

HasTrustCenterFaqs applies the HasEdge predicate on the "trust_center_faqs" edge.

func HasTrustCenterFaqsWith added in v1.9.11

func HasTrustCenterFaqsWith(preds ...predicate.TrustCenterFAQ) predicate.TrustCenter

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

func HasTrustCenterNdaRequests added in v1.3.5

func HasTrustCenterNdaRequests() predicate.TrustCenter

HasTrustCenterNdaRequests applies the HasEdge predicate on the "trust_center_nda_requests" edge.

func HasTrustCenterNdaRequestsWith added in v1.3.5

func HasTrustCenterNdaRequestsWith(preds ...predicate.TrustCenterNDARequest) predicate.TrustCenter

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

func HasTrustCenterSubprocessors added in v0.23.0

func HasTrustCenterSubprocessors() predicate.TrustCenter

HasTrustCenterSubprocessors applies the HasEdge predicate on the "trust_center_subprocessors" edge.

func HasTrustCenterSubprocessorsWith added in v0.23.0

func HasTrustCenterSubprocessorsWith(preds ...predicate.TrustCenterSubprocessor) predicate.TrustCenter

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

func HasWatermarkConfig added in v0.34.5

func HasWatermarkConfig() predicate.TrustCenter

HasWatermarkConfig applies the HasEdge predicate on the "watermark_config" edge.

func HasWatermarkConfigWith added in v0.34.5

func HasWatermarkConfigWith(preds ...predicate.TrustCenterWatermarkConfig) predicate.TrustCenter

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.TrustCenter

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.TrustCenter

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.TrustCenter

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.TrustCenter

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.TrustCenter

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.TrustCenter

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.TrustCenter

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.TrustCenter

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.TrustCenter) predicate.TrustCenter

Or groups predicates with the OR operator between them.

func OwnerID

func OwnerID(v string) predicate.TrustCenter

OwnerID applies equality check predicate on the "owner_id" field. It's identical to OwnerIDEQ.

func OwnerIDContains

func OwnerIDContains(v string) predicate.TrustCenter

OwnerIDContains applies the Contains predicate on the "owner_id" field.

func OwnerIDContainsFold

func OwnerIDContainsFold(v string) predicate.TrustCenter

OwnerIDContainsFold applies the ContainsFold predicate on the "owner_id" field.

func OwnerIDEQ

func OwnerIDEQ(v string) predicate.TrustCenter

OwnerIDEQ applies the EQ predicate on the "owner_id" field.

func OwnerIDEqualFold

func OwnerIDEqualFold(v string) predicate.TrustCenter

OwnerIDEqualFold applies the EqualFold predicate on the "owner_id" field.

func OwnerIDGT

func OwnerIDGT(v string) predicate.TrustCenter

OwnerIDGT applies the GT predicate on the "owner_id" field.

func OwnerIDGTE

func OwnerIDGTE(v string) predicate.TrustCenter

OwnerIDGTE applies the GTE predicate on the "owner_id" field.

func OwnerIDHasPrefix

func OwnerIDHasPrefix(v string) predicate.TrustCenter

OwnerIDHasPrefix applies the HasPrefix predicate on the "owner_id" field.

func OwnerIDHasSuffix

func OwnerIDHasSuffix(v string) predicate.TrustCenter

OwnerIDHasSuffix applies the HasSuffix predicate on the "owner_id" field.

func OwnerIDIn

func OwnerIDIn(vs ...string) predicate.TrustCenter

OwnerIDIn applies the In predicate on the "owner_id" field.

func OwnerIDIsNil

func OwnerIDIsNil() predicate.TrustCenter

OwnerIDIsNil applies the IsNil predicate on the "owner_id" field.

func OwnerIDLT

func OwnerIDLT(v string) predicate.TrustCenter

OwnerIDLT applies the LT predicate on the "owner_id" field.

func OwnerIDLTE

func OwnerIDLTE(v string) predicate.TrustCenter

OwnerIDLTE applies the LTE predicate on the "owner_id" field.

func OwnerIDNEQ

func OwnerIDNEQ(v string) predicate.TrustCenter

OwnerIDNEQ applies the NEQ predicate on the "owner_id" field.

func OwnerIDNotIn

func OwnerIDNotIn(vs ...string) predicate.TrustCenter

OwnerIDNotIn applies the NotIn predicate on the "owner_id" field.

func OwnerIDNotNil

func OwnerIDNotNil() predicate.TrustCenter

OwnerIDNotNil applies the NotNil predicate on the "owner_id" field.

func PirschAccessLink(v string) predicate.TrustCenter

PirschAccessLink applies equality check predicate on the "pirsch_access_link" field. It's identical to PirschAccessLinkEQ.

func PirschAccessLinkContains added in v1.5.10

func PirschAccessLinkContains(v string) predicate.TrustCenter

PirschAccessLinkContains applies the Contains predicate on the "pirsch_access_link" field.

func PirschAccessLinkContainsFold added in v1.5.10

func PirschAccessLinkContainsFold(v string) predicate.TrustCenter

PirschAccessLinkContainsFold applies the ContainsFold predicate on the "pirsch_access_link" field.

func PirschAccessLinkEQ added in v1.5.10

func PirschAccessLinkEQ(v string) predicate.TrustCenter

PirschAccessLinkEQ applies the EQ predicate on the "pirsch_access_link" field.

func PirschAccessLinkEqualFold added in v1.5.10

func PirschAccessLinkEqualFold(v string) predicate.TrustCenter

PirschAccessLinkEqualFold applies the EqualFold predicate on the "pirsch_access_link" field.

func PirschAccessLinkGT added in v1.5.10

func PirschAccessLinkGT(v string) predicate.TrustCenter

PirschAccessLinkGT applies the GT predicate on the "pirsch_access_link" field.

func PirschAccessLinkGTE added in v1.5.10

func PirschAccessLinkGTE(v string) predicate.TrustCenter

PirschAccessLinkGTE applies the GTE predicate on the "pirsch_access_link" field.

func PirschAccessLinkHasPrefix added in v1.5.10

func PirschAccessLinkHasPrefix(v string) predicate.TrustCenter

PirschAccessLinkHasPrefix applies the HasPrefix predicate on the "pirsch_access_link" field.

func PirschAccessLinkHasSuffix added in v1.5.10

func PirschAccessLinkHasSuffix(v string) predicate.TrustCenter

PirschAccessLinkHasSuffix applies the HasSuffix predicate on the "pirsch_access_link" field.

func PirschAccessLinkIn added in v1.5.10

func PirschAccessLinkIn(vs ...string) predicate.TrustCenter

PirschAccessLinkIn applies the In predicate on the "pirsch_access_link" field.

func PirschAccessLinkIsNil added in v1.5.10

func PirschAccessLinkIsNil() predicate.TrustCenter

PirschAccessLinkIsNil applies the IsNil predicate on the "pirsch_access_link" field.

func PirschAccessLinkLT added in v1.5.10

func PirschAccessLinkLT(v string) predicate.TrustCenter

PirschAccessLinkLT applies the LT predicate on the "pirsch_access_link" field.

func PirschAccessLinkLTE added in v1.5.10

func PirschAccessLinkLTE(v string) predicate.TrustCenter

PirschAccessLinkLTE applies the LTE predicate on the "pirsch_access_link" field.

func PirschAccessLinkNEQ added in v1.5.10

func PirschAccessLinkNEQ(v string) predicate.TrustCenter

PirschAccessLinkNEQ applies the NEQ predicate on the "pirsch_access_link" field.

func PirschAccessLinkNotIn added in v1.5.10

func PirschAccessLinkNotIn(vs ...string) predicate.TrustCenter

PirschAccessLinkNotIn applies the NotIn predicate on the "pirsch_access_link" field.

func PirschAccessLinkNotNil added in v1.5.10

func PirschAccessLinkNotNil() predicate.TrustCenter

PirschAccessLinkNotNil applies the NotNil predicate on the "pirsch_access_link" field.

func PirschDomainID added in v0.45.8

func PirschDomainID(v string) predicate.TrustCenter

PirschDomainID applies equality check predicate on the "pirsch_domain_id" field. It's identical to PirschDomainIDEQ.

func PirschDomainIDContains added in v0.45.8

func PirschDomainIDContains(v string) predicate.TrustCenter

PirschDomainIDContains applies the Contains predicate on the "pirsch_domain_id" field.

func PirschDomainIDContainsFold added in v0.45.8

func PirschDomainIDContainsFold(v string) predicate.TrustCenter

PirschDomainIDContainsFold applies the ContainsFold predicate on the "pirsch_domain_id" field.

func PirschDomainIDEQ added in v0.45.8

func PirschDomainIDEQ(v string) predicate.TrustCenter

PirschDomainIDEQ applies the EQ predicate on the "pirsch_domain_id" field.

func PirschDomainIDEqualFold added in v0.45.8

func PirschDomainIDEqualFold(v string) predicate.TrustCenter

PirschDomainIDEqualFold applies the EqualFold predicate on the "pirsch_domain_id" field.

func PirschDomainIDGT added in v0.45.8

func PirschDomainIDGT(v string) predicate.TrustCenter

PirschDomainIDGT applies the GT predicate on the "pirsch_domain_id" field.

func PirschDomainIDGTE added in v0.45.8

func PirschDomainIDGTE(v string) predicate.TrustCenter

PirschDomainIDGTE applies the GTE predicate on the "pirsch_domain_id" field.

func PirschDomainIDHasPrefix added in v0.45.8

func PirschDomainIDHasPrefix(v string) predicate.TrustCenter

PirschDomainIDHasPrefix applies the HasPrefix predicate on the "pirsch_domain_id" field.

func PirschDomainIDHasSuffix added in v0.45.8

func PirschDomainIDHasSuffix(v string) predicate.TrustCenter

PirschDomainIDHasSuffix applies the HasSuffix predicate on the "pirsch_domain_id" field.

func PirschDomainIDIn added in v0.45.8

func PirschDomainIDIn(vs ...string) predicate.TrustCenter

PirschDomainIDIn applies the In predicate on the "pirsch_domain_id" field.

func PirschDomainIDIsNil added in v0.45.8

func PirschDomainIDIsNil() predicate.TrustCenter

PirschDomainIDIsNil applies the IsNil predicate on the "pirsch_domain_id" field.

func PirschDomainIDLT added in v0.45.8

func PirschDomainIDLT(v string) predicate.TrustCenter

PirschDomainIDLT applies the LT predicate on the "pirsch_domain_id" field.

func PirschDomainIDLTE added in v0.45.8

func PirschDomainIDLTE(v string) predicate.TrustCenter

PirschDomainIDLTE applies the LTE predicate on the "pirsch_domain_id" field.

func PirschDomainIDNEQ added in v0.45.8

func PirschDomainIDNEQ(v string) predicate.TrustCenter

PirschDomainIDNEQ applies the NEQ predicate on the "pirsch_domain_id" field.

func PirschDomainIDNotIn added in v0.45.8

func PirschDomainIDNotIn(vs ...string) predicate.TrustCenter

PirschDomainIDNotIn applies the NotIn predicate on the "pirsch_domain_id" field.

func PirschDomainIDNotNil added in v0.45.8

func PirschDomainIDNotNil() predicate.TrustCenter

PirschDomainIDNotNil applies the NotNil predicate on the "pirsch_domain_id" field.

func PirschIdentificationCode added in v0.45.8

func PirschIdentificationCode(v string) predicate.TrustCenter

PirschIdentificationCode applies equality check predicate on the "pirsch_identification_code" field. It's identical to PirschIdentificationCodeEQ.

func PirschIdentificationCodeContains added in v0.45.8

func PirschIdentificationCodeContains(v string) predicate.TrustCenter

PirschIdentificationCodeContains applies the Contains predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeContainsFold added in v0.45.8

func PirschIdentificationCodeContainsFold(v string) predicate.TrustCenter

PirschIdentificationCodeContainsFold applies the ContainsFold predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeEQ added in v0.45.8

func PirschIdentificationCodeEQ(v string) predicate.TrustCenter

PirschIdentificationCodeEQ applies the EQ predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeEqualFold added in v0.45.8

func PirschIdentificationCodeEqualFold(v string) predicate.TrustCenter

PirschIdentificationCodeEqualFold applies the EqualFold predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeGT added in v0.45.8

func PirschIdentificationCodeGT(v string) predicate.TrustCenter

PirschIdentificationCodeGT applies the GT predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeGTE added in v0.45.8

func PirschIdentificationCodeGTE(v string) predicate.TrustCenter

PirschIdentificationCodeGTE applies the GTE predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeHasPrefix added in v0.45.8

func PirschIdentificationCodeHasPrefix(v string) predicate.TrustCenter

PirschIdentificationCodeHasPrefix applies the HasPrefix predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeHasSuffix added in v0.45.8

func PirschIdentificationCodeHasSuffix(v string) predicate.TrustCenter

PirschIdentificationCodeHasSuffix applies the HasSuffix predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeIn added in v0.45.8

func PirschIdentificationCodeIn(vs ...string) predicate.TrustCenter

PirschIdentificationCodeIn applies the In predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeIsNil added in v0.45.8

func PirschIdentificationCodeIsNil() predicate.TrustCenter

PirschIdentificationCodeIsNil applies the IsNil predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeLT added in v0.45.8

func PirschIdentificationCodeLT(v string) predicate.TrustCenter

PirschIdentificationCodeLT applies the LT predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeLTE added in v0.45.8

func PirschIdentificationCodeLTE(v string) predicate.TrustCenter

PirschIdentificationCodeLTE applies the LTE predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeNEQ added in v0.45.8

func PirschIdentificationCodeNEQ(v string) predicate.TrustCenter

PirschIdentificationCodeNEQ applies the NEQ predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeNotIn added in v0.45.8

func PirschIdentificationCodeNotIn(vs ...string) predicate.TrustCenter

PirschIdentificationCodeNotIn applies the NotIn predicate on the "pirsch_identification_code" field.

func PirschIdentificationCodeNotNil added in v0.45.8

func PirschIdentificationCodeNotNil() predicate.TrustCenter

PirschIdentificationCodeNotNil applies the NotNil predicate on the "pirsch_identification_code" field.

func PreviewDomainID added in v0.46.6

func PreviewDomainID(v string) predicate.TrustCenter

PreviewDomainID applies equality check predicate on the "preview_domain_id" field. It's identical to PreviewDomainIDEQ.

func PreviewDomainIDContains added in v0.46.6

func PreviewDomainIDContains(v string) predicate.TrustCenter

PreviewDomainIDContains applies the Contains predicate on the "preview_domain_id" field.

func PreviewDomainIDContainsFold added in v0.46.6

func PreviewDomainIDContainsFold(v string) predicate.TrustCenter

PreviewDomainIDContainsFold applies the ContainsFold predicate on the "preview_domain_id" field.

func PreviewDomainIDEQ added in v0.46.6

func PreviewDomainIDEQ(v string) predicate.TrustCenter

PreviewDomainIDEQ applies the EQ predicate on the "preview_domain_id" field.

func PreviewDomainIDEqualFold added in v0.46.6

func PreviewDomainIDEqualFold(v string) predicate.TrustCenter

PreviewDomainIDEqualFold applies the EqualFold predicate on the "preview_domain_id" field.

func PreviewDomainIDGT added in v0.46.6

func PreviewDomainIDGT(v string) predicate.TrustCenter

PreviewDomainIDGT applies the GT predicate on the "preview_domain_id" field.

func PreviewDomainIDGTE added in v0.46.6

func PreviewDomainIDGTE(v string) predicate.TrustCenter

PreviewDomainIDGTE applies the GTE predicate on the "preview_domain_id" field.

func PreviewDomainIDHasPrefix added in v0.46.6

func PreviewDomainIDHasPrefix(v string) predicate.TrustCenter

PreviewDomainIDHasPrefix applies the HasPrefix predicate on the "preview_domain_id" field.

func PreviewDomainIDHasSuffix added in v0.46.6

func PreviewDomainIDHasSuffix(v string) predicate.TrustCenter

PreviewDomainIDHasSuffix applies the HasSuffix predicate on the "preview_domain_id" field.

func PreviewDomainIDIn added in v0.46.6

func PreviewDomainIDIn(vs ...string) predicate.TrustCenter

PreviewDomainIDIn applies the In predicate on the "preview_domain_id" field.

func PreviewDomainIDIsNil added in v0.46.6

func PreviewDomainIDIsNil() predicate.TrustCenter

PreviewDomainIDIsNil applies the IsNil predicate on the "preview_domain_id" field.

func PreviewDomainIDLT added in v0.46.6

func PreviewDomainIDLT(v string) predicate.TrustCenter

PreviewDomainIDLT applies the LT predicate on the "preview_domain_id" field.

func PreviewDomainIDLTE added in v0.46.6

func PreviewDomainIDLTE(v string) predicate.TrustCenter

PreviewDomainIDLTE applies the LTE predicate on the "preview_domain_id" field.

func PreviewDomainIDNEQ added in v0.46.6

func PreviewDomainIDNEQ(v string) predicate.TrustCenter

PreviewDomainIDNEQ applies the NEQ predicate on the "preview_domain_id" field.

func PreviewDomainIDNotIn added in v0.46.6

func PreviewDomainIDNotIn(vs ...string) predicate.TrustCenter

PreviewDomainIDNotIn applies the NotIn predicate on the "preview_domain_id" field.

func PreviewDomainIDNotNil added in v0.46.6

func PreviewDomainIDNotNil() predicate.TrustCenter

PreviewDomainIDNotNil applies the NotNil predicate on the "preview_domain_id" field.

func PreviewStatusEQ added in v0.46.6

PreviewStatusEQ applies the EQ predicate on the "preview_status" field.

func PreviewStatusIn added in v0.46.6

func PreviewStatusIn(vs ...enums.TrustCenterPreviewStatus) predicate.TrustCenter

PreviewStatusIn applies the In predicate on the "preview_status" field.

func PreviewStatusIsNil added in v0.46.6

func PreviewStatusIsNil() predicate.TrustCenter

PreviewStatusIsNil applies the IsNil predicate on the "preview_status" field.

func PreviewStatusNEQ added in v0.46.6

PreviewStatusNEQ applies the NEQ predicate on the "preview_status" field.

func PreviewStatusNotIn added in v0.46.6

func PreviewStatusNotIn(vs ...enums.TrustCenterPreviewStatus) predicate.TrustCenter

PreviewStatusNotIn applies the NotIn predicate on the "preview_status" field.

func PreviewStatusNotNil added in v0.46.6

func PreviewStatusNotNil() predicate.TrustCenter

PreviewStatusNotNil applies the NotNil predicate on the "preview_status" field.

func PreviewStatusValidator added in v0.46.6

func PreviewStatusValidator(ps enums.TrustCenterPreviewStatus) error

PreviewStatusValidator is a validator for the "preview_status" field enum values. It is called by the builders before save.

func Slug

Slug applies equality check predicate on the "slug" field. It's identical to SlugEQ.

func SlugContains

func SlugContains(v string) predicate.TrustCenter

SlugContains applies the Contains predicate on the "slug" field.

func SlugContainsFold

func SlugContainsFold(v string) predicate.TrustCenter

SlugContainsFold applies the ContainsFold predicate on the "slug" field.

func SlugEQ

func SlugEQ(v string) predicate.TrustCenter

SlugEQ applies the EQ predicate on the "slug" field.

func SlugEqualFold

func SlugEqualFold(v string) predicate.TrustCenter

SlugEqualFold applies the EqualFold predicate on the "slug" field.

func SlugGT

func SlugGT(v string) predicate.TrustCenter

SlugGT applies the GT predicate on the "slug" field.

func SlugGTE

func SlugGTE(v string) predicate.TrustCenter

SlugGTE applies the GTE predicate on the "slug" field.

func SlugHasPrefix

func SlugHasPrefix(v string) predicate.TrustCenter

SlugHasPrefix applies the HasPrefix predicate on the "slug" field.

func SlugHasSuffix

func SlugHasSuffix(v string) predicate.TrustCenter

SlugHasSuffix applies the HasSuffix predicate on the "slug" field.

func SlugIn

func SlugIn(vs ...string) predicate.TrustCenter

SlugIn applies the In predicate on the "slug" field.

func SlugIsNil

func SlugIsNil() predicate.TrustCenter

SlugIsNil applies the IsNil predicate on the "slug" field.

func SlugLT

func SlugLT(v string) predicate.TrustCenter

SlugLT applies the LT predicate on the "slug" field.

func SlugLTE

func SlugLTE(v string) predicate.TrustCenter

SlugLTE applies the LTE predicate on the "slug" field.

func SlugNEQ

func SlugNEQ(v string) predicate.TrustCenter

SlugNEQ applies the NEQ predicate on the "slug" field.

func SlugNotIn

func SlugNotIn(vs ...string) predicate.TrustCenter

SlugNotIn applies the NotIn predicate on the "slug" field.

func SlugNotNil

func SlugNotNil() predicate.TrustCenter

SlugNotNil applies the NotNil predicate on the "slug" field.

func SubprocessorURL added in v1.2.2

func SubprocessorURL(v string) predicate.TrustCenter

SubprocessorURL applies equality check predicate on the "subprocessor_url" field. It's identical to SubprocessorURLEQ.

func SubprocessorURLContains added in v1.2.2

func SubprocessorURLContains(v string) predicate.TrustCenter

SubprocessorURLContains applies the Contains predicate on the "subprocessor_url" field.

func SubprocessorURLContainsFold added in v1.2.2

func SubprocessorURLContainsFold(v string) predicate.TrustCenter

SubprocessorURLContainsFold applies the ContainsFold predicate on the "subprocessor_url" field.

func SubprocessorURLEQ added in v1.2.2

func SubprocessorURLEQ(v string) predicate.TrustCenter

SubprocessorURLEQ applies the EQ predicate on the "subprocessor_url" field.

func SubprocessorURLEqualFold added in v1.2.2

func SubprocessorURLEqualFold(v string) predicate.TrustCenter

SubprocessorURLEqualFold applies the EqualFold predicate on the "subprocessor_url" field.

func SubprocessorURLGT added in v1.2.2

func SubprocessorURLGT(v string) predicate.TrustCenter

SubprocessorURLGT applies the GT predicate on the "subprocessor_url" field.

func SubprocessorURLGTE added in v1.2.2

func SubprocessorURLGTE(v string) predicate.TrustCenter

SubprocessorURLGTE applies the GTE predicate on the "subprocessor_url" field.

func SubprocessorURLHasPrefix added in v1.2.2

func SubprocessorURLHasPrefix(v string) predicate.TrustCenter

SubprocessorURLHasPrefix applies the HasPrefix predicate on the "subprocessor_url" field.

func SubprocessorURLHasSuffix added in v1.2.2

func SubprocessorURLHasSuffix(v string) predicate.TrustCenter

SubprocessorURLHasSuffix applies the HasSuffix predicate on the "subprocessor_url" field.

func SubprocessorURLIn added in v1.2.2

func SubprocessorURLIn(vs ...string) predicate.TrustCenter

SubprocessorURLIn applies the In predicate on the "subprocessor_url" field.

func SubprocessorURLIsNil added in v1.2.2

func SubprocessorURLIsNil() predicate.TrustCenter

SubprocessorURLIsNil applies the IsNil predicate on the "subprocessor_url" field.

func SubprocessorURLLT added in v1.2.2

func SubprocessorURLLT(v string) predicate.TrustCenter

SubprocessorURLLT applies the LT predicate on the "subprocessor_url" field.

func SubprocessorURLLTE added in v1.2.2

func SubprocessorURLLTE(v string) predicate.TrustCenter

SubprocessorURLLTE applies the LTE predicate on the "subprocessor_url" field.

func SubprocessorURLNEQ added in v1.2.2

func SubprocessorURLNEQ(v string) predicate.TrustCenter

SubprocessorURLNEQ applies the NEQ predicate on the "subprocessor_url" field.

func SubprocessorURLNotIn added in v1.2.2

func SubprocessorURLNotIn(vs ...string) predicate.TrustCenter

SubprocessorURLNotIn applies the NotIn predicate on the "subprocessor_url" field.

func SubprocessorURLNotNil added in v1.2.2

func SubprocessorURLNotNil() predicate.TrustCenter

SubprocessorURLNotNil applies the NotNil predicate on the "subprocessor_url" field.

func TagsIsNil

func TagsIsNil() predicate.TrustCenter

TagsIsNil applies the IsNil predicate on the "tags" field.

func TagsNotNil

func TagsNotNil() predicate.TrustCenter

TagsNotNil applies the NotNil predicate on the "tags" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.TrustCenter

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.TrustCenter

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.TrustCenter

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.TrustCenter

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.TrustCenter

UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.TrustCenter

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.TrustCenter

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.TrustCenter

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.TrustCenter

UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.

func UpdatedBy

func UpdatedBy(v string) predicate.TrustCenter

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.TrustCenter

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.TrustCenter

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.TrustCenter

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.TrustCenter

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.TrustCenter

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.TrustCenter

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.TrustCenter

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.TrustCenter

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.TrustCenter

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.TrustCenter

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.TrustCenter

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.TrustCenter

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.TrustCenter

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 TrustCenter queries.

func ByBlockedGroups added in v1.3.0

func ByBlockedGroups(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByBlockedGroups orders the results by blocked_groups terms.

func ByBlockedGroupsCount added in v1.3.0

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

ByBlockedGroupsCount orders the results by blocked_groups count.

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 ByCustomDomainField

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

ByCustomDomainField orders the results by custom_domain field.

func ByCustomDomainID

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

ByCustomDomainID orders the results by the custom_domain_id field.

func ByDeletedAt

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

ByDeletedAt orders the results by the deleted_at field.

func ByDeletedBy

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

ByDeletedBy orders the results by the deleted_by field.

func ByEditors added in v1.3.0

func ByEditors(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByEditors orders the results by editors terms.

func ByEditorsCount added in v1.3.0

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

ByEditorsCount orders the results by editors count.

func ByID

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

ByID orders the results by the id field.

func ByOwnerField

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

ByOwnerField orders the results by owner field.

func ByOwnerID

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

ByOwnerID orders the results by the owner_id field.

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

ByPirschAccessLink orders the results by the pirsch_access_link field.

func ByPirschDomainID added in v0.45.8

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

ByPirschDomainID orders the results by the pirsch_domain_id field.

func ByPirschIdentificationCode added in v0.45.8

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

ByPirschIdentificationCode orders the results by the pirsch_identification_code field.

func ByPosts added in v0.45.0

func ByPosts(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByPosts orders the results by posts terms.

func ByPostsCount added in v0.45.0

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

ByPostsCount orders the results by posts count.

func ByPreviewDomainField added in v0.46.6

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

ByPreviewDomainField orders the results by preview_domain field.

func ByPreviewDomainID added in v0.46.6

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

ByPreviewDomainID orders the results by the preview_domain_id field.

func ByPreviewSettingField added in v0.46.6

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

ByPreviewSettingField orders the results by preview_setting field.

func ByPreviewStatus added in v0.46.6

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

ByPreviewStatus orders the results by the preview_status field.

func BySettingField

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

BySettingField orders the results by setting field.

func BySlug

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

BySlug orders the results by the slug field.

func BySubprocessorURL added in v1.2.2

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

BySubprocessorURL orders the results by the subprocessor_url field.

func ByTemplates added in v0.34.1

func ByTemplates(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTemplates orders the results by templates terms.

func ByTemplatesCount added in v0.34.1

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

ByTemplatesCount orders the results by templates count.

func ByTrustCenterCompliances added in v0.28.2

func ByTrustCenterCompliances(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTrustCenterCompliances orders the results by trust_center_compliances terms.

func ByTrustCenterCompliancesCount added in v0.28.2

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

ByTrustCenterCompliancesCount orders the results by trust_center_compliances count.

func ByTrustCenterDocs added in v0.34.0

func ByTrustCenterDocs(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTrustCenterDocs orders the results by trust_center_docs terms.

func ByTrustCenterDocsCount added in v0.34.0

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

ByTrustCenterDocsCount orders the results by trust_center_docs count.

func ByTrustCenterEntities added in v1.3.0

func ByTrustCenterEntities(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTrustCenterEntities orders the results by trust_center_entities terms.

func ByTrustCenterEntitiesCount added in v1.3.0

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

ByTrustCenterEntitiesCount orders the results by trust_center_entities count.

func ByTrustCenterFaqs added in v1.9.11

func ByTrustCenterFaqs(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTrustCenterFaqs orders the results by trust_center_faqs terms.

func ByTrustCenterFaqsCount added in v1.9.11

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

ByTrustCenterFaqsCount orders the results by trust_center_faqs count.

func ByTrustCenterNdaRequests added in v1.3.5

func ByTrustCenterNdaRequests(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTrustCenterNdaRequests orders the results by trust_center_nda_requests terms.

func ByTrustCenterNdaRequestsCount added in v1.3.5

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

ByTrustCenterNdaRequestsCount orders the results by trust_center_nda_requests count.

func ByTrustCenterSubprocessors added in v0.23.0

func ByTrustCenterSubprocessors(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByTrustCenterSubprocessors orders the results by trust_center_subprocessors terms.

func ByTrustCenterSubprocessorsCount added in v0.23.0

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

ByTrustCenterSubprocessorsCount orders the results by trust_center_subprocessors count.

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.

func ByWatermarkConfigField added in v0.34.5

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

ByWatermarkConfigField orders the results by watermark_config field.

Jump to

Keyboard shortcuts

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