organization

package
v0.0.0-...-ccb1307 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the organization type in the database.
	Label = "organization"
	// 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"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDisplayName holds the string denoting the display_name field in the database.
	FieldDisplayName = "display_name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldParentOrganizationID holds the string denoting the parent_organization_id field in the database.
	FieldParentOrganizationID = "parent_organization_id"
	// FieldPersonalOrg holds the string denoting the personal_org field in the database.
	FieldPersonalOrg = "personal_org"
	// FieldAvatarRemoteURL holds the string denoting the avatar_remote_url field in the database.
	FieldAvatarRemoteURL = "avatar_remote_url"
	// FieldDedicatedDb holds the string denoting the dedicated_db field in the database.
	FieldDedicatedDb = "dedicated_db"
	// EdgeParent holds the string denoting the parent edge name in mutations.
	EdgeParent = "parent"
	// EdgeChildren holds the string denoting the children edge name in mutations.
	EdgeChildren = "children"
	// EdgeGroups holds the string denoting the groups edge name in mutations.
	EdgeGroups = "groups"
	// EdgeTemplates holds the string denoting the templates edge name in mutations.
	EdgeTemplates = "templates"
	// EdgeIntegrations holds the string denoting the integrations edge name in mutations.
	EdgeIntegrations = "integrations"
	// EdgeSetting holds the string denoting the setting edge name in mutations.
	EdgeSetting = "setting"
	// EdgeEntitlements holds the string denoting the entitlements edge name in mutations.
	EdgeEntitlements = "entitlements"
	// EdgePersonalAccessTokens holds the string denoting the personal_access_tokens edge name in mutations.
	EdgePersonalAccessTokens = "personal_access_tokens"
	// EdgeAPITokens holds the string denoting the api_tokens edge name in mutations.
	EdgeAPITokens = "api_tokens"
	// EdgeOauthprovider holds the string denoting the oauthprovider edge name in mutations.
	EdgeOauthprovider = "oauthprovider"
	// EdgeUsers holds the string denoting the users edge name in mutations.
	EdgeUsers = "users"
	// EdgeInvites holds the string denoting the invites edge name in mutations.
	EdgeInvites = "invites"
	// EdgeSubscribers holds the string denoting the subscribers edge name in mutations.
	EdgeSubscribers = "subscribers"
	// EdgeWebhooks holds the string denoting the webhooks edge name in mutations.
	EdgeWebhooks = "webhooks"
	// EdgeEvents holds the string denoting the events edge name in mutations.
	EdgeEvents = "events"
	// EdgeSecrets holds the string denoting the secrets edge name in mutations.
	EdgeSecrets = "secrets"
	// EdgeFeatures holds the string denoting the features edge name in mutations.
	EdgeFeatures = "features"
	// EdgeFiles holds the string denoting the files edge name in mutations.
	EdgeFiles = "files"
	// EdgeMembers holds the string denoting the members edge name in mutations.
	EdgeMembers = "members"
	// Table holds the table name of the organization in the database.
	Table = "organizations"
	// ParentTable is the table that holds the parent relation/edge.
	ParentTable = "organizations"
	// ParentColumn is the table column denoting the parent relation/edge.
	ParentColumn = "parent_organization_id"
	// ChildrenTable is the table that holds the children relation/edge.
	ChildrenTable = "organizations"
	// ChildrenColumn is the table column denoting the children relation/edge.
	ChildrenColumn = "parent_organization_id"
	// GroupsTable is the table that holds the groups relation/edge.
	GroupsTable = "groups"
	// GroupsInverseTable is the table name for the Group entity.
	// It exists in this package in order to avoid circular dependency with the "group" package.
	GroupsInverseTable = "groups"
	// GroupsColumn is the table column denoting the groups relation/edge.
	GroupsColumn = "owner_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 = "owner_id"
	// IntegrationsTable is the table that holds the integrations relation/edge.
	IntegrationsTable = "integrations"
	// IntegrationsInverseTable is the table name for the Integration entity.
	// It exists in this package in order to avoid circular dependency with the "integration" package.
	IntegrationsInverseTable = "integrations"
	// IntegrationsColumn is the table column denoting the integrations relation/edge.
	IntegrationsColumn = "owner_id"
	// SettingTable is the table that holds the setting relation/edge.
	SettingTable = "organization_settings"
	// SettingInverseTable is the table name for the OrganizationSetting entity.
	// It exists in this package in order to avoid circular dependency with the "organizationsetting" package.
	SettingInverseTable = "organization_settings"
	// SettingColumn is the table column denoting the setting relation/edge.
	SettingColumn = "organization_id"
	// EntitlementsTable is the table that holds the entitlements relation/edge.
	EntitlementsTable = "entitlements"
	// EntitlementsInverseTable is the table name for the Entitlement entity.
	// It exists in this package in order to avoid circular dependency with the "entitlement" package.
	EntitlementsInverseTable = "entitlements"
	// EntitlementsColumn is the table column denoting the entitlements relation/edge.
	EntitlementsColumn = "owner_id"
	// PersonalAccessTokensTable is the table that holds the personal_access_tokens relation/edge. The primary key declared below.
	PersonalAccessTokensTable = "organization_personal_access_tokens"
	// PersonalAccessTokensInverseTable is the table name for the PersonalAccessToken entity.
	// It exists in this package in order to avoid circular dependency with the "personalaccesstoken" package.
	PersonalAccessTokensInverseTable = "personal_access_tokens"
	// APITokensTable is the table that holds the api_tokens relation/edge.
	APITokensTable = "api_tokens"
	// APITokensInverseTable is the table name for the APIToken entity.
	// It exists in this package in order to avoid circular dependency with the "apitoken" package.
	APITokensInverseTable = "api_tokens"
	// APITokensColumn is the table column denoting the api_tokens relation/edge.
	APITokensColumn = "owner_id"
	// OauthproviderTable is the table that holds the oauthprovider relation/edge.
	OauthproviderTable = "oauth_providers"
	// OauthproviderInverseTable is the table name for the OauthProvider entity.
	// It exists in this package in order to avoid circular dependency with the "oauthprovider" package.
	OauthproviderInverseTable = "oauth_providers"
	// OauthproviderColumn is the table column denoting the oauthprovider relation/edge.
	OauthproviderColumn = "organization_oauthprovider"
	// UsersTable is the table that holds the users relation/edge. The primary key declared below.
	UsersTable = "org_memberships"
	// UsersInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	UsersInverseTable = "users"
	// InvitesTable is the table that holds the invites relation/edge.
	InvitesTable = "invites"
	// InvitesInverseTable is the table name for the Invite entity.
	// It exists in this package in order to avoid circular dependency with the "invite" package.
	InvitesInverseTable = "invites"
	// InvitesColumn is the table column denoting the invites relation/edge.
	InvitesColumn = "owner_id"
	// SubscribersTable is the table that holds the subscribers relation/edge.
	SubscribersTable = "subscribers"
	// SubscribersInverseTable is the table name for the Subscriber entity.
	// It exists in this package in order to avoid circular dependency with the "subscriber" package.
	SubscribersInverseTable = "subscribers"
	// SubscribersColumn is the table column denoting the subscribers relation/edge.
	SubscribersColumn = "owner_id"
	// WebhooksTable is the table that holds the webhooks relation/edge.
	WebhooksTable = "webhooks"
	// WebhooksInverseTable is the table name for the Webhook entity.
	// It exists in this package in order to avoid circular dependency with the "webhook" package.
	WebhooksInverseTable = "webhooks"
	// WebhooksColumn is the table column denoting the webhooks relation/edge.
	WebhooksColumn = "owner_id"
	// EventsTable is the table that holds the events relation/edge. The primary key declared below.
	EventsTable = "organization_events"
	// EventsInverseTable is the table name for the Event entity.
	// It exists in this package in order to avoid circular dependency with the "event" package.
	EventsInverseTable = "events"
	// SecretsTable is the table that holds the secrets relation/edge. The primary key declared below.
	SecretsTable = "organization_secrets"
	// SecretsInverseTable is the table name for the Hush entity.
	// It exists in this package in order to avoid circular dependency with the "hush" package.
	SecretsInverseTable = "hushes"
	// FeaturesTable is the table that holds the features relation/edge. The primary key declared below.
	FeaturesTable = "organization_features"
	// FeaturesInverseTable is the table name for the Feature entity.
	// It exists in this package in order to avoid circular dependency with the "feature" package.
	FeaturesInverseTable = "features"
	// FilesTable is the table that holds the files relation/edge. The primary key declared below.
	FilesTable = "organization_files"
	// FilesInverseTable is the table name for the File entity.
	// It exists in this package in order to avoid circular dependency with the "file" package.
	FilesInverseTable = "files"
	// MembersTable is the table that holds the members relation/edge.
	MembersTable = "org_memberships"
	// MembersInverseTable is the table name for the OrgMembership entity.
	// It exists in this package in order to avoid circular dependency with the "orgmembership" package.
	MembersInverseTable = "org_memberships"
	// MembersColumn is the table column denoting the members relation/edge.
	MembersColumn = "organization_id"
)

