oauthprovider

package
v0.0.0-...-663e6fc Latest Latest
Warning

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

Go to latest
Published: Dec 22, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the oauthprovider type in the database.
	Label = "oauth_provider"
	// 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"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldClientID holds the string denoting the client_id field in the database.
	FieldClientID = "client_id"
	// FieldClientSecret holds the string denoting the client_secret field in the database.
	FieldClientSecret = "client_secret"
	// FieldRedirectURL holds the string denoting the redirect_url field in the database.
	FieldRedirectURL = "redirect_url"
	// FieldScopes holds the string denoting the scopes field in the database.
	FieldScopes = "scopes"
	// FieldAuthURL holds the string denoting the auth_url field in the database.
	FieldAuthURL = "auth_url"
	// FieldTokenURL holds the string denoting the token_url field in the database.
	FieldTokenURL = "token_url"
	// FieldAuthStyle holds the string denoting the auth_style field in the database.
	FieldAuthStyle = "auth_style"
	// FieldInfoURL holds the string denoting the info_url field in the database.
	FieldInfoURL = "info_url"
	// Table holds the table name of the oauthprovider in the database.
	Table = "sys_oauth_providers"
)

Variables

View Source
var (
	// 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
)

Columns holds all SQL columns for oauthprovider fields.

Functions

func And

And groups predicates with the AND operator between them.

func AuthStyle

func AuthStyle(v uint64) predicate.OauthProvider

AuthStyle applies equality check predicate on the "auth_style" field. It's identical to AuthStyleEQ.

func AuthStyleEQ

func AuthStyleEQ(v uint64) predicate.OauthProvider

AuthStyleEQ applies the EQ predicate on the "auth_style" field.

func AuthStyleGT

func AuthStyleGT(v uint64) predicate.OauthProvider

AuthStyleGT applies the GT predicate on the "auth_style" field.

func AuthStyleGTE

func AuthStyleGTE(v uint64) predicate.OauthProvider

AuthStyleGTE applies the GTE predicate on the "auth_style" field.

func AuthStyleIn

func AuthStyleIn(vs ...uint64) predicate.OauthProvider

AuthStyleIn applies the In predicate on the "auth_style" field.

func AuthStyleLT

func AuthStyleLT(v uint64) predicate.OauthProvider

AuthStyleLT applies the LT predicate on the "auth_style" field.

func AuthStyleLTE

func AuthStyleLTE(v uint64) predicate.OauthProvider

AuthStyleLTE applies the LTE predicate on the "auth_style" field.

func AuthStyleNEQ

func AuthStyleNEQ(v uint64) predicate.OauthProvider

AuthStyleNEQ applies the NEQ predicate on the "auth_style" field.

func AuthStyleNotIn

func AuthStyleNotIn(vs ...uint64) predicate.OauthProvider

AuthStyleNotIn applies the NotIn predicate on the "auth_style" field.

func AuthURL

func AuthURL(v string) predicate.OauthProvider

AuthURL applies equality check predicate on the "auth_url" field. It's identical to AuthURLEQ.

func AuthURLContains

func AuthURLContains(v string) predicate.OauthProvider

AuthURLContains applies the Contains predicate on the "auth_url" field.

func AuthURLContainsFold

func AuthURLContainsFold(v string) predicate.OauthProvider

AuthURLContainsFold applies the ContainsFold predicate on the "auth_url" field.

func AuthURLEQ

func AuthURLEQ(v string) predicate.OauthProvider

AuthURLEQ applies the EQ predicate on the "auth_url" field.

func AuthURLEqualFold

func AuthURLEqualFold(v string) predicate.OauthProvider

AuthURLEqualFold applies the EqualFold predicate on the "auth_url" field.

func AuthURLGT

func AuthURLGT(v string) predicate.OauthProvider

AuthURLGT applies the GT predicate on the "auth_url" field.

func AuthURLGTE

func AuthURLGTE(v string) predicate.OauthProvider

AuthURLGTE applies the GTE predicate on the "auth_url" field.

func AuthURLHasPrefix

func AuthURLHasPrefix(v string) predicate.OauthProvider

AuthURLHasPrefix applies the HasPrefix predicate on the "auth_url" field.

func AuthURLHasSuffix

