Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.AccessToken) predicate.AccessToken
- func ExpiresAt(v time.Time) predicate.AccessToken
- func ExpiresAtEQ(v time.Time) predicate.AccessToken
- func ExpiresAtGT(v time.Time) predicate.AccessToken
- func ExpiresAtGTE(v time.Time) predicate.AccessToken
- func ExpiresAtIn(vs ...time.Time) predicate.AccessToken
- func ExpiresAtLT(v time.Time) predicate.AccessToken
- func ExpiresAtLTE(v time.Time) predicate.AccessToken
- func ExpiresAtNEQ(v time.Time) predicate.AccessToken
- func ExpiresAtNotIn(vs ...time.Time) predicate.AccessToken
- func HasGroups() predicate.AccessToken
- func HasGroupsWith(preds ...predicate.Group) predicate.AccessToken
- func HasUser() predicate.AccessToken
- func HasUserWith(preds ...predicate.User) predicate.AccessToken
- func ID(id uuid.UUID) predicate.AccessToken
- func IDEQ(id uuid.UUID) predicate.AccessToken
- func IDGT(id uuid.UUID) predicate.AccessToken
- func IDGTE(id uuid.UUID) predicate.AccessToken
- func IDIn(ids ...uuid.UUID) predicate.AccessToken
- func IDLT(id uuid.UUID) predicate.AccessToken
- func IDLTE(id uuid.UUID) predicate.AccessToken
- func IDNEQ(id uuid.UUID) predicate.AccessToken
- func IDNotIn(ids ...uuid.UUID) predicate.AccessToken
- func Not(p predicate.AccessToken) predicate.AccessToken
- func Or(predicates ...predicate.AccessToken) predicate.AccessToken
- func Token(v string) predicate.AccessToken
- func TokenContains(v string) predicate.AccessToken
- func TokenContainsFold(v string) predicate.AccessToken
- func TokenEQ(v string) predicate.AccessToken
- func TokenEqualFold(v string) predicate.AccessToken
- func TokenGT(v string) predicate.AccessToken
- func TokenGTE(v string) predicate.AccessToken
- func TokenHasPrefix(v string) predicate.AccessToken
- func TokenHasSuffix(v string) predicate.AccessToken
- func TokenIn(vs ...string) predicate.AccessToken
- func TokenLT(v string) predicate.AccessToken
- func TokenLTE(v string) predicate.AccessToken
- func TokenNEQ(v string) predicate.AccessToken
- func TokenNotIn(vs ...string) predicate.AccessToken
- func ValidColumn(column string) bool
- type OrderOption
- func ByExpiresAt(opts ...sql.OrderTermOption) OrderOption
- func ByGroups(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
- func ByGroupsCount(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByToken(opts ...sql.OrderTermOption) OrderOption
- func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the accesstoken type in the database. Label = "access_token" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldToken holds the string denoting the token field in the database. FieldToken = "token" // FieldExpiresAt holds the string denoting the expires_at field in the database. FieldExpiresAt = "expires_at" // EdgeUser holds the string denoting the user edge name in mutations. EdgeUser = "user" // EdgeGroups holds the string denoting the groups edge name in mutations. EdgeGroups = "groups" // Table holds the table name of the accesstoken in the database. Table = "access_tokens" // UserTable is the table that holds the user relation/edge. UserTable = "access_tokens" // UserInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. UserInverseTable = "users" // UserColumn is the table column denoting the user relation/edge. UserColumn = "user_access_tokens" // GroupsTable is the table that holds the groups relation/edge. The primary key declared below. GroupsTable = "group_access_tokens" // 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" )
Variables ¶
var Columns = []string{ FieldID, FieldToken, FieldExpiresAt, }
Columns holds all SQL columns for accesstoken fields.
var ( // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var ForeignKeys = []string{
"user_access_tokens",
}
ForeignKeys holds the SQL foreign-keys that are owned by the "access_tokens" table and are not defined as standalone fields in the schema.
var ( // GroupsPrimaryKey and GroupsColumn2 are the table columns denoting the // primary key for the groups relation (M2M). GroupsPrimaryKey = []string{"group_id", "access_token_id"} )
Functions ¶
func And ¶
func And(predicates ...predicate.AccessToken) predicate.AccessToken
And groups predicates with the AND operator between them.
func ExpiresAt ¶
func ExpiresAt(v time.Time) predicate.AccessToken
ExpiresAt applies equality check predicate on the "expires_at" field. It's identical to ExpiresAtEQ.
func ExpiresAtEQ ¶
func ExpiresAtEQ(v time.Time) predicate.AccessToken
ExpiresAtEQ applies the EQ predicate on the "expires_at" field.
func ExpiresAtGT ¶
func ExpiresAtGT(v time.Time) predicate.AccessToken
ExpiresAtGT applies the GT predicate on the "expires_at" field.
func ExpiresAtGTE ¶
func ExpiresAtGTE(v time.Time) predicate.AccessToken
ExpiresAtGTE applies the GTE predicate on the "expires_at" field.
func ExpiresAtIn ¶
func ExpiresAtIn(vs ...time.Time) predicate.AccessToken
ExpiresAtIn applies the In predicate on the "expires_at" field.
func ExpiresAtLT ¶
func ExpiresAtLT(v time.Time) predicate.AccessToken
ExpiresAtLT applies the LT predicate on the "expires_at" field.
func ExpiresAtLTE ¶
func ExpiresAtLTE(v time.Time) predicate.AccessToken
ExpiresAtLTE applies the LTE predicate on the "expires_at" field.
func ExpiresAtNEQ ¶
func ExpiresAtNEQ(v time.Time) predicate.AccessToken
ExpiresAtNEQ applies the NEQ predicate on the "expires_at" field.
func ExpiresAtNotIn ¶
func ExpiresAtNotIn(vs ...time.Time) predicate.AccessToken
ExpiresAtNotIn applies the NotIn predicate on the "expires_at" field.
func HasGroups ¶
func HasGroups() predicate.AccessToken
HasGroups applies the HasEdge predicate on the "groups" edge.
func HasGroupsWith ¶
func HasGroupsWith(preds ...predicate.Group) predicate.AccessToken
HasGroupsWith applies the HasEdge predicate on the "groups" edge with a given conditions (other predicates).
func HasUser ¶
func HasUser() predicate.AccessToken
HasUser applies the HasEdge predicate on the "user" edge.
func HasUserWith ¶
func HasUserWith(preds ...predicate.User) predicate.AccessToken
HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.AccessToken
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.AccessToken
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.AccessToken
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.AccessToken
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.AccessToken
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.AccessToken
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.AccessToken
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.AccessToken
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.AccessToken) predicate.AccessToken
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.AccessToken) predicate.AccessToken
Or groups predicates with the OR operator between them.
func Token ¶
func Token(v string) predicate.AccessToken
Token applies equality check predicate on the "token" field. It's identical to TokenEQ.
func TokenContains ¶
func TokenContains(v string) predicate.AccessToken
TokenContains applies the Contains predicate on the "token" field.
func TokenContainsFold ¶
func TokenContainsFold(v string) predicate.AccessToken
TokenContainsFold applies the ContainsFold predicate on the "token" field.
func TokenEQ ¶
func TokenEQ(v string) predicate.AccessToken
TokenEQ applies the EQ predicate on the "token" field.
func TokenEqualFold ¶
func TokenEqualFold(v string) predicate.AccessToken
TokenEqualFold applies the EqualFold predicate on the "token" field.
func TokenGT ¶
func TokenGT(v string) predicate.AccessToken
TokenGT applies the GT predicate on the "token" field.
func TokenGTE ¶
func TokenGTE(v string) predicate.AccessToken
TokenGTE applies the GTE predicate on the "token" field.
func TokenHasPrefix ¶
func TokenHasPrefix(v string) predicate.AccessToken
TokenHasPrefix applies the HasPrefix predicate on the "token" field.
func TokenHasSuffix ¶
func TokenHasSuffix(v string) predicate.AccessToken
TokenHasSuffix applies the HasSuffix predicate on the "token" field.
func TokenIn ¶
func TokenIn(vs ...string) predicate.AccessToken
TokenIn applies the In predicate on the "token" field.
func TokenLT ¶
func TokenLT(v string) predicate.AccessToken
TokenLT applies the LT predicate on the "token" field.
func TokenLTE ¶
func TokenLTE(v string) predicate.AccessToken
TokenLTE applies the LTE predicate on the "token" field.
func TokenNEQ ¶
func TokenNEQ(v string) predicate.AccessToken
TokenNEQ applies the NEQ predicate on the "token" field.
func TokenNotIn ¶
func TokenNotIn(vs ...string) predicate.AccessToken
TokenNotIn applies the NotIn predicate on the "token" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the AccessToken queries.
func ByExpiresAt ¶
func ByExpiresAt(opts ...sql.OrderTermOption) OrderOption
ByExpiresAt orders the results by the expires_at field.
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 ByToken ¶
func ByToken(opts ...sql.OrderTermOption) OrderOption
ByToken orders the results by the token field.
func ByUserField ¶
func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption
ByUserField orders the results by user field.