Variables

View Source
var (
	// PersonalAccessTokensPrimaryKey and PersonalAccessTokensColumn2 are the table columns denoting the
	// primary key for the personal_access_tokens relation (M2M).
	PersonalAccessTokensPrimaryKey = []string{"organization_id", "personal_access_token_id"}
	// UsersPrimaryKey and UsersColumn2 are the table columns denoting the
	// primary key for the users relation (M2M).
	UsersPrimaryKey = []string{"user_id", "organization_id"}
	// EventsPrimaryKey and EventsColumn2 are the table columns denoting the
	// primary key for the events relation (M2M).
	EventsPrimaryKey = []string{"organization_id", "event_id"}
	// SecretsPrimaryKey and SecretsColumn2 are the table columns denoting the
	// primary key for the secrets relation (M2M).
	SecretsPrimaryKey = []string{"organization_id", "hush_id"}
	// FeaturesPrimaryKey and FeaturesColumn2 are the table columns denoting the
	// primary key for the features relation (M2M).
	FeaturesPrimaryKey = []string{"organization_id", "feature_id"}
	// FilesPrimaryKey and FilesColumn2 are the table columns denoting the
	// primary key for the files relation (M2M).
	FilesPrimaryKey = []string{"organization_id", "file_id"}
)
View Source
var (
	Hooks        [4]ent.Hook
	Interceptors [2]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
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultDisplayName holds the default value on creation for the "display_name" field.
	DefaultDisplayName string
	// DisplayNameValidator is a validator for the "display_name" field. It is called by the builders before save.
	DisplayNameValidator func(string) error
	// DefaultPersonalOrg holds the default value on creation for the "personal_org" field.
	DefaultPersonalOrg bool
	// AvatarRemoteURLValidator is a validator for the "avatar_remote_url" field. It is called by the builders before save.
	AvatarRemoteURLValidator func(string) error
	// DefaultDedicatedDb holds the default value on creation for the "dedicated_db" field.
	DefaultDedicatedDb bool
	// 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/khulnasoft/go-template/central-server/internal/ent/generated/runtime"

Columns holds all SQL columns for organization fields.

Functions

func And

func And(predicates ...predicate.Organization) predicate.Organization

And groups predicates with the AND operator between them.

func AvatarRemoteURL

func AvatarRemoteURL(v string) predicate.Organization

AvatarRemoteURL applies equality check predicate on the "avatar_remote_url" field. It's identical to AvatarRemoteURLEQ.

func AvatarRemoteURLContains

func AvatarRemoteURLContains(v string) predicate.Organization

AvatarRemoteURLContains applies the Contains predicate on the "avatar_remote_url" field.

func AvatarRemoteURLContainsFold

func AvatarRemoteURLContainsFold(v string) predicate.Organization

AvatarRemoteURLContainsFold applies the ContainsFold predicate on the "avatar_remote_url" field.

func AvatarRemoteURLEQ

func AvatarRemoteURLEQ(v string) predicate.Organization

AvatarRemoteURLEQ applies the EQ predicate on the "avatar_remote_url" field.

func AvatarRemoteURLEqualFold

func AvatarRemoteURLEqualFold(v string) predicate.Organization

AvatarRemoteURLEqualFold applies the EqualFold predicate on the "avatar_remote_url" field.

func AvatarRemoteURLGT

func AvatarRemoteURLGT(v string) predicate.Organization

AvatarRemoteURLGT applies the GT predicate on the "avatar_remote_url" field.

func AvatarRemoteURLGTE

func AvatarRemoteURLGTE(v string) predicate.Organization

AvatarRemoteURLGTE applies the GTE predicate on the "avatar_remote_url" field.

func AvatarRemoteURLHasPrefix

func AvatarRemoteURLHasPrefix(v string) predicate.Organization

AvatarRemoteURLHasPrefix applies the HasPrefix predicate on the "avatar_remote_url" field.

func AvatarRemoteURLHasSuffix

func AvatarRemoteURLHasSuffix(v string) predicate.Organization

AvatarRemoteURLHasSuffix applies the HasSuffix predicate on the "avatar_remote_url" field.

func AvatarRemoteURLIn

func AvatarRemoteURLIn(vs ...string) predicate.Organization

AvatarRemoteURLIn applies the In predicate on the "avatar_remote_url" field.

func AvatarRemoteURLIsNil

func AvatarRemoteURLIsNil() predicate.Organization

AvatarRemoteURLIsNil applies the IsNil predicate on the "avatar_remote_url" field.

func AvatarRemoteURLLT

func AvatarRemoteURLLT(v string) predicate.Organization

AvatarRemoteURLLT applies the LT predicate on the "avatar_remote_url" field.

func AvatarRemoteURLLTE

func AvatarRemoteURLLTE(v string) predicate.Organization

AvatarRemoteURLLTE applies the LTE predicate on the "avatar_remote_url" field.

func AvatarRemoteURLNEQ

func AvatarRemoteURLNEQ(v string) predicate.Organization

AvatarRemoteURLNEQ applies the NEQ predicate on the "avatar_remote_url" field.

func AvatarRemoteURLNotIn

func AvatarRemoteURLNotIn(vs ...string) predicate.Organization

AvatarRemoteURLNotIn applies the NotIn predicate on the "avatar_remote_url" field.

func AvatarRemoteURLNotNil

func AvatarRemoteURLNotNil() predicate.Organization

AvatarRemoteURLNotNil applies the NotNil predicate on the "avatar_remote_url" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Organization

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Organization

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Organization

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Organization

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

func CreatedAtIn

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

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

func CreatedAtIsNil

func CreatedAtIsNil() predicate.Organization

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Organization

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Organization

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Organization

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

func CreatedAtNotIn

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

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

func CreatedAtNotNil

func CreatedAtNotNil() predicate.Organization

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

func CreatedBy

func CreatedBy(v string) predicate.Organization

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

func CreatedByContains

func CreatedByContains(v string) predicate.Organization

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

func CreatedByContainsFold

func CreatedByContainsFold(v string) predicate.Organization

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

func CreatedByEQ

func CreatedByEQ(v string) predicate.Organization

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

func CreatedByEqualFold

func CreatedByEqualFold(v string) predicate.Organization

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

func CreatedByGT

func CreatedByGT(v string) predicate.Organization

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

func CreatedByGTE

func CreatedByGTE(v string) predicate.Organization

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

func CreatedByHasPrefix

func CreatedByHasPrefix(v string) predicate.Organization

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

func CreatedByHasSuffix

func CreatedByHasSuffix(v string) predicate.Organization

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

func CreatedByIn

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

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

func CreatedByIsNil

func CreatedByIsNil() predicate.Organization

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

func CreatedByLT

func CreatedByLT(v string) predicate.Organization

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

func CreatedByLTE

func CreatedByLTE(v string) predicate.Organization

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

func CreatedByNEQ

func CreatedByNEQ(v string) predicate.Organization

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

func CreatedByNotIn

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

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

func CreatedByNotNil

func CreatedByNotNil() predicate.Organization

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

func DedicatedDb

func DedicatedDb(v bool) predicate.Organization

DedicatedDb applies equality check predicate on the "dedicated_db" field. It's identical to DedicatedDbEQ.

func DedicatedDbEQ

func DedicatedDbEQ(v bool) predicate.Organization

DedicatedDbEQ applies the EQ predicate on the "dedicated_db" field.

func DedicatedDbNEQ

func DedicatedDbNEQ(v bool) predicate.Organization

DedicatedDbNEQ applies the NEQ predicate on the "dedicated_db" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.Organization

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.Organization

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.Organization

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.Organization

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.Organization

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.Organization

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.Organization

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.Organization

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.Organization

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

func DeletedBy

func DeletedBy(v string) predicate.Organization

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

func DeletedByContains

func DeletedByContains(v string) predicate.Organization

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

func DeletedByContainsFold

func DeletedByContainsFold(v string) predicate.Organization

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

func DeletedByEQ

func DeletedByEQ(v string) predicate.Organization

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

func DeletedByEqualFold

func DeletedByEqualFold(v string) predicate.Organization

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

func DeletedByGT

func DeletedByGT(v string) predicate.Organization

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

func DeletedByGTE

func DeletedByGTE(v string) predicate.Organization

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

func DeletedByHasPrefix

func DeletedByHasPrefix(v string) predicate.Organization

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

func DeletedByHasSuffix

func DeletedByHasSuffix(v string) predicate.Organization

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

func DeletedByIn

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

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

func DeletedByIsNil

func DeletedByIsNil() predicate.Organization

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

func DeletedByLT

func DeletedByLT(v string) predicate.Organization

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

func DeletedByLTE

func DeletedByLTE(v string) predicate.Organization

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

func DeletedByNEQ

func DeletedByNEQ(v string) predicate.Organization

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

func DeletedByNotIn

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

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

func DeletedByNotNil

func DeletedByNotNil() predicate.Organization

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

func Description

func Description(v string) predicate.Organization

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.Organization

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.Organization

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.Organization

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.Organization

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.Organization

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.Organization

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.Organization

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.Organization

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.Organization

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.Organization

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.Organization

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.Organization

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.Organization

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.Organization

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.Organization

DescriptionNotNil applies the NotNil predicate on the "description" field.

func DisplayName

func DisplayName(v string) predicate.Organization

DisplayName applies equality check predicate on the "display_name" field. It's identical to DisplayNameEQ.

func DisplayNameContains

func DisplayNameContains(v string) predicate.Organization

DisplayNameContains applies the Contains predicate on the "display_name" field.

func DisplayNameContainsFold

func DisplayNameContainsFold(v string) predicate.Organization

DisplayNameContainsFold applies the ContainsFold predicate on the "display_name" field.

func DisplayNameEQ

func DisplayNameEQ(v string) predicate.Organization

DisplayNameEQ applies the EQ predicate on the "display_name" field.

func DisplayNameEqualFold

func DisplayNameEqualFold(v string) predicate.Organization

DisplayNameEqualFold applies the EqualFold predicate on the "display_name" field.

func DisplayNameGT

func DisplayNameGT(v string) predicate.Organization

DisplayNameGT applies the GT predicate on the "display_name" field.

func DisplayNameGTE

func DisplayNameGTE(v string) predicate.Organization

DisplayNameGTE applies the GTE predicate on the "display_name" field.

func DisplayNameHasPrefix

func DisplayNameHasPrefix(v string) predicate.Organization

DisplayNameHasPrefix applies the HasPrefix predicate on the "display_name" field.

func DisplayNameHasSuffix

func DisplayNameHasSuffix(v string) predicate.Organization

DisplayNameHasSuffix applies the HasSuffix predicate on the "display_name" field.

func DisplayNameIn

func DisplayNameIn(vs ...string) predicate.Organization

DisplayNameIn applies the In predicate on the "display_name" field.

func DisplayNameLT

func DisplayNameLT(v string) predicate.Organization

DisplayNameLT applies the LT predicate on the "display_name" field.

func DisplayNameLTE

func DisplayNameLTE(v string) predicate.Organization

DisplayNameLTE applies the LTE predicate on the "display_name" field.

func DisplayNameNEQ

func DisplayNameNEQ(v string) predicate.Organization

DisplayNameNEQ applies the NEQ predicate on the "display_name" field.

func DisplayNameNotIn

func DisplayNameNotIn(vs ...string) predicate.Organization

DisplayNameNotIn applies the NotIn predicate on the "display_name" field.

func HasAPITokens

func HasAPITokens() predicate.Organization

HasAPITokens applies the HasEdge predicate on the "api_tokens" edge.

func HasAPITokensWith

func HasAPITokensWith(preds ...predicate.APIToken) predicate.Organization

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

func HasChildren

func HasChildren() predicate.Organization

HasChildren applies the HasEdge predicate on the "children" edge.

func HasChildrenWith

func HasChildrenWith(preds ...predicate.Organization) predicate.Organization

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

func HasEntitlements

func HasEntitlements() predicate.Organization

HasEntitlements applies the HasEdge predicate on the "entitlements" edge.

func HasEntitlementsWith

func HasEntitlementsWith(preds ...predicate.Entitlement) predicate.Organization

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

func HasEvents

func HasEvents() predicate.Organization

HasEvents applies the HasEdge predicate on the "events" edge.

func HasEventsWith

func HasEventsWith(preds ...predicate.Event) predicate.Organization

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

func HasFeatures

func HasFeatures() predicate.Organization

HasFeatures applies the HasEdge predicate on the "features" edge.

func HasFeaturesWith

func HasFeaturesWith(preds ...predicate.Feature) predicate.Organization

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

func HasFiles

func HasFiles() predicate.Organization

HasFiles applies the HasEdge predicate on the "files" edge.

func HasFilesWith

func HasFilesWith(preds ...predicate.File) predicate.Organization

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

func HasGroups

func HasGroups() predicate.Organization

HasGroups applies the HasEdge predicate on the "groups" edge.

func HasGroupsWith

func HasGroupsWith(preds ...predicate.Group) predicate.Organization

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

func HasIntegrations

func HasIntegrations() predicate.Organization

HasIntegrations applies the HasEdge predicate on the "integrations" edge.

func HasIntegrationsWith

func HasIntegrationsWith(preds ...predicate.Integration) predicate.Organization

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

func HasInvites

func HasInvites() predicate.Organization

HasInvites applies the HasEdge predicate on the "invites" edge.

func HasInvitesWith

func HasInvitesWith(preds ...predicate.Invite) predicate.Organization

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

func HasMembers

func HasMembers() predicate.Organization

HasMembers applies the HasEdge predicate on the "members" edge.

func HasMembersWith

func HasMembersWith(preds ...predicate.OrgMembership) predicate.Organization

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

func HasOauthprovider

func HasOauthprovider() predicate.Organization

HasOauthprovider applies the HasEdge predicate on the "oauthprovider" edge.

func HasOauthproviderWith

func HasOauthproviderWith(preds ...predicate.OauthProvider) predicate.Organization

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

func HasParent

func HasParent() predicate.Organization

HasParent applies the HasEdge predicate on the "parent" edge.

func HasParentWith

func HasParentWith(preds ...predicate.Organization) predicate.Organization

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

func HasPersonalAccessTokens

func HasPersonalAccessTokens() predicate.Organization

HasPersonalAccessTokens applies the HasEdge predicate on the "personal_access_tokens" edge.

func HasPersonalAccessTokensWith

func HasPersonalAccessTokensWith(preds ...predicate.PersonalAccessToken) predicate.Organization

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

func HasSecrets

func HasSecrets() predicate.Organization

HasSecrets applies the HasEdge predicate on the "secrets" edge.

func HasSecretsWith

func HasSecretsWith(preds ...predicate.Hush) predicate.Organization

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

func HasSetting

func HasSetting() predicate.Organization

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

func HasSettingWith

func HasSettingWith(preds ...predicate.OrganizationSetting) predicate.Organization

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

func HasSubscribers

func HasSubscribers() predicate.Organization

HasSubscribers applies the HasEdge predicate on the "subscribers" edge.

func HasSubscribersWith

func HasSubscribersWith(preds ...predicate.Subscriber) predicate.Organization

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

func HasTemplates

func HasTemplates() predicate.Organization

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

func HasTemplatesWith

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

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

func HasUsers

func HasUsers() predicate.Organization

HasUsers applies the HasEdge predicate on the "users" edge.

func HasUsersWith

func HasUsersWith(preds ...predicate.User) predicate.Organization

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

func HasWebhooks

func HasWebhooks() predicate.Organization

HasWebhooks applies the HasEdge predicate on the "webhooks" edge.

func HasWebhooksWith

func HasWebhooksWith(preds ...predicate.Webhook) predicate.Organization

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

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.Organization

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.Organization

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.Organization

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Organization

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Organization

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Organization

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Organization

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Organization

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Name

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Organization

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Organization

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Organization

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Organization

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Organization

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Organization

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Organization

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Organization

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Organization

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Organization

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Organization

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Organization

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Organization

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Organization) predicate.Organization