func AuthURLHasSuffix(v string) predicate.OauthProvider

AuthURLHasSuffix applies the HasSuffix predicate on the "auth_url" field.

func AuthURLIn

func AuthURLIn(vs ...string) predicate.OauthProvider

AuthURLIn applies the In predicate on the "auth_url" field.

func AuthURLLT

func AuthURLLT(v string) predicate.OauthProvider

AuthURLLT applies the LT predicate on the "auth_url" field.

func AuthURLLTE

func AuthURLLTE(v string) predicate.OauthProvider

AuthURLLTE applies the LTE predicate on the "auth_url" field.

func AuthURLNEQ

func AuthURLNEQ(v string) predicate.OauthProvider

AuthURLNEQ applies the NEQ predicate on the "auth_url" field.

func AuthURLNotIn

func AuthURLNotIn(vs ...string) predicate.OauthProvider

AuthURLNotIn applies the NotIn predicate on the "auth_url" field.

func ClientID

func ClientID(v string) predicate.OauthProvider

ClientID applies equality check predicate on the "client_id" field. It's identical to ClientIDEQ.

func ClientIDContains

func ClientIDContains(v string) predicate.OauthProvider

ClientIDContains applies the Contains predicate on the "client_id" field.

func ClientIDContainsFold

func ClientIDContainsFold(v string) predicate.OauthProvider

ClientIDContainsFold applies the ContainsFold predicate on the "client_id" field.

func ClientIDEQ

func ClientIDEQ(v string) predicate.OauthProvider

ClientIDEQ applies the EQ predicate on the "client_id" field.

func ClientIDEqualFold

func ClientIDEqualFold(v string) predicate.OauthProvider

ClientIDEqualFold applies the EqualFold predicate on the "client_id" field.

func ClientIDGT

func ClientIDGT(v string) predicate.OauthProvider

ClientIDGT applies the GT predicate on the "client_id" field.

func ClientIDGTE

func ClientIDGTE(v string) predicate.OauthProvider

ClientIDGTE applies the GTE predicate on the "client_id" field.

func ClientIDHasPrefix

func ClientIDHasPrefix(v string) predicate.OauthProvider

ClientIDHasPrefix applies the HasPrefix predicate on the "client_id" field.

func ClientIDHasSuffix

func ClientIDHasSuffix(v string) predicate.OauthProvider

ClientIDHasSuffix applies the HasSuffix predicate on the "client_id" field.

func ClientIDIn

func ClientIDIn(vs ...string) predicate.OauthProvider

ClientIDIn applies the In predicate on the "client_id" field.

func ClientIDLT

func ClientIDLT(v string) predicate.OauthProvider

ClientIDLT applies the LT predicate on the "client_id" field.

func ClientIDLTE

func ClientIDLTE(v string) predicate.OauthProvider

ClientIDLTE applies the LTE predicate on the "client_id" field.

func ClientIDNEQ

func ClientIDNEQ(v string) predicate.OauthProvider

ClientIDNEQ applies the NEQ predicate on the "client_id" field.

func ClientIDNotIn

func ClientIDNotIn(vs ...string) predicate.OauthProvider

ClientIDNotIn applies the NotIn predicate on the "client_id" field.

func ClientSecret

func ClientSecret(v string) predicate.OauthProvider

ClientSecret applies equality check predicate on the "client_secret" field. It's identical to ClientSecretEQ.

func ClientSecretContains

func ClientSecretContains(v string) predicate.OauthProvider

ClientSecretContains applies the Contains predicate on the "client_secret" field.

func ClientSecretContainsFold

func ClientSecretContainsFold(v string) predicate.OauthProvider

ClientSecretContainsFold applies the ContainsFold predicate on the "client_secret" field.

func ClientSecretEQ

func ClientSecretEQ(v string) predicate.OauthProvider

ClientSecretEQ applies the EQ predicate on the "client_secret" field.

func ClientSecretEqualFold

func ClientSecretEqualFold(v string) predicate.OauthProvider

ClientSecretEqualFold applies the EqualFold predicate on the "client_secret" field.

func ClientSecretGT

func ClientSecretGT(v string) predicate.OauthProvider

ClientSecretGT applies the GT predicate on the "client_secret" field.

