Documentation
¶
Index ¶
- type DocumentDataFunc
- type EmailVerificationTokenFunc
- type EntitlementFunc
- type Func
- type GroupFunc
- type GroupMembershipFunc
- type GroupSettingFunc
- type IntegrationFunc
- type InviteFunc
- type OauthProviderFunc
- type OhAuthTooTokenFunc
- type OrgMembershipFunc
- type OrganizationFunc
- type OrganizationHistoryFunc
- type OrganizationSettingFunc
- type OrganizationSettingHistoryFunc
- type PasswordResetTokenFunc
- type PersonalAccessTokenFunc
- type Query
- type SubscriberFunc
- type TFASettingFunc
- type TemplateFunc
- type TraverseDocumentData
- type TraverseEmailVerificationToken
- type TraverseEntitlement
- type TraverseFunc
- type TraverseGroup
- type TraverseGroupMembership
- type TraverseGroupSetting
- type TraverseIntegration
- type TraverseInvite
- type TraverseOauthProvider
- type TraverseOhAuthTooToken
- type TraverseOrgMembership
- type TraverseOrganization
- type TraverseOrganizationHistory
- type TraverseOrganizationSetting
- type TraverseOrganizationSettingHistory
- type TraversePasswordResetToken
- type TraversePersonalAccessToken
- type TraverseSubscriber
- type TraverseTFASetting
- type TraverseTemplate
- type TraverseUser
- type TraverseUserSetting
- type TraverseWebauthn
- type UserFunc
- type UserSettingFunc
- type WebauthnFunc
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DocumentDataFunc ¶ added in v0.4.4
The DocumentDataFunc type is an adapter to allow the use of ordinary function as a Querier.
type EmailVerificationTokenFunc ¶ added in v0.2.2
type EmailVerificationTokenFunc func(context.Context, *generated.EmailVerificationTokenQuery) (generated.Value, error)
The EmailVerificationTokenFunc type is an adapter to allow the use of ordinary function as a Querier.
type EntitlementFunc ¶
The EntitlementFunc type is an adapter to allow the use of ordinary function as a Querier.
type Func ¶
The Func type is an adapter that allows ordinary functions to be used as interceptors. Unlike traversal functions, interceptors are skipped during graph traversals. Note that the implementation of Func is different from the one defined in entgo.io/ent.InterceptFunc.
type GroupFunc ¶
The GroupFunc type is an adapter to allow the use of ordinary function as a Querier.
type GroupMembershipFunc ¶ added in v0.2.4
type GroupMembershipFunc func(context.Context, *generated.GroupMembershipQuery) (generated.Value, error)
The GroupMembershipFunc type is an adapter to allow the use of ordinary function as a Querier.
type GroupSettingFunc ¶
The GroupSettingFunc type is an adapter to allow the use of ordinary function as a Querier.
type IntegrationFunc ¶
The IntegrationFunc type is an adapter to allow the use of ordinary function as a Querier.
type InviteFunc ¶ added in v0.2.6
The InviteFunc type is an adapter to allow the use of ordinary function as a Querier.
type OauthProviderFunc ¶
type OauthProviderFunc func(context.Context, *generated.OauthProviderQuery) (generated.Value, error)
The OauthProviderFunc type is an adapter to allow the use of ordinary function as a Querier.
type OhAuthTooTokenFunc ¶
type OhAuthTooTokenFunc func(context.Context, *generated.OhAuthTooTokenQuery) (generated.Value, error)
The OhAuthTooTokenFunc type is an adapter to allow the use of ordinary function as a Querier.
type OrgMembershipFunc ¶ added in v0.2.4
type OrgMembershipFunc func(context.Context, *generated.OrgMembershipQuery) (generated.Value, error)
The OrgMembershipFunc type is an adapter to allow the use of ordinary function as a Querier.
type OrganizationFunc ¶
The OrganizationFunc type is an adapter to allow the use of ordinary function as a Querier.
type OrganizationHistoryFunc ¶ added in v0.4.3
type OrganizationHistoryFunc func(context.Context, *generated.OrganizationHistoryQuery) (generated.Value, error)
The OrganizationHistoryFunc type is an adapter to allow the use of ordinary function as a Querier.
type OrganizationSettingFunc ¶
type OrganizationSettingFunc func(context.Context, *generated.OrganizationSettingQuery) (generated.Value, error)
The OrganizationSettingFunc type is an adapter to allow the use of ordinary function as a Querier.
type OrganizationSettingHistoryFunc ¶ added in v0.4.3
type OrganizationSettingHistoryFunc func(context.Context, *generated.OrganizationSettingHistoryQuery) (generated.Value, error)
The OrganizationSettingHistoryFunc type is an adapter to allow the use of ordinary function as a Querier.
type PasswordResetTokenFunc ¶ added in v0.2.3
type PasswordResetTokenFunc func(context.Context, *generated.PasswordResetTokenQuery) (generated.Value, error)
The PasswordResetTokenFunc type is an adapter to allow the use of ordinary function as a Querier.
type PersonalAccessTokenFunc ¶
type PersonalAccessTokenFunc func(context.Context, *generated.PersonalAccessTokenQuery) (generated.Value, error)
The PersonalAccessTokenFunc type is an adapter to allow the use of ordinary function as a Querier.
type Query ¶
type Query interface {
// Type returns the string representation of the query type.
Type() string
// Limit the number of records to be returned by this query.
Limit(int)
// Offset to start from.
Offset(int)
// Unique configures the query builder to filter duplicate records.
Unique(bool)
// Order specifies how the records should be ordered.
Order(...func(*sql.Selector))
// WhereP appends storage-level predicates to the query builder. Using this method, users
// can use type-assertion to append predicates that do not depend on any generated package.
WhereP(...func(*sql.Selector))
}
The Query interface represents an operation that queries a graph. By using this interface, users can write generic code that manipulates query builders of different types.
type SubscriberFunc ¶ added in v0.3.6
The SubscriberFunc type is an adapter to allow the use of ordinary function as a Querier.
type TFASettingFunc ¶ added in v0.4.4
The TFASettingFunc type is an adapter to allow the use of ordinary function as a Querier.
type TemplateFunc ¶ added in v0.4.3
The TemplateFunc type is an adapter to allow the use of ordinary function as a Querier.
type TraverseDocumentData ¶ added in v0.4.4
type TraverseDocumentData func(context.Context, *generated.DocumentDataQuery) error
The TraverseDocumentData type is an adapter to allow the use of ordinary function as Traverser.
type TraverseEmailVerificationToken ¶ added in v0.2.2
type TraverseEmailVerificationToken func(context.Context, *generated.EmailVerificationTokenQuery) error
The TraverseEmailVerificationToken type is an adapter to allow the use of ordinary function as Traverser.
type TraverseEntitlement ¶
type TraverseEntitlement func(context.Context, *generated.EntitlementQuery) error
The TraverseEntitlement type is an adapter to allow the use of ordinary function as Traverser.
type TraverseFunc ¶
The TraverseFunc type is an adapter to allow the use of ordinary function as Traverser. If f is a function with the appropriate signature, TraverseFunc(f) is a Traverser that calls f.
type TraverseGroup ¶
type TraverseGroup func(context.Context, *generated.GroupQuery) error
The TraverseGroup type is an adapter to allow the use of ordinary function as Traverser.
type TraverseGroupMembership ¶ added in v0.2.4
type TraverseGroupMembership func(context.Context, *generated.GroupMembershipQuery) error
The TraverseGroupMembership type is an adapter to allow the use of ordinary function as Traverser.
type TraverseGroupSetting ¶
type TraverseGroupSetting func(context.Context, *generated.GroupSettingQuery) error
The TraverseGroupSetting type is an adapter to allow the use of ordinary function as Traverser.
type TraverseIntegration ¶
type TraverseIntegration func(context.Context, *generated.IntegrationQuery) error
The TraverseIntegration type is an adapter to allow the use of ordinary function as Traverser.
type TraverseInvite ¶ added in v0.2.6
type TraverseInvite func(context.Context, *generated.InviteQuery) error
The TraverseInvite type is an adapter to allow the use of ordinary function as Traverser.
type TraverseOauthProvider ¶
type TraverseOauthProvider func(context.Context, *generated.OauthProviderQuery) error
The TraverseOauthProvider type is an adapter to allow the use of ordinary function as Traverser.
type TraverseOhAuthTooToken ¶
type TraverseOhAuthTooToken func(context.Context, *generated.OhAuthTooTokenQuery) error
The TraverseOhAuthTooToken type is an adapter to allow the use of ordinary function as Traverser.
type TraverseOrgMembership ¶ added in v0.2.4
type TraverseOrgMembership func(context.Context, *generated.OrgMembershipQuery) error
The TraverseOrgMembership type is an adapter to allow the use of ordinary function as Traverser.
type TraverseOrganization ¶
type TraverseOrganization func(context.Context, *generated.OrganizationQuery) error
The TraverseOrganization type is an adapter to allow the use of ordinary function as Traverser.
type TraverseOrganizationHistory ¶ added in v0.4.3
type TraverseOrganizationHistory func(context.Context, *generated.OrganizationHistoryQuery) error
The TraverseOrganizationHistory type is an adapter to allow the use of ordinary function as Traverser.
type TraverseOrganizationSetting ¶
type TraverseOrganizationSetting func(context.Context, *generated.OrganizationSettingQuery) error
The TraverseOrganizationSetting type is an adapter to allow the use of ordinary function as Traverser.
type TraverseOrganizationSettingHistory ¶ added in v0.4.3
type TraverseOrganizationSettingHistory func(context.Context, *generated.OrganizationSettingHistoryQuery) error
The TraverseOrganizationSettingHistory type is an adapter to allow the use of ordinary function as Traverser.
type TraversePasswordResetToken ¶ added in v0.2.3
type TraversePasswordResetToken func(context.Context, *generated.PasswordResetTokenQuery) error
The TraversePasswordResetToken type is an adapter to allow the use of ordinary function as Traverser.
type TraversePersonalAccessToken ¶
type TraversePersonalAccessToken func(context.Context, *generated.PersonalAccessTokenQuery) error
The TraversePersonalAccessToken type is an adapter to allow the use of ordinary function as Traverser.
type TraverseSubscriber ¶ added in v0.3.6
type TraverseSubscriber func(context.Context, *generated.SubscriberQuery) error
The TraverseSubscriber type is an adapter to allow the use of ordinary function as Traverser.
type TraverseTFASetting ¶ added in v0.4.4
type TraverseTFASetting func(context.Context, *generated.TFASettingQuery) error
The TraverseTFASetting type is an adapter to allow the use of ordinary function as Traverser.
type TraverseTemplate ¶ added in v0.4.3
type TraverseTemplate func(context.Context, *generated.TemplateQuery) error
The TraverseTemplate type is an adapter to allow the use of ordinary function as Traverser.
type TraverseUser ¶
The TraverseUser type is an adapter to allow the use of ordinary function as Traverser.
type TraverseUserSetting ¶
type TraverseUserSetting func(context.Context, *generated.UserSettingQuery) error
The TraverseUserSetting type is an adapter to allow the use of ordinary function as Traverser.
type TraverseWebauthn ¶ added in v0.3.0
type TraverseWebauthn func(context.Context, *generated.WebauthnQuery) error
The TraverseWebauthn type is an adapter to allow the use of ordinary function as Traverser.
type UserSettingFunc ¶
The UserSettingFunc type is an adapter to allow the use of ordinary function as a Querier.
type WebauthnFunc ¶ added in v0.3.0
The WebauthnFunc type is an adapter to allow the use of ordinary function as a Querier.