Or groups predicates with the OR operator between them.

func ParentOrganizationID

func ParentOrganizationID(v string) predicate.Organization

ParentOrganizationID applies equality check predicate on the "parent_organization_id" field. It's identical to ParentOrganizationIDEQ.

func ParentOrganizationIDContains

func ParentOrganizationIDContains(v string) predicate.Organization

ParentOrganizationIDContains applies the Contains predicate on the "parent_organization_id" field.

func ParentOrganizationIDContainsFold

func ParentOrganizationIDContainsFold(v string) predicate.Organization

ParentOrganizationIDContainsFold applies the ContainsFold predicate on the "parent_organization_id" field.

func ParentOrganizationIDEQ

func ParentOrganizationIDEQ(v string) predicate.Organization

ParentOrganizationIDEQ applies the EQ predicate on the "parent_organization_id" field.

func ParentOrganizationIDEqualFold

func ParentOrganizationIDEqualFold(v string) predicate.Organization

ParentOrganizationIDEqualFold applies the EqualFold predicate on the "parent_organization_id" field.

func ParentOrganizationIDGT

func ParentOrganizationIDGT(v string) predicate.Organization

ParentOrganizationIDGT applies the GT predicate on the "parent_organization_id" field.

func ParentOrganizationIDGTE

func ParentOrganizationIDGTE(v string) predicate.Organization