func ClientSecretGTE

func ClientSecretGTE(v string) predicate.OauthProvider

ClientSecretGTE applies the GTE predicate on the "client_secret" field.

func ClientSecretHasPrefix

func ClientSecretHasPrefix(v string) predicate.OauthProvider

ClientSecretHasPrefix applies the HasPrefix predicate on the "client_secret" field.

func ClientSecretHasSuffix

func ClientSecretHasSuffix(v string) predicate.OauthProvider

ClientSecretHasSuffix applies the HasSuffix predicate on the "client_secret" field.

func ClientSecretIn

func ClientSecretIn(vs ...string) predicate.OauthProvider

ClientSecretIn applies the In predicate on the "client_secret" field.

func ClientSecretLT

func ClientSecretLT(v string) predicate.OauthProvider

ClientSecretLT applies the LT predicate on the "client_secret" field.

func ClientSecretLTE

func ClientSecretLTE(v string) predicate.OauthProvider

ClientSecretLTE applies the LTE predicate on the "client_secret" field.

func ClientSecretNEQ

func ClientSecretNEQ(v string) predicate.OauthProvider

ClientSecretNEQ applies the NEQ predicate on the "client_secret" field.

func ClientSecretNotIn

func ClientSecretNotIn(vs ...string) predicate.OauthProvider

ClientSecretNotIn applies the NotIn predicate on the "client_secret" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.OauthProvider

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.OauthProvider

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.OauthProvider

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.OauthProvider

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.OauthProvider

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.OauthProvider

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.OauthProvider

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

func CreatedAtNotIn

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

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

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uint64) predicate.OauthProvider

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uint64) predicate.OauthProvider

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uint64) predicate.OauthProvider

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uint64) predicate.OauthProvider

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uint64) predicate.OauthProvider

IDNotIn applies the NotIn predicate on the ID field.

func InfoURL

func InfoURL(v string) predicate.OauthProvider

InfoURL applies equality check predicate on the "info_url" field. It's identical to InfoURLEQ.

func InfoURLContains

func InfoURLContains(v string) predicate.OauthProvider

InfoURLContains applies the Contains predicate on the "info_url" field.

func InfoURLContainsFold

func InfoURLContainsFold(v string) predicate.OauthProvider

InfoURLContainsFold applies the ContainsFold predicate on the "info_url" field.

func InfoURLEQ

func InfoURLEQ(v string) predicate.OauthProvider

InfoURLEQ applies the EQ predicate on the "info_url" field.

func InfoURLEqualFold

func InfoURLEqualFold(v string) predicate.OauthProvider

InfoURLEqualFold applies the EqualFold predicate on the "info_url" field.

func InfoURLGT

func InfoURLGT(v string) predicate.OauthProvider

InfoURLGT applies the GT predicate on the "info_url" field.

func InfoURLGTE

func InfoURLGTE(v string) predicate.OauthProvider

InfoURLGTE applies the GTE predicate on the "info_url" field.

func InfoURLHasPrefix

func InfoURLHasPrefix(v string) predicate.OauthProvider

InfoURLHasPrefix applies the HasPrefix predicate on the "info_url" field.

func InfoURLHasSuffix

func InfoURLHasSuffix(v string) predicate.OauthProvider

InfoURLHasSuffix applies the HasSuffix predicate on the "info_url" field.

func InfoURLIn

func InfoURLIn(vs ...string) predicate.OauthProvider

InfoURLIn applies the In predicate on the "info_url" field.

func InfoURLLT

func InfoURLLT(v string) predicate.OauthProvider

InfoURLLT applies the LT predicate on the "info_url" field.

func InfoURLLTE

func InfoURLLTE(v string) predicate.OauthProvider

InfoURLLTE applies the LTE predicate on the "info_url" field.

func InfoURLNEQ

func InfoURLNEQ(v string) predicate.OauthProvider

InfoURLNEQ applies the NEQ predicate on the "info_url" field.

func InfoURLNotIn

func InfoURLNotIn(vs ...string) predicate.OauthProvider

InfoURLNotIn applies the NotIn predicate on the "info_url" field.

func Name

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

func NameContains

func NameContains(v string) predicate.OauthProvider

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

