Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Subscription) predicate.Subscription
- func CreatedAt(v time.Time) predicate.Subscription
- func CreatedAtEQ(v time.Time) predicate.Subscription
- func CreatedAtGT(v time.Time) predicate.Subscription
- func CreatedAtGTE(v time.Time) predicate.Subscription
- func CreatedAtIn(vs ...time.Time) predicate.Subscription
- func CreatedAtLT(v time.Time) predicate.Subscription
- func CreatedAtLTE(v time.Time) predicate.Subscription
- func CreatedAtNEQ(v time.Time) predicate.Subscription
- func CreatedAtNotIn(vs ...time.Time) predicate.Subscription
- func FeedID(v uuid.UUID) predicate.Subscription
- func FeedIDEQ(v uuid.UUID) predicate.Subscription
- func FeedIDIn(vs ...uuid.UUID) predicate.Subscription
- func FeedIDNEQ(v uuid.UUID) predicate.Subscription
- func FeedIDNotIn(vs ...uuid.UUID) predicate.Subscription
- func Group(v string) predicate.Subscription
- func GroupContains(v string) predicate.Subscription
- func GroupContainsFold(v string) predicate.Subscription
- func GroupEQ(v string) predicate.Subscription
- func GroupEqualFold(v string) predicate.Subscription
- func GroupGT(v string) predicate.Subscription
- func GroupGTE(v string) predicate.Subscription
- func GroupHasPrefix(v string) predicate.Subscription
- func GroupHasSuffix(v string) predicate.Subscription
- func GroupIn(vs ...string) predicate.Subscription
- func GroupLT(v string) predicate.Subscription
- func GroupLTE(v string) predicate.Subscription
- func GroupNEQ(v string) predicate.Subscription
- func GroupNotIn(vs ...string) predicate.Subscription
- func HasFeed() predicate.Subscription
- func HasFeedWith(preds ...predicate.Feed) predicate.Subscription
- func HasUser() predicate.Subscription
- func HasUserWith(preds ...predicate.User) predicate.Subscription
- func ID(id uuid.UUID) predicate.Subscription
- func IDEQ(id uuid.UUID) predicate.Subscription
- func IDGT(id uuid.UUID) predicate.Subscription
- func IDGTE(id uuid.UUID) predicate.Subscription
- func IDIn(ids ...uuid.UUID) predicate.Subscription
- func IDLT(id uuid.UUID) predicate.Subscription
- func IDLTE(id uuid.UUID) predicate.Subscription
- func IDNEQ(id uuid.UUID) predicate.Subscription
- func IDNotIn(ids ...uuid.UUID) predicate.Subscription
- func Name(v string) predicate.Subscription
- func NameContains(v string) predicate.Subscription
- func NameContainsFold(v string) predicate.Subscription
- func NameEQ(v string) predicate.Subscription
- func NameEqualFold(v string) predicate.Subscription
- func NameGT(v string) predicate.Subscription
- func NameGTE(v string) predicate.Subscription
- func NameHasPrefix(v string) predicate.Subscription
- func NameHasSuffix(v string) predicate.Subscription
- func NameIn(vs ...string) predicate.Subscription
- func NameLT(v string) predicate.Subscription
- func NameLTE(v string) predicate.Subscription
- func NameNEQ(v string) predicate.Subscription
- func NameNotIn(vs ...string) predicate.Subscription
- func Not(p predicate.Subscription) predicate.Subscription
- func Or(predicates ...predicate.Subscription) predicate.Subscription
- func UserID(v uuid.UUID) predicate.Subscription
- func UserIDEQ(v uuid.UUID) predicate.Subscription
- func UserIDIn(vs ...uuid.UUID) predicate.Subscription
- func UserIDNEQ(v uuid.UUID) predicate.Subscription
- func UserIDNotIn(vs ...uuid.UUID) predicate.Subscription
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByFeedField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByFeedID(opts ...sql.OrderTermOption) OrderOption
- func ByGroup(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByName(opts ...sql.OrderTermOption) OrderOption
- func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByUserID(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the subscription type in the database. Label = "subscription" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldUserID holds the string denoting the user_id field in the database. FieldUserID = "user_id" // FieldFeedID holds the string denoting the feed_id field in the database. FieldFeedID = "feed_id" // FieldName holds the string denoting the name field in the database. FieldName = "name" // FieldGroup holds the string denoting the group field in the database. FieldGroup = "group" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // EdgeUser holds the string denoting the user edge name in mutations. EdgeUser = "user" // EdgeFeed holds the string denoting the feed edge name in mutations. EdgeFeed = "feed" // Table holds the table name of the subscription in the database. Table = "subscriptions" // UserTable is the table that holds the user relation/edge. UserTable = "subscriptions" // 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_id" // FeedTable is the table that holds the feed relation/edge. FeedTable = "subscriptions" // FeedInverseTable is the table name for the Feed entity. // It exists in this package in order to avoid circular dependency with the "feed" package. FeedInverseTable = "feeds" // FeedColumn is the table column denoting the feed relation/edge. FeedColumn = "feed_id" )
Variables ¶
var ( // NameValidator is a validator for the "name" field. It is called by the builders before save. NameValidator func(string) error // GroupValidator is a validator for the "group" field. It is called by the builders before save. GroupValidator func(string) error // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultID holds the default value on creation for the "id" field. DefaultID func() uuid.UUID )
var Columns = []string{ FieldID, FieldUserID, FieldFeedID, FieldName, FieldGroup, FieldCreatedAt, }
Columns holds all SQL columns for subscription fields.
Functions ¶
func And ¶
func And(predicates ...predicate.Subscription) predicate.Subscription
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.Subscription
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.Subscription
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.Subscription
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.Subscription
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.Subscription
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.Subscription
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.Subscription
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.Subscription
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.Subscription
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func FeedID ¶
func FeedID(v uuid.UUID) predicate.Subscription
FeedID applies equality check predicate on the "feed_id" field. It's identical to FeedIDEQ.
func FeedIDEQ ¶
func FeedIDEQ(v uuid.UUID) predicate.Subscription
FeedIDEQ applies the EQ predicate on the "feed_id" field.
func FeedIDIn ¶
func FeedIDIn(vs ...uuid.UUID) predicate.Subscription
FeedIDIn applies the In predicate on the "feed_id" field.
func FeedIDNEQ ¶
func FeedIDNEQ(v uuid.UUID) predicate.Subscription
FeedIDNEQ applies the NEQ predicate on the "feed_id" field.
func FeedIDNotIn ¶
func FeedIDNotIn(vs ...uuid.UUID) predicate.Subscription
FeedIDNotIn applies the NotIn predicate on the "feed_id" field.
func Group ¶
func Group(v string) predicate.Subscription
Group applies equality check predicate on the "group" field. It's identical to GroupEQ.
func GroupContains ¶
func GroupContains(v string) predicate.Subscription
GroupContains applies the Contains predicate on the "group" field.
func GroupContainsFold ¶
func GroupContainsFold(v string) predicate.Subscription
GroupContainsFold applies the ContainsFold predicate on the "group" field.
func GroupEQ ¶
func GroupEQ(v string) predicate.Subscription
GroupEQ applies the EQ predicate on the "group" field.
func GroupEqualFold ¶
func GroupEqualFold(v string) predicate.Subscription
GroupEqualFold applies the EqualFold predicate on the "group" field.
func GroupGT ¶
func GroupGT(v string) predicate.Subscription
GroupGT applies the GT predicate on the "group" field.
func GroupGTE ¶
func GroupGTE(v string) predicate.Subscription
GroupGTE applies the GTE predicate on the "group" field.
func GroupHasPrefix ¶
func GroupHasPrefix(v string) predicate.Subscription
GroupHasPrefix applies the HasPrefix predicate on the "group" field.
func GroupHasSuffix ¶
func GroupHasSuffix(v string) predicate.Subscription
GroupHasSuffix applies the HasSuffix predicate on the "group" field.
func GroupIn ¶
func GroupIn(vs ...string) predicate.Subscription
GroupIn applies the In predicate on the "group" field.
func GroupLT ¶
func GroupLT(v string) predicate.Subscription
GroupLT applies the LT predicate on the "group" field.
func GroupLTE ¶
func GroupLTE(v string) predicate.Subscription
GroupLTE applies the LTE predicate on the "group" field.
func GroupNEQ ¶
func GroupNEQ(v string) predicate.Subscription
GroupNEQ applies the NEQ predicate on the "group" field.
func GroupNotIn ¶
func GroupNotIn(vs ...string) predicate.Subscription
GroupNotIn applies the NotIn predicate on the "group" field.
func HasFeed ¶
func HasFeed() predicate.Subscription
HasFeed applies the HasEdge predicate on the "feed" edge.
func HasFeedWith ¶
func HasFeedWith(preds ...predicate.Feed) predicate.Subscription
HasFeedWith applies the HasEdge predicate on the "feed" edge with a given conditions (other predicates).
func HasUser ¶
func HasUser() predicate.Subscription
HasUser applies the HasEdge predicate on the "user" edge.
func HasUserWith ¶
func HasUserWith(preds ...predicate.User) predicate.Subscription
HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.Subscription
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.Subscription
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.Subscription
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.Subscription
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.Subscription
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.Subscription
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.Subscription
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.Subscription
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.Subscription
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.Subscription
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.Subscription
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.Subscription
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.Subscription
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.Subscription
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.Subscription
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.Subscription
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.Subscription
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.Subscription
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.Subscription
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.Subscription
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.Subscription
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.Subscription
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.Subscription) predicate.Subscription
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.Subscription) predicate.Subscription
Or groups predicates with the OR operator between them.
func UserID ¶
func UserID(v uuid.UUID) predicate.Subscription
UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
func UserIDEQ ¶
func UserIDEQ(v uuid.UUID) predicate.Subscription
UserIDEQ applies the EQ predicate on the "user_id" field.
func UserIDIn ¶
func UserIDIn(vs ...uuid.UUID) predicate.Subscription
UserIDIn applies the In predicate on the "user_id" field.
func UserIDNEQ ¶
func UserIDNEQ(v uuid.UUID) predicate.Subscription
UserIDNEQ applies the NEQ predicate on the "user_id" field.
func UserIDNotIn ¶
func UserIDNotIn(vs ...uuid.UUID) predicate.Subscription
UserIDNotIn applies the NotIn predicate on the "user_id" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶ added in v1.0.1
OrderOption defines the ordering options for the Subscription queries.
func ByCreatedAt ¶ added in v1.0.1
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByFeedField ¶ added in v1.0.1
func ByFeedField(field string, opts ...sql.OrderTermOption) OrderOption
ByFeedField orders the results by feed field.
func ByFeedID ¶ added in v1.0.1
func ByFeedID(opts ...sql.OrderTermOption) OrderOption
ByFeedID orders the results by the feed_id field.
func ByGroup ¶ added in v1.0.1
func ByGroup(opts ...sql.OrderTermOption) OrderOption
ByGroup orders the results by the group field.
func ByID ¶ added in v1.0.1
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByName ¶ added in v1.0.1
func ByName(opts ...sql.OrderTermOption) OrderOption
ByName orders the results by the name field.
func ByUserField ¶ added in v1.0.1
func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption
ByUserField orders the results by user field.
func ByUserID ¶ added in v1.0.1
func ByUserID(opts ...sql.OrderTermOption) OrderOption
ByUserID orders the results by the user_id field.