ParentOrganizationIDGTE applies the GTE predicate on the "parent_organization_id" field.

func ParentOrganizationIDHasPrefix

func ParentOrganizationIDHasPrefix(v string) predicate.Organization

ParentOrganizationIDHasPrefix applies the HasPrefix predicate on the "parent_organization_id" field.

func ParentOrganizationIDHasSuffix

func ParentOrganizationIDHasSuffix(v string) predicate.Organization

ParentOrganizationIDHasSuffix applies the HasSuffix predicate on the "parent_organization_id" field.

func ParentOrganizationIDIn

func ParentOrganizationIDIn(vs ...string) predicate.Organization

ParentOrganizationIDIn applies the In predicate on the "parent_organization_id" field.

func ParentOrganizationIDIsNil

func ParentOrganizationIDIsNil() predicate.Organization

ParentOrganizationIDIsNil applies the IsNil predicate on the "parent_organization_id" field.

func ParentOrganizationIDLT

func ParentOrganizationIDLT(v string) predicate.Organization

ParentOrganizationIDLT applies the LT predicate on the "parent_organization_id" field.

func ParentOrganizationIDLTE

func ParentOrganizationIDLTE(v string) predicate.Organization

ParentOrganizationIDLTE applies the LTE predicate on the "parent_organization_id" field.