func NameContainsFold

func NameContainsFold(v string) predicate.OauthProvider

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

func NameEQ

func NameEQ(v string) predicate.OauthProvider

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

func NameEqualFold

func NameEqualFold(v string) predicate.OauthProvider

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

func NameGT

func NameGT(v string) predicate.OauthProvider

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

func NameGTE

func NameGTE(v string) predicate.OauthProvider

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.OauthProvider

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.OauthProvider

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.OauthProvider

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

func NameLTE

func NameLTE(v string) predicate.OauthProvider

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

func NameNEQ

func NameNEQ(v string) predicate.OauthProvider

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

func NameNotIn

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

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

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func RedirectURL

func RedirectURL(v string) predicate.OauthProvider

RedirectURL applies equality check predicate on the "redirect_url" field. It's identical to RedirectURLEQ.

func RedirectURLContains

func RedirectURLContains(v string) predicate.OauthProvider

RedirectURLContains applies the Contains predicate on the "redirect_url" field.

func RedirectURLContainsFold

func RedirectURLContainsFold(v string) predicate.OauthProvider

RedirectURLContainsFold applies the ContainsFold predicate on the "redirect_url" field.

func RedirectURLEQ

func RedirectURLEQ(v string) predicate.OauthProvider

RedirectURLEQ applies the EQ predicate on the "redirect_url" field.

func RedirectURLEqualFold

func RedirectURLEqualFold(v string) predicate.OauthProvider

RedirectURLEqualFold applies the EqualFold predicate on the "redirect_url" field.

func RedirectURLGT

func RedirectURLGT(v string) predicate.OauthProvider

RedirectURLGT applies the GT predicate on the "redirect_url" field.

func RedirectURLGTE

func RedirectURLGTE(v string) predicate.OauthProvider

RedirectURLGTE applies the GTE predicate on the "redirect_url" field.

func RedirectURLHasPrefix

func RedirectURLHasPrefix(v string) predicate.OauthProvider

RedirectURLHasPrefix applies the HasPrefix predicate on the "redirect_url" field.

func RedirectURLHasSuffix

func RedirectURLHasSuffix(v string) predicate.OauthProvider

RedirectURLHasSuffix applies the HasSuffix predicate on the "redirect_url" field.

func RedirectURLIn

func RedirectURLIn(vs ...string) predicate.OauthProvider

RedirectURLIn applies the In predicate on the "redirect_url" field.

func RedirectURLLT

func RedirectURLLT(v string) predicate.OauthProvider

RedirectURLLT applies the LT predicate on the "redirect_url" field.

func RedirectURLLTE

func RedirectURLLTE(v string) predicate.OauthProvider

RedirectURLLTE applies the LTE predicate on the "redirect_url" field.

func RedirectURLNEQ

func RedirectURLNEQ(v string) predicate.OauthProvider

RedirectURLNEQ applies the NEQ predicate on the "redirect_url" field.

func RedirectURLNotIn

func RedirectURLNotIn(vs ...string) predicate.OauthProvider

RedirectURLNotIn applies the NotIn predicate on the "redirect_url" field.

func Scopes

func Scopes(v string) predicate.OauthProvider

Scopes applies equality check predicate on the "scopes" field. It's identical to ScopesEQ.

func ScopesContains

func ScopesContains(v string) predicate.OauthProvider

ScopesContains applies the Contains predicate on the "scopes" field.

func ScopesContainsFold

func ScopesContainsFold(v string) predicate.OauthProvider

ScopesContainsFold applies the ContainsFold predicate on the "scopes" field.

func ScopesEQ

func ScopesEQ(v string) predicate.OauthProvider

ScopesEQ applies the EQ predicate on the "scopes" field.

func ScopesEqualFold

func ScopesEqualFold(v string) predicate.OauthProvider

ScopesEqualFold applies the EqualFold predicate on the "scopes" field.

func ScopesGT

func ScopesGT(v string) predicate.OauthProvider

ScopesGT applies the GT predicate on the "scopes" field.

func ScopesGTE

func ScopesGTE(v string) predicate.OauthProvider

ScopesGTE applies the GTE predicate on the "scopes" field.

func ScopesHasPrefix

func ScopesHasPrefix(v string) predicate.OauthProvider