func ParentOrganizationIDNEQ

func ParentOrganizationIDNEQ(v string) predicate.Organization

ParentOrganizationIDNEQ applies the NEQ predicate on the "parent_organization_id" field.

func ParentOrganizationIDNotIn

func ParentOrganizationIDNotIn(vs ...string) predicate.Organization

ParentOrganizationIDNotIn applies the NotIn predicate on the "parent_organization_id" field.

func ParentOrganizationIDNotNil

func ParentOrganizationIDNotNil() predicate.Organization

ParentOrganizationIDNotNil applies the NotNil predicate on the "parent_organization_id" field.

func PersonalOrg

func PersonalOrg(v bool) predicate.Organization

PersonalOrg applies equality check predicate on the "personal_org" field. It's identical to PersonalOrgEQ.

func PersonalOrgEQ

func PersonalOrgEQ(v bool) predicate.Organization

PersonalOrgEQ applies the EQ predicate on the "personal_org" field.

func PersonalOrgIsNil

func PersonalOrgIsNil() predicate.Organization

PersonalOrgIsNil applies the IsNil predicate on the "personal_org" field.

func PersonalOrgNEQ

func PersonalOrgNEQ(v bool) predicate.Organization

PersonalOrgNEQ applies the NEQ predicate on the "personal_org" field.