ScopesHasPrefix applies the HasPrefix predicate on the "scopes" field.

func ScopesHasSuffix

func ScopesHasSuffix(v string) predicate.OauthProvider

ScopesHasSuffix applies the HasSuffix predicate on the "scopes" field.

func ScopesIn

func ScopesIn(vs ...string) predicate.OauthProvider

ScopesIn applies the In predicate on the "scopes" field.

func ScopesLT

func ScopesLT(v string) predicate.OauthProvider

ScopesLT applies the LT predicate on the "scopes" field.

func ScopesLTE

func ScopesLTE(v string) predicate.OauthProvider

ScopesLTE applies the LTE predicate on the "scopes" field.

func ScopesNEQ

func ScopesNEQ(v string) predicate.OauthProvider

ScopesNEQ applies the NEQ predicate on the "scopes" field.

func ScopesNotIn

func ScopesNotIn(vs ...string) predicate.OauthProvider

ScopesNotIn applies the NotIn predicate on the "scopes" field.

func TokenURL

func TokenURL(v string) predicate.OauthProvider

TokenURL applies equality check predicate on the "token_url" field. It's identical to TokenURLEQ.

func TokenURLContains

func TokenURLContains(v string) predicate.OauthProvider

TokenURLContains applies the Contains predicate on the "token_url" field.

func TokenURLContainsFold

func TokenURLContainsFold(v string) predicate.OauthProvider

TokenURLContainsFold applies the ContainsFold predicate on the "token_url" field.

func TokenURLEQ

func TokenURLEQ(v string) predicate.OauthProvider

TokenURLEQ applies the EQ predicate on the "token_url" field.

func TokenURLEqualFold

func TokenURLEqualFold(v string) predicate.OauthProvider

TokenURLEqualFold applies the EqualFold predicate on the "token_url" field.

func TokenURLGT

func TokenURLGT(v string) predicate.OauthProvider

TokenURLGT applies the GT predicate on the "token_url" field.

func TokenURLGTE

func TokenURLGTE(v string) predicate.OauthProvider

TokenURLGTE applies the GTE predicate on the "token_url" field.

func TokenURLHasPrefix

func TokenURLHasPrefix(v string) predicate.OauthProvider

TokenURLHasPrefix applies the HasPrefix predicate on the "token_url" field.

func TokenURLHasSuffix

func TokenURLHasSuffix(v string) predicate.OauthProvider

TokenURLHasSuffix applies the HasSuffix predicate on the "token_url" field.

func TokenURLIn

func TokenURLIn(vs ...string) predicate.OauthProvider

TokenURLIn applies the In predicate on the "token_url" field.

func TokenURLLT

func TokenURLLT(v string) predicate.OauthProvider

TokenURLLT applies the LT predicate on the "token_url" field.

func TokenURLLTE

func TokenURLLTE(v string) predicate.OauthProvider

TokenURLLTE applies the LTE predicate on the "token_url" field.

func TokenURLNEQ

func TokenURLNEQ(v string) predicate.OauthProvider

TokenURLNEQ applies the NEQ predicate on the "token_url" field.

func TokenURLNotIn

func TokenURLNotIn(vs ...string) predicate.OauthProvider

TokenURLNotIn applies the NotIn predicate on the "token_url" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.OauthProvider

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.OauthProvider

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.OauthProvider

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.OauthProvider

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.OauthProvider

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.OauthProvider

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.OauthProvider

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" 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 OauthProvider queries.

func ByAuthStyle

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

ByAuthStyle orders the results by the auth_style field.

func ByAuthURL

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

ByAuthURL orders the results by the auth_url field.

func ByClientID

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

ByClientID orders the results by the client_id field.

func ByClientSecret

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

ByClientSecret orders the results by the client_secret field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByID

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

ByID orders the results by the id field.

func ByInfoURL

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

ByInfoURL orders the results by the info_url field.

func ByName

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

ByName orders the results by the name field.

func ByRedirectURL

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

ByRedirectURL orders the results by the redirect_url field.

func ByScopes

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

ByScopes orders the results by the scopes field.

func ByTokenURL

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

ByTokenURL orders the results by the token_url field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

Jump to

Keyboard shortcuts

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