func PersonalOrgNotNil

func PersonalOrgNotNil() predicate.Organization

PersonalOrgNotNil applies the NotNil predicate on the "personal_org" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Organization

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Organization

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Organization

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Organization

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

func UpdatedAtIn

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

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

func UpdatedAtIsNil

func UpdatedAtIsNil() predicate.Organization

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Organization

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Organization

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Organization

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

func UpdatedAtNotIn

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

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

func UpdatedAtNotNil

func UpdatedAtNotNil() predicate.Organization

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

func UpdatedBy

func UpdatedBy(v string) predicate.Organization

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

func UpdatedByContains

func UpdatedByContains(v string) predicate.Organization

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

func UpdatedByContainsFold

func UpdatedByContainsFold(v string) predicate.Organization

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

func UpdatedByEQ

func UpdatedByEQ(v string) predicate.Organization

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

func UpdatedByEqualFold

func UpdatedByEqualFold(v string) predicate.Organization

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

func UpdatedByGT

func UpdatedByGT(v string) predicate.Organization

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

func UpdatedByGTE

func UpdatedByGTE(v string) predicate.Organization

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

func UpdatedByHasPrefix

func UpdatedByHasPrefix(v string) predicate.Organization

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

func UpdatedByHasSuffix

func UpdatedByHasSuffix(v string) predicate.Organization

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

func UpdatedByIn

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

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

func UpdatedByIsNil

func UpdatedByIsNil() predicate.Organization

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

func UpdatedByLT

func UpdatedByLT(v string) predicate.Organization

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

func UpdatedByLTE

func UpdatedByLTE(v string) predicate.Organization

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

func UpdatedByNEQ

func UpdatedByNEQ(v string) predicate.Organization

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

func UpdatedByNotIn

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

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

func UpdatedByNotNil

func UpdatedByNotNil() predicate.Organization

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

func ByAPITokens

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

ByAPITokens orders the results by api_tokens terms.

func ByAPITokensCount

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

ByAPITokensCount orders the results by api_tokens count.

func ByAvatarRemoteURL

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

ByAvatarRemoteURL orders the results by the avatar_remote_url field.

func ByChildren

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

ByChildren orders the results by children terms.

func ByChildrenCount

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

ByChildrenCount orders the results by children 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 ByDedicatedDb

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

ByDedicatedDb orders the results by the dedicated_db 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 ByDescription

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

ByDescription orders the results by the description field.

func ByDisplayName

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

ByDisplayName orders the results by the display_name field.

func ByEntitlements

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

ByEntitlements orders the results by entitlements terms.

func ByEntitlementsCount

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

ByEntitlementsCount orders the results by entitlements count.

func ByEvents

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

ByEvents orders the results by events terms.

func ByEventsCount

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

ByEventsCount orders the results by events count.

func ByFeatures

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

ByFeatures orders the results by features terms.

func ByFeaturesCount

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

ByFeaturesCount orders the results by features count.

func ByFiles

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

ByFiles orders the results by files terms.

func ByFilesCount

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

ByFilesCount orders the results by files count.

func ByGroups

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

ByGroups orders the results by groups terms.

func ByGroupsCount

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

ByGroupsCount orders the results by groups count.

func ByID

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

ByID orders the results by the id field.

func ByIntegrations

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

ByIntegrations orders the results by integrations terms.

func ByIntegrationsCount

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

ByIntegrationsCount orders the results by integrations count.

func ByInvites

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

ByInvites orders the results by invites terms.

func ByInvitesCount

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

ByInvitesCount orders the results by invites count.

func ByMembers

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

ByMembers orders the results by members terms.

func ByMembersCount

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

ByMembersCount orders the results by members count.

func ByName

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

ByName orders the results by the name field.

func ByOauthprovider

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

ByOauthprovider orders the results by oauthprovider terms.

func ByOauthproviderCount

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

ByOauthproviderCount orders the results by oauthprovider count.

func ByParentField

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

ByParentField orders the results by parent field.

func ByParentOrganizationID

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

ByParentOrganizationID orders the results by the parent_organization_id field.

func ByPersonalAccessTokens

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

ByPersonalAccessTokens orders the results by personal_access_tokens terms.

func ByPersonalAccessTokensCount

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

ByPersonalAccessTokensCount orders the results by personal_access_tokens count.

func ByPersonalOrg

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

ByPersonalOrg orders the results by the personal_org field.

func BySecrets

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

BySecrets orders the results by secrets terms.

func BySecretsCount

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

BySecretsCount orders the results by secrets count.

func BySettingField

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

BySettingField orders the results by setting field.

func BySubscribers

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

BySubscribers orders the results by subscribers terms.

func BySubscribersCount

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

BySubscribersCount orders the results by subscribers count.

func ByTemplates

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

ByTemplates orders the results by templates terms.

func ByTemplatesCount

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

ByTemplatesCount orders the results by templates 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 ByUsers

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

ByUsers orders the results by users terms.

func ByUsersCount

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

ByUsersCount orders the results by users count.

func ByWebhooks

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

ByWebhooks orders the results by webhooks terms.

func ByWebhooksCount

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

ByWebhooksCount orders the results by webhooks count.

Jump to

Keyboard shortcuts

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