feed

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Aug 28, 2022 License: GPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the feed type in the database.
	Label = "feed"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldURL holds the string denoting the url field in the database.
	FieldURL = "url"
	// FieldUsername holds the string denoting the username field in the database.
	FieldUsername = "username"
	// FieldPassword holds the string denoting the password field in the database.
	FieldPassword = "password"
	// FieldFeedTitle holds the string denoting the feed_title field in the database.
	FieldFeedTitle = "feed_title"
	// FieldFeedDescription holds the string denoting the feed_description field in the database.
	FieldFeedDescription = "feed_description"
	// FieldFeedLink holds the string denoting the feed_link field in the database.
	FieldFeedLink = "feed_link"
	// FieldFeedFeedLink holds the string denoting the feed_feed_link field in the database.
	FieldFeedFeedLink = "feed_feed_link"
	// FieldFeedUpdated holds the string denoting the feed_updated field in the database.
	FieldFeedUpdated = "feed_updated"
	// FieldFeedPublished holds the string denoting the feed_published field in the database.
	FieldFeedPublished = "feed_published"
	// FieldFeedAuthorName holds the string denoting the feed_author_name field in the database.
	FieldFeedAuthorName = "feed_author_name"
	// FieldFeedAuthorEmail holds the string denoting the feed_author_email field in the database.
	FieldFeedAuthorEmail = "feed_author_email"
	// FieldFeedLanguage holds the string denoting the feed_language field in the database.
	FieldFeedLanguage = "feed_language"
	// FieldFeedImageTitle holds the string denoting the feed_image_title field in the database.
	FieldFeedImageTitle = "feed_image_title"
	// FieldFeedImageURL holds the string denoting the feed_image_url field in the database.
	FieldFeedImageURL = "feed_image_url"
	// FieldFeedCopyright holds the string denoting the feed_copyright field in the database.
	FieldFeedCopyright = "feed_copyright"
	// FieldFeedGenerator holds the string denoting the feed_generator field in the database.
	FieldFeedGenerator = "feed_generator"
	// FieldFeedCategories holds the string denoting the feed_categories field in the database.
	FieldFeedCategories = "feed_categories"
	// 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"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "deleted_at"
	// EdgeItems holds the string denoting the items edge name in mutations.
	EdgeItems = "items"
	// EdgeSubscribedUsers holds the string denoting the subscribed_users edge name in mutations.
	EdgeSubscribedUsers = "subscribed_users"
	// EdgeSubscriptions holds the string denoting the subscriptions edge name in mutations.
	EdgeSubscriptions = "subscriptions"
	// Table holds the table name of the feed in the database.
	Table = "feeds"
	// ItemsTable is the table that holds the items relation/edge.
	ItemsTable = "items"
	// ItemsInverseTable is the table name for the Item entity.
	// It exists in this package in order to avoid circular dependency with the "item" package.
	ItemsInverseTable = "items"
	// ItemsColumn is the table column denoting the items relation/edge.
	ItemsColumn = "feed_items"
	// SubscribedUsersTable is the table that holds the subscribed_users relation/edge. The primary key declared below.
	SubscribedUsersTable = "subscriptions"
	// SubscribedUsersInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	SubscribedUsersInverseTable = "users"
	// SubscriptionsTable is the table that holds the subscriptions relation/edge.
	SubscriptionsTable = "subscriptions"
	// SubscriptionsInverseTable is the table name for the Subscription entity.
	// It exists in this package in order to avoid circular dependency with the "subscription" package.
	SubscriptionsInverseTable = "subscriptions"
	// SubscriptionsColumn is the table column denoting the subscriptions relation/edge.
	SubscriptionsColumn = "feed_id"
)

Variables

View Source
var (
	// URLValidator is a validator for the "url" field. It is called by the builders before save.
	URLValidator func(string) error
	// DefaultUsername holds the default value on creation for the "username" field.
	DefaultUsername string
	// DefaultPassword holds the default value on creation for the "password" field.
	DefaultPassword string
	// 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
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for feed fields.

View Source
var (
	// SubscribedUsersPrimaryKey and SubscribedUsersColumn2 are the table columns denoting the
	// primary key for the subscribed_users relation (M2M).
	SubscribedUsersPrimaryKey = []string{"user_id", "feed_id"}
)

Functions

func And

func And(predicates ...predicate.Feed) predicate.Feed

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Feed

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Feed

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Feed

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Feed

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Feed

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Feed

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Feed

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

func CreatedAtNotIn

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

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

func DeletedAt

func DeletedAt(v time.Time) predicate.Feed

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.Feed

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.Feed

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.Feed

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.Feed

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.Feed

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.Feed

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.Feed

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.Feed

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

func FeedAuthorEmail

func FeedAuthorEmail(v string) predicate.Feed

FeedAuthorEmail applies equality check predicate on the "feed_author_email" field. It's identical to FeedAuthorEmailEQ.

func FeedAuthorEmailContains

func FeedAuthorEmailContains(v string) predicate.Feed

FeedAuthorEmailContains applies the Contains predicate on the "feed_author_email" field.

func FeedAuthorEmailContainsFold

func FeedAuthorEmailContainsFold(v string) predicate.Feed

FeedAuthorEmailContainsFold applies the ContainsFold predicate on the "feed_author_email" field.

func FeedAuthorEmailEQ

func FeedAuthorEmailEQ(v string) predicate.Feed

FeedAuthorEmailEQ applies the EQ predicate on the "feed_author_email" field.

func FeedAuthorEmailEqualFold

func FeedAuthorEmailEqualFold(v string) predicate.Feed

FeedAuthorEmailEqualFold applies the EqualFold predicate on the "feed_author_email" field.

func FeedAuthorEmailGT

func FeedAuthorEmailGT(v string) predicate.Feed

FeedAuthorEmailGT applies the GT predicate on the "feed_author_email" field.

func FeedAuthorEmailGTE

func FeedAuthorEmailGTE(v string) predicate.Feed

FeedAuthorEmailGTE applies the GTE predicate on the "feed_author_email" field.

func FeedAuthorEmailHasPrefix

func FeedAuthorEmailHasPrefix(v string) predicate.Feed

FeedAuthorEmailHasPrefix applies the HasPrefix predicate on the "feed_author_email" field.

func FeedAuthorEmailHasSuffix

func FeedAuthorEmailHasSuffix(v string) predicate.Feed

FeedAuthorEmailHasSuffix applies the HasSuffix predicate on the "feed_author_email" field.

func FeedAuthorEmailIn

func FeedAuthorEmailIn(vs ...string) predicate.Feed

FeedAuthorEmailIn applies the In predicate on the "feed_author_email" field.

func FeedAuthorEmailIsNil

func FeedAuthorEmailIsNil() predicate.Feed

FeedAuthorEmailIsNil applies the IsNil predicate on the "feed_author_email" field.

func FeedAuthorEmailLT

func FeedAuthorEmailLT(v string) predicate.Feed

FeedAuthorEmailLT applies the LT predicate on the "feed_author_email" field.

func FeedAuthorEmailLTE

func FeedAuthorEmailLTE(v string) predicate.Feed

FeedAuthorEmailLTE applies the LTE predicate on the "feed_author_email" field.

func FeedAuthorEmailNEQ

func FeedAuthorEmailNEQ(v string) predicate.Feed

FeedAuthorEmailNEQ applies the NEQ predicate on the "feed_author_email" field.

func FeedAuthorEmailNotIn

func FeedAuthorEmailNotIn(vs ...string) predicate.Feed

FeedAuthorEmailNotIn applies the NotIn predicate on the "feed_author_email" field.

func FeedAuthorEmailNotNil

func FeedAuthorEmailNotNil() predicate.Feed

FeedAuthorEmailNotNil applies the NotNil predicate on the "feed_author_email" field.

func FeedAuthorName

func FeedAuthorName(v string) predicate.Feed

FeedAuthorName applies equality check predicate on the "feed_author_name" field. It's identical to FeedAuthorNameEQ.

func FeedAuthorNameContains

func FeedAuthorNameContains(v string) predicate.Feed

FeedAuthorNameContains applies the Contains predicate on the "feed_author_name" field.

func FeedAuthorNameContainsFold

func FeedAuthorNameContainsFold(v string) predicate.Feed

FeedAuthorNameContainsFold applies the ContainsFold predicate on the "feed_author_name" field.

func FeedAuthorNameEQ

func FeedAuthorNameEQ(v string) predicate.Feed

FeedAuthorNameEQ applies the EQ predicate on the "feed_author_name" field.

func FeedAuthorNameEqualFold

func FeedAuthorNameEqualFold(v string) predicate.Feed

FeedAuthorNameEqualFold applies the EqualFold predicate on the "feed_author_name" field.

func FeedAuthorNameGT

func FeedAuthorNameGT(v string) predicate.Feed

FeedAuthorNameGT applies the GT predicate on the "feed_author_name" field.

func FeedAuthorNameGTE

func FeedAuthorNameGTE(v string) predicate.Feed

FeedAuthorNameGTE applies the GTE predicate on the "feed_author_name" field.

func FeedAuthorNameHasPrefix

func FeedAuthorNameHasPrefix(v string) predicate.Feed

FeedAuthorNameHasPrefix applies the HasPrefix predicate on the "feed_author_name" field.

func FeedAuthorNameHasSuffix

func FeedAuthorNameHasSuffix(v string) predicate.Feed

FeedAuthorNameHasSuffix applies the HasSuffix predicate on the "feed_author_name" field.

func FeedAuthorNameIn

func FeedAuthorNameIn(vs ...string) predicate.Feed

FeedAuthorNameIn applies the In predicate on the "feed_author_name" field.

func FeedAuthorNameIsNil

func FeedAuthorNameIsNil() predicate.Feed

FeedAuthorNameIsNil applies the IsNil predicate on the "feed_author_name" field.

func FeedAuthorNameLT

func FeedAuthorNameLT(v string) predicate.Feed

FeedAuthorNameLT applies the LT predicate on the "feed_author_name" field.

func FeedAuthorNameLTE

func FeedAuthorNameLTE(v string) predicate.Feed

FeedAuthorNameLTE applies the LTE predicate on the "feed_author_name" field.

func FeedAuthorNameNEQ

func FeedAuthorNameNEQ(v string) predicate.Feed

FeedAuthorNameNEQ applies the NEQ predicate on the "feed_author_name" field.

func FeedAuthorNameNotIn

func FeedAuthorNameNotIn(vs ...string) predicate.Feed

FeedAuthorNameNotIn applies the NotIn predicate on the "feed_author_name" field.

func FeedAuthorNameNotNil

func FeedAuthorNameNotNil() predicate.Feed

FeedAuthorNameNotNil applies the NotNil predicate on the "feed_author_name" field.

func FeedCategories

func FeedCategories(v string) predicate.Feed

FeedCategories applies equality check predicate on the "feed_categories" field. It's identical to FeedCategoriesEQ.

func FeedCategoriesContains

func FeedCategoriesContains(v string) predicate.Feed

FeedCategoriesContains applies the Contains predicate on the "feed_categories" field.

func FeedCategoriesContainsFold

func FeedCategoriesContainsFold(v string) predicate.Feed

FeedCategoriesContainsFold applies the ContainsFold predicate on the "feed_categories" field.

func FeedCategoriesEQ

func FeedCategoriesEQ(v string) predicate.Feed

FeedCategoriesEQ applies the EQ predicate on the "feed_categories" field.

func FeedCategoriesEqualFold

func FeedCategoriesEqualFold(v string) predicate.Feed

FeedCategoriesEqualFold applies the EqualFold predicate on the "feed_categories" field.

func FeedCategoriesGT

func FeedCategoriesGT(v string) predicate.Feed

FeedCategoriesGT applies the GT predicate on the "feed_categories" field.

func FeedCategoriesGTE

func FeedCategoriesGTE(v string) predicate.Feed

FeedCategoriesGTE applies the GTE predicate on the "feed_categories" field.

func FeedCategoriesHasPrefix

func FeedCategoriesHasPrefix(v string) predicate.Feed

FeedCategoriesHasPrefix applies the HasPrefix predicate on the "feed_categories" field.

func FeedCategoriesHasSuffix

func FeedCategoriesHasSuffix(v string) predicate.Feed

FeedCategoriesHasSuffix applies the HasSuffix predicate on the "feed_categories" field.

func FeedCategoriesIn

func FeedCategoriesIn(vs ...string) predicate.Feed

FeedCategoriesIn applies the In predicate on the "feed_categories" field.

func FeedCategoriesLT

func FeedCategoriesLT(v string) predicate.Feed

FeedCategoriesLT applies the LT predicate on the "feed_categories" field.

func FeedCategoriesLTE

func FeedCategoriesLTE(v string) predicate.Feed

FeedCategoriesLTE applies the LTE predicate on the "feed_categories" field.

func FeedCategoriesNEQ

func FeedCategoriesNEQ(v string) predicate.Feed

FeedCategoriesNEQ applies the NEQ predicate on the "feed_categories" field.

func FeedCategoriesNotIn

func FeedCategoriesNotIn(vs ...string) predicate.Feed

FeedCategoriesNotIn applies the NotIn predicate on the "feed_categories" field.

func FeedCopyright

func FeedCopyright(v string) predicate.Feed

FeedCopyright applies equality check predicate on the "feed_copyright" field. It's identical to FeedCopyrightEQ.

func FeedCopyrightContains

func FeedCopyrightContains(v string) predicate.Feed

FeedCopyrightContains applies the Contains predicate on the "feed_copyright" field.

func FeedCopyrightContainsFold

func FeedCopyrightContainsFold(v string) predicate.Feed

FeedCopyrightContainsFold applies the ContainsFold predicate on the "feed_copyright" field.

func FeedCopyrightEQ

func FeedCopyrightEQ(v string) predicate.Feed

FeedCopyrightEQ applies the EQ predicate on the "feed_copyright" field.

func FeedCopyrightEqualFold

func FeedCopyrightEqualFold(v string) predicate.Feed

FeedCopyrightEqualFold applies the EqualFold predicate on the "feed_copyright" field.

func FeedCopyrightGT

func FeedCopyrightGT(v string) predicate.Feed

FeedCopyrightGT applies the GT predicate on the "feed_copyright" field.

func FeedCopyrightGTE

func FeedCopyrightGTE(v string) predicate.Feed

FeedCopyrightGTE applies the GTE predicate on the "feed_copyright" field.

func FeedCopyrightHasPrefix

func FeedCopyrightHasPrefix(v string) predicate.Feed

FeedCopyrightHasPrefix applies the HasPrefix predicate on the "feed_copyright" field.

func FeedCopyrightHasSuffix

func FeedCopyrightHasSuffix(v string) predicate.Feed

FeedCopyrightHasSuffix applies the HasSuffix predicate on the "feed_copyright" field.

func FeedCopyrightIn

func FeedCopyrightIn(vs ...string) predicate.Feed

FeedCopyrightIn applies the In predicate on the "feed_copyright" field.

func FeedCopyrightLT

func FeedCopyrightLT(v string) predicate.Feed

FeedCopyrightLT applies the LT predicate on the "feed_copyright" field.

func FeedCopyrightLTE

func FeedCopyrightLTE(v string) predicate.Feed

FeedCopyrightLTE applies the LTE predicate on the "feed_copyright" field.

func FeedCopyrightNEQ

func FeedCopyrightNEQ(v string) predicate.Feed

FeedCopyrightNEQ applies the NEQ predicate on the "feed_copyright" field.

func FeedCopyrightNotIn

func FeedCopyrightNotIn(vs ...string) predicate.Feed

FeedCopyrightNotIn applies the NotIn predicate on the "feed_copyright" field.

func FeedDescription

func FeedDescription(v string) predicate.Feed

FeedDescription applies equality check predicate on the "feed_description" field. It's identical to FeedDescriptionEQ.

func FeedDescriptionContains

func FeedDescriptionContains(v string) predicate.Feed

FeedDescriptionContains applies the Contains predicate on the "feed_description" field.

func FeedDescriptionContainsFold

func FeedDescriptionContainsFold(v string) predicate.Feed

FeedDescriptionContainsFold applies the ContainsFold predicate on the "feed_description" field.

func FeedDescriptionEQ

func FeedDescriptionEQ(v string) predicate.Feed

FeedDescriptionEQ applies the EQ predicate on the "feed_description" field.

func FeedDescriptionEqualFold

func FeedDescriptionEqualFold(v string) predicate.Feed

FeedDescriptionEqualFold applies the EqualFold predicate on the "feed_description" field.

func FeedDescriptionGT

func FeedDescriptionGT(v string) predicate.Feed

FeedDescriptionGT applies the GT predicate on the "feed_description" field.

func FeedDescriptionGTE

func FeedDescriptionGTE(v string) predicate.Feed

FeedDescriptionGTE applies the GTE predicate on the "feed_description" field.

func FeedDescriptionHasPrefix

func FeedDescriptionHasPrefix(v string) predicate.Feed

FeedDescriptionHasPrefix applies the HasPrefix predicate on the "feed_description" field.

func FeedDescriptionHasSuffix

func FeedDescriptionHasSuffix(v string) predicate.Feed

FeedDescriptionHasSuffix applies the HasSuffix predicate on the "feed_description" field.

func FeedDescriptionIn

func FeedDescriptionIn(vs ...string) predicate.Feed

FeedDescriptionIn applies the In predicate on the "feed_description" field.

func FeedDescriptionLT

func FeedDescriptionLT(v string) predicate.Feed

FeedDescriptionLT applies the LT predicate on the "feed_description" field.

func FeedDescriptionLTE

func FeedDescriptionLTE(v string) predicate.Feed

FeedDescriptionLTE applies the LTE predicate on the "feed_description" field.

func FeedDescriptionNEQ

func FeedDescriptionNEQ(v string) predicate.Feed

FeedDescriptionNEQ applies the NEQ predicate on the "feed_description" field.

func FeedDescriptionNotIn

func FeedDescriptionNotIn(vs ...string) predicate.Feed

FeedDescriptionNotIn applies the NotIn predicate on the "feed_description" field.

func FeedFeedLink(v string) predicate.Feed

FeedFeedLink applies equality check predicate on the "feed_feed_link" field. It's identical to FeedFeedLinkEQ.

func FeedFeedLinkContains

func FeedFeedLinkContains(v string) predicate.Feed

FeedFeedLinkContains applies the Contains predicate on the "feed_feed_link" field.

func FeedFeedLinkContainsFold

func FeedFeedLinkContainsFold(v string) predicate.Feed

FeedFeedLinkContainsFold applies the ContainsFold predicate on the "feed_feed_link" field.

func FeedFeedLinkEQ

func FeedFeedLinkEQ(v string) predicate.Feed

FeedFeedLinkEQ applies the EQ predicate on the "feed_feed_link" field.

func FeedFeedLinkEqualFold

func FeedFeedLinkEqualFold(v string) predicate.Feed

FeedFeedLinkEqualFold applies the EqualFold predicate on the "feed_feed_link" field.

func FeedFeedLinkGT

func FeedFeedLinkGT(v string) predicate.Feed

FeedFeedLinkGT applies the GT predicate on the "feed_feed_link" field.

func FeedFeedLinkGTE

func FeedFeedLinkGTE(v string) predicate.Feed

FeedFeedLinkGTE applies the GTE predicate on the "feed_feed_link" field.

func FeedFeedLinkHasPrefix

func FeedFeedLinkHasPrefix(v string) predicate.Feed

FeedFeedLinkHasPrefix applies the HasPrefix predicate on the "feed_feed_link" field.

func FeedFeedLinkHasSuffix

func FeedFeedLinkHasSuffix(v string) predicate.Feed

FeedFeedLinkHasSuffix applies the HasSuffix predicate on the "feed_feed_link" field.

func FeedFeedLinkIn

func FeedFeedLinkIn(vs ...string) predicate.Feed

FeedFeedLinkIn applies the In predicate on the "feed_feed_link" field.

func FeedFeedLinkLT

func FeedFeedLinkLT(v string) predicate.Feed

FeedFeedLinkLT applies the LT predicate on the "feed_feed_link" field.

func FeedFeedLinkLTE

func FeedFeedLinkLTE(v string) predicate.Feed

FeedFeedLinkLTE applies the LTE predicate on the "feed_feed_link" field.

func FeedFeedLinkNEQ

func FeedFeedLinkNEQ(v string) predicate.Feed

FeedFeedLinkNEQ applies the NEQ predicate on the "feed_feed_link" field.

func FeedFeedLinkNotIn

func FeedFeedLinkNotIn(vs ...string) predicate.Feed

FeedFeedLinkNotIn applies the NotIn predicate on the "feed_feed_link" field.

func FeedGenerator

func FeedGenerator(v string) predicate.Feed

FeedGenerator applies equality check predicate on the "feed_generator" field. It's identical to FeedGeneratorEQ.

func FeedGeneratorContains

func FeedGeneratorContains(v string) predicate.Feed

FeedGeneratorContains applies the Contains predicate on the "feed_generator" field.

func FeedGeneratorContainsFold

func FeedGeneratorContainsFold(v string) predicate.Feed

FeedGeneratorContainsFold applies the ContainsFold predicate on the "feed_generator" field.

func FeedGeneratorEQ

func FeedGeneratorEQ(v string) predicate.Feed

FeedGeneratorEQ applies the EQ predicate on the "feed_generator" field.

func FeedGeneratorEqualFold

func FeedGeneratorEqualFold(v string) predicate.Feed

FeedGeneratorEqualFold applies the EqualFold predicate on the "feed_generator" field.

func FeedGeneratorGT

func FeedGeneratorGT(v string) predicate.Feed

FeedGeneratorGT applies the GT predicate on the "feed_generator" field.

func FeedGeneratorGTE

func FeedGeneratorGTE(v string) predicate.Feed

FeedGeneratorGTE applies the GTE predicate on the "feed_generator" field.

func FeedGeneratorHasPrefix

func FeedGeneratorHasPrefix(v string) predicate.Feed

FeedGeneratorHasPrefix applies the HasPrefix predicate on the "feed_generator" field.

func FeedGeneratorHasSuffix

func FeedGeneratorHasSuffix(v string) predicate.Feed

FeedGeneratorHasSuffix applies the HasSuffix predicate on the "feed_generator" field.

func FeedGeneratorIn

func FeedGeneratorIn(vs ...string) predicate.Feed

FeedGeneratorIn applies the In predicate on the "feed_generator" field.

func FeedGeneratorLT

func FeedGeneratorLT(v string) predicate.Feed

FeedGeneratorLT applies the LT predicate on the "feed_generator" field.

func FeedGeneratorLTE

func FeedGeneratorLTE(v string) predicate.Feed

FeedGeneratorLTE applies the LTE predicate on the "feed_generator" field.

func FeedGeneratorNEQ

func FeedGeneratorNEQ(v string) predicate.Feed

FeedGeneratorNEQ applies the NEQ predicate on the "feed_generator" field.

func FeedGeneratorNotIn

func FeedGeneratorNotIn(vs ...string) predicate.Feed

FeedGeneratorNotIn applies the NotIn predicate on the "feed_generator" field.

func FeedImageTitle

func FeedImageTitle(v string) predicate.Feed

FeedImageTitle applies equality check predicate on the "feed_image_title" field. It's identical to FeedImageTitleEQ.

func FeedImageTitleContains

func FeedImageTitleContains(v string) predicate.Feed

FeedImageTitleContains applies the Contains predicate on the "feed_image_title" field.

func FeedImageTitleContainsFold

func FeedImageTitleContainsFold(v string) predicate.Feed

FeedImageTitleContainsFold applies the ContainsFold predicate on the "feed_image_title" field.

func FeedImageTitleEQ

func FeedImageTitleEQ(v string) predicate.Feed

FeedImageTitleEQ applies the EQ predicate on the "feed_image_title" field.

func FeedImageTitleEqualFold

func FeedImageTitleEqualFold(v string) predicate.Feed

FeedImageTitleEqualFold applies the EqualFold predicate on the "feed_image_title" field.

func FeedImageTitleGT

func FeedImageTitleGT(v string) predicate.Feed

FeedImageTitleGT applies the GT predicate on the "feed_image_title" field.

func FeedImageTitleGTE

func FeedImageTitleGTE(v string) predicate.Feed

FeedImageTitleGTE applies the GTE predicate on the "feed_image_title" field.

func FeedImageTitleHasPrefix

func FeedImageTitleHasPrefix(v string) predicate.Feed

FeedImageTitleHasPrefix applies the HasPrefix predicate on the "feed_image_title" field.

func FeedImageTitleHasSuffix

func FeedImageTitleHasSuffix(v string) predicate.Feed

FeedImageTitleHasSuffix applies the HasSuffix predicate on the "feed_image_title" field.

func FeedImageTitleIn

func FeedImageTitleIn(vs ...string) predicate.Feed

FeedImageTitleIn applies the In predicate on the "feed_image_title" field.

func FeedImageTitleIsNil

func FeedImageTitleIsNil() predicate.Feed

FeedImageTitleIsNil applies the IsNil predicate on the "feed_image_title" field.

func FeedImageTitleLT

func FeedImageTitleLT(v string) predicate.Feed

FeedImageTitleLT applies the LT predicate on the "feed_image_title" field.

func FeedImageTitleLTE

func FeedImageTitleLTE(v string) predicate.Feed

FeedImageTitleLTE applies the LTE predicate on the "feed_image_title" field.

func FeedImageTitleNEQ

func FeedImageTitleNEQ(v string) predicate.Feed

FeedImageTitleNEQ applies the NEQ predicate on the "feed_image_title" field.

func FeedImageTitleNotIn

func FeedImageTitleNotIn(vs ...string) predicate.Feed

FeedImageTitleNotIn applies the NotIn predicate on the "feed_image_title" field.

func FeedImageTitleNotNil

func FeedImageTitleNotNil() predicate.Feed

FeedImageTitleNotNil applies the NotNil predicate on the "feed_image_title" field.

func FeedImageURL

func FeedImageURL(v string) predicate.Feed

FeedImageURL applies equality check predicate on the "feed_image_url" field. It's identical to FeedImageURLEQ.

func FeedImageURLContains

func FeedImageURLContains(v string) predicate.Feed

FeedImageURLContains applies the Contains predicate on the "feed_image_url" field.

func FeedImageURLContainsFold

func FeedImageURLContainsFold(v string) predicate.Feed

FeedImageURLContainsFold applies the ContainsFold predicate on the "feed_image_url" field.

func FeedImageURLEQ

func FeedImageURLEQ(v string) predicate.Feed

FeedImageURLEQ applies the EQ predicate on the "feed_image_url" field.

func FeedImageURLEqualFold

func FeedImageURLEqualFold(v string) predicate.Feed

FeedImageURLEqualFold applies the EqualFold predicate on the "feed_image_url" field.

func FeedImageURLGT

func FeedImageURLGT(v string) predicate.Feed

FeedImageURLGT applies the GT predicate on the "feed_image_url" field.

func FeedImageURLGTE

func FeedImageURLGTE(v string) predicate.Feed

FeedImageURLGTE applies the GTE predicate on the "feed_image_url" field.

func FeedImageURLHasPrefix

func FeedImageURLHasPrefix(v string) predicate.Feed

FeedImageURLHasPrefix applies the HasPrefix predicate on the "feed_image_url" field.

func FeedImageURLHasSuffix

func FeedImageURLHasSuffix(v string) predicate.Feed

FeedImageURLHasSuffix applies the HasSuffix predicate on the "feed_image_url" field.

func FeedImageURLIn

func FeedImageURLIn(vs ...string) predicate.Feed

FeedImageURLIn applies the In predicate on the "feed_image_url" field.

func FeedImageURLIsNil

func FeedImageURLIsNil() predicate.Feed

FeedImageURLIsNil applies the IsNil predicate on the "feed_image_url" field.

func FeedImageURLLT

func FeedImageURLLT(v string) predicate.Feed

FeedImageURLLT applies the LT predicate on the "feed_image_url" field.

func FeedImageURLLTE

func FeedImageURLLTE(v string) predicate.Feed

FeedImageURLLTE applies the LTE predicate on the "feed_image_url" field.

func FeedImageURLNEQ

func FeedImageURLNEQ(v string) predicate.Feed

FeedImageURLNEQ applies the NEQ predicate on the "feed_image_url" field.

func FeedImageURLNotIn

func FeedImageURLNotIn(vs ...string) predicate.Feed

FeedImageURLNotIn applies the NotIn predicate on the "feed_image_url" field.

func FeedImageURLNotNil

func FeedImageURLNotNil() predicate.Feed

FeedImageURLNotNil applies the NotNil predicate on the "feed_image_url" field.

func FeedLanguage

func FeedLanguage(v string) predicate.Feed

FeedLanguage applies equality check predicate on the "feed_language" field. It's identical to FeedLanguageEQ.

func FeedLanguageContains

func FeedLanguageContains(v string) predicate.Feed

FeedLanguageContains applies the Contains predicate on the "feed_language" field.

func FeedLanguageContainsFold

func FeedLanguageContainsFold(v string) predicate.Feed

FeedLanguageContainsFold applies the ContainsFold predicate on the "feed_language" field.

func FeedLanguageEQ

func FeedLanguageEQ(v string) predicate.Feed

FeedLanguageEQ applies the EQ predicate on the "feed_language" field.

func FeedLanguageEqualFold

func FeedLanguageEqualFold(v string) predicate.Feed

FeedLanguageEqualFold applies the EqualFold predicate on the "feed_language" field.

func FeedLanguageGT

func FeedLanguageGT(v string) predicate.Feed

FeedLanguageGT applies the GT predicate on the "feed_language" field.

func FeedLanguageGTE

func FeedLanguageGTE(v string) predicate.Feed

FeedLanguageGTE applies the GTE predicate on the "feed_language" field.

func FeedLanguageHasPrefix

func FeedLanguageHasPrefix(v string) predicate.Feed

FeedLanguageHasPrefix applies the HasPrefix predicate on the "feed_language" field.

func FeedLanguageHasSuffix

func FeedLanguageHasSuffix(v string) predicate.Feed

FeedLanguageHasSuffix applies the HasSuffix predicate on the "feed_language" field.

func FeedLanguageIn

func FeedLanguageIn(vs ...string) predicate.Feed

FeedLanguageIn applies the In predicate on the "feed_language" field.

func FeedLanguageLT

func FeedLanguageLT(v string) predicate.Feed

FeedLanguageLT applies the LT predicate on the "feed_language" field.

func FeedLanguageLTE

func FeedLanguageLTE(v string) predicate.Feed

FeedLanguageLTE applies the LTE predicate on the "feed_language" field.

func FeedLanguageNEQ

func FeedLanguageNEQ(v string) predicate.Feed

FeedLanguageNEQ applies the NEQ predicate on the "feed_language" field.

func FeedLanguageNotIn

func FeedLanguageNotIn(vs ...string) predicate.Feed

FeedLanguageNotIn applies the NotIn predicate on the "feed_language" field.

func FeedLink(v string) predicate.Feed

FeedLink applies equality check predicate on the "feed_link" field. It's identical to FeedLinkEQ.

func FeedLinkContains

func FeedLinkContains(v string) predicate.Feed

FeedLinkContains applies the Contains predicate on the "feed_link" field.

func FeedLinkContainsFold

func FeedLinkContainsFold(v string) predicate.Feed

FeedLinkContainsFold applies the ContainsFold predicate on the "feed_link" field.

func FeedLinkEQ

func FeedLinkEQ(v string) predicate.Feed

FeedLinkEQ applies the EQ predicate on the "feed_link" field.

func FeedLinkEqualFold

func FeedLinkEqualFold(v string) predicate.Feed

FeedLinkEqualFold applies the EqualFold predicate on the "feed_link" field.

func FeedLinkGT

func FeedLinkGT(v string) predicate.Feed

FeedLinkGT applies the GT predicate on the "feed_link" field.

func FeedLinkGTE

func FeedLinkGTE(v string) predicate.Feed

FeedLinkGTE applies the GTE predicate on the "feed_link" field.

func FeedLinkHasPrefix

func FeedLinkHasPrefix(v string) predicate.Feed

FeedLinkHasPrefix applies the HasPrefix predicate on the "feed_link" field.

func FeedLinkHasSuffix

func FeedLinkHasSuffix(v string) predicate.Feed

FeedLinkHasSuffix applies the HasSuffix predicate on the "feed_link" field.

func FeedLinkIn

func FeedLinkIn(vs ...string) predicate.Feed

FeedLinkIn applies the In predicate on the "feed_link" field.

func FeedLinkLT

func FeedLinkLT(v string) predicate.Feed

FeedLinkLT applies the LT predicate on the "feed_link" field.

func FeedLinkLTE

func FeedLinkLTE(v string) predicate.Feed

FeedLinkLTE applies the LTE predicate on the "feed_link" field.

func FeedLinkNEQ

func FeedLinkNEQ(v string) predicate.Feed

FeedLinkNEQ applies the NEQ predicate on the "feed_link" field.

func FeedLinkNotIn

func FeedLinkNotIn(vs ...string) predicate.Feed

FeedLinkNotIn applies the NotIn predicate on the "feed_link" field.

func FeedPublished

func FeedPublished(v time.Time) predicate.Feed

FeedPublished applies equality check predicate on the "feed_published" field. It's identical to FeedPublishedEQ.

func FeedPublishedEQ

func FeedPublishedEQ(v time.Time) predicate.Feed

FeedPublishedEQ applies the EQ predicate on the "feed_published" field.

func FeedPublishedGT

func FeedPublishedGT(v time.Time) predicate.Feed

FeedPublishedGT applies the GT predicate on the "feed_published" field.

func FeedPublishedGTE

func FeedPublishedGTE(v time.Time) predicate.Feed

FeedPublishedGTE applies the GTE predicate on the "feed_published" field.

func FeedPublishedIn

func FeedPublishedIn(vs ...time.Time) predicate.Feed

FeedPublishedIn applies the In predicate on the "feed_published" field.

func FeedPublishedLT

func FeedPublishedLT(v time.Time) predicate.Feed

FeedPublishedLT applies the LT predicate on the "feed_published" field.

func FeedPublishedLTE

func FeedPublishedLTE(v time.Time) predicate.Feed

FeedPublishedLTE applies the LTE predicate on the "feed_published" field.

func FeedPublishedNEQ

func FeedPublishedNEQ(v time.Time) predicate.Feed

FeedPublishedNEQ applies the NEQ predicate on the "feed_published" field.

func FeedPublishedNotIn

func FeedPublishedNotIn(vs ...time.Time) predicate.Feed

FeedPublishedNotIn applies the NotIn predicate on the "feed_published" field.

func FeedTitle

func FeedTitle(v string) predicate.Feed

FeedTitle applies equality check predicate on the "feed_title" field. It's identical to FeedTitleEQ.

func FeedTitleContains

func FeedTitleContains(v string) predicate.Feed

FeedTitleContains applies the Contains predicate on the "feed_title" field.

func FeedTitleContainsFold

func FeedTitleContainsFold(v string) predicate.Feed

FeedTitleContainsFold applies the ContainsFold predicate on the "feed_title" field.

func FeedTitleEQ

func FeedTitleEQ(v string) predicate.Feed

FeedTitleEQ applies the EQ predicate on the "feed_title" field.

func FeedTitleEqualFold

func FeedTitleEqualFold(v string) predicate.Feed

FeedTitleEqualFold applies the EqualFold predicate on the "feed_title" field.

func FeedTitleGT

func FeedTitleGT(v string) predicate.Feed

FeedTitleGT applies the GT predicate on the "feed_title" field.

func FeedTitleGTE

func FeedTitleGTE(v string) predicate.Feed

FeedTitleGTE applies the GTE predicate on the "feed_title" field.

func FeedTitleHasPrefix

func FeedTitleHasPrefix(v string) predicate.Feed

FeedTitleHasPrefix applies the HasPrefix predicate on the "feed_title" field.

func FeedTitleHasSuffix

func FeedTitleHasSuffix(v string) predicate.Feed

FeedTitleHasSuffix applies the HasSuffix predicate on the "feed_title" field.

func FeedTitleIn

func FeedTitleIn(vs ...string) predicate.Feed

FeedTitleIn applies the In predicate on the "feed_title" field.

func FeedTitleLT

func FeedTitleLT(v string) predicate.Feed

FeedTitleLT applies the LT predicate on the "feed_title" field.

func FeedTitleLTE

func FeedTitleLTE(v string) predicate.Feed

FeedTitleLTE applies the LTE predicate on the "feed_title" field.

func FeedTitleNEQ

func FeedTitleNEQ(v string) predicate.Feed

FeedTitleNEQ applies the NEQ predicate on the "feed_title" field.

func FeedTitleNotIn

func FeedTitleNotIn(vs ...string) predicate.Feed

FeedTitleNotIn applies the NotIn predicate on the "feed_title" field.

func FeedUpdated

func FeedUpdated(v time.Time) predicate.Feed

FeedUpdated applies equality check predicate on the "feed_updated" field. It's identical to FeedUpdatedEQ.

func FeedUpdatedEQ

func FeedUpdatedEQ(v time.Time) predicate.Feed

FeedUpdatedEQ applies the EQ predicate on the "feed_updated" field.

func FeedUpdatedGT

func FeedUpdatedGT(v time.Time) predicate.Feed

FeedUpdatedGT applies the GT predicate on the "feed_updated" field.

func FeedUpdatedGTE

func FeedUpdatedGTE(v time.Time) predicate.Feed

FeedUpdatedGTE applies the GTE predicate on the "feed_updated" field.

func FeedUpdatedIn

func FeedUpdatedIn(vs ...time.Time) predicate.Feed

FeedUpdatedIn applies the In predicate on the "feed_updated" field.

func FeedUpdatedLT

func FeedUpdatedLT(v time.Time) predicate.Feed

FeedUpdatedLT applies the LT predicate on the "feed_updated" field.

func FeedUpdatedLTE

func FeedUpdatedLTE(v time.Time) predicate.Feed

FeedUpdatedLTE applies the LTE predicate on the "feed_updated" field.

func FeedUpdatedNEQ

func FeedUpdatedNEQ(v time.Time) predicate.Feed

FeedUpdatedNEQ applies the NEQ predicate on the "feed_updated" field.

func FeedUpdatedNotIn

func FeedUpdatedNotIn(vs ...time.Time) predicate.Feed

FeedUpdatedNotIn applies the NotIn predicate on the "feed_updated" field.

func HasItems

func HasItems() predicate.Feed

HasItems applies the HasEdge predicate on the "items" edge.

func HasItemsWith

func HasItemsWith(preds ...predicate.Item) predicate.Feed

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

func HasSubscribedUsers

func HasSubscribedUsers() predicate.Feed

HasSubscribedUsers applies the HasEdge predicate on the "subscribed_users" edge.

func HasSubscribedUsersWith

func HasSubscribedUsersWith(preds ...predicate.User) predicate.Feed

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

func HasSubscriptions

func HasSubscriptions() predicate.Feed

HasSubscriptions applies the HasEdge predicate on the "subscriptions" edge.

func HasSubscriptionsWith

func HasSubscriptionsWith(preds ...predicate.Subscription) predicate.Feed

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

func ID

func ID(id uuid.UUID) predicate.Feed

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.Feed

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.Feed

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.Feed

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.Feed

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.Feed

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.Feed

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.Feed

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.Feed

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Feed) predicate.Feed

Or groups predicates with the OR operator between them.

func Password

func Password(v string) predicate.Feed

Password applies equality check predicate on the "password" field. It's identical to PasswordEQ.

func PasswordContains

func PasswordContains(v string) predicate.Feed

PasswordContains applies the Contains predicate on the "password" field.

func PasswordContainsFold

func PasswordContainsFold(v string) predicate.Feed

PasswordContainsFold applies the ContainsFold predicate on the "password" field.

func PasswordEQ

func PasswordEQ(v string) predicate.Feed

PasswordEQ applies the EQ predicate on the "password" field.

func PasswordEqualFold

func PasswordEqualFold(v string) predicate.Feed

PasswordEqualFold applies the EqualFold predicate on the "password" field.

func PasswordGT

func PasswordGT(v string) predicate.Feed

PasswordGT applies the GT predicate on the "password" field.

func PasswordGTE

func PasswordGTE(v string) predicate.Feed

PasswordGTE applies the GTE predicate on the "password" field.

func PasswordHasPrefix

func PasswordHasPrefix(v string) predicate.Feed

PasswordHasPrefix applies the HasPrefix predicate on the "password" field.

func PasswordHasSuffix

func PasswordHasSuffix(v string) predicate.Feed

PasswordHasSuffix applies the HasSuffix predicate on the "password" field.

func PasswordIn

func PasswordIn(vs ...string) predicate.Feed

PasswordIn applies the In predicate on the "password" field.

func PasswordLT

func PasswordLT(v string) predicate.Feed

PasswordLT applies the LT predicate on the "password" field.

func PasswordLTE

func PasswordLTE(v string) predicate.Feed

PasswordLTE applies the LTE predicate on the "password" field.

func PasswordNEQ

func PasswordNEQ(v string) predicate.Feed

PasswordNEQ applies the NEQ predicate on the "password" field.

func PasswordNotIn

func PasswordNotIn(vs ...string) predicate.Feed

PasswordNotIn applies the NotIn predicate on the "password" field.

func URL

func URL(v string) predicate.Feed

URL applies equality check predicate on the "url" field. It's identical to URLEQ.

func URLContains

func URLContains(v string) predicate.Feed

URLContains applies the Contains predicate on the "url" field.

func URLContainsFold

func URLContainsFold(v string) predicate.Feed

URLContainsFold applies the ContainsFold predicate on the "url" field.

func URLEQ

func URLEQ(v string) predicate.Feed

URLEQ applies the EQ predicate on the "url" field.

func URLEqualFold

func URLEqualFold(v string) predicate.Feed

URLEqualFold applies the EqualFold predicate on the "url" field.

func URLGT

func URLGT(v string) predicate.Feed

URLGT applies the GT predicate on the "url" field.

func URLGTE

func URLGTE(v string) predicate.Feed

URLGTE applies the GTE predicate on the "url" field.

func URLHasPrefix

func URLHasPrefix(v string) predicate.Feed

URLHasPrefix applies the HasPrefix predicate on the "url" field.

func URLHasSuffix

func URLHasSuffix(v string) predicate.Feed

URLHasSuffix applies the HasSuffix predicate on the "url" field.

func URLIn

func URLIn(vs ...string) predicate.Feed

URLIn applies the In predicate on the "url" field.

func URLLT

func URLLT(v string) predicate.Feed

URLLT applies the LT predicate on the "url" field.

func URLLTE

func URLLTE(v string) predicate.Feed

URLLTE applies the LTE predicate on the "url" field.

func URLNEQ

func URLNEQ(v string) predicate.Feed

URLNEQ applies the NEQ predicate on the "url" field.

func URLNotIn

func URLNotIn(vs ...string) predicate.Feed

URLNotIn applies the NotIn predicate on the "url" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Feed

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Feed

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Feed

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Feed

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Feed

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Feed

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Feed

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

func UpdatedAtNotIn

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

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

func Username

func Username(v string) predicate.Feed

Username applies equality check predicate on the "username" field. It's identical to UsernameEQ.

func UsernameContains

func UsernameContains(v string) predicate.Feed

UsernameContains applies the Contains predicate on the "username" field.

func UsernameContainsFold

func UsernameContainsFold(v string) predicate.Feed

UsernameContainsFold applies the ContainsFold predicate on the "username" field.

func UsernameEQ

func UsernameEQ(v string) predicate.Feed

UsernameEQ applies the EQ predicate on the "username" field.

func UsernameEqualFold

func UsernameEqualFold(v string) predicate.Feed

UsernameEqualFold applies the EqualFold predicate on the "username" field.

func UsernameGT

func UsernameGT(v string) predicate.Feed

UsernameGT applies the GT predicate on the "username" field.

func UsernameGTE

func UsernameGTE(v string) predicate.Feed

UsernameGTE applies the GTE predicate on the "username" field.

func UsernameHasPrefix

func UsernameHasPrefix(v string) predicate.Feed

UsernameHasPrefix applies the HasPrefix predicate on the "username" field.

func UsernameHasSuffix

func UsernameHasSuffix(v string) predicate.Feed

UsernameHasSuffix applies the HasSuffix predicate on the "username" field.

func UsernameIn

func UsernameIn(vs ...string) predicate.Feed

UsernameIn applies the In predicate on the "username" field.

func UsernameLT

func UsernameLT(v string) predicate.Feed

UsernameLT applies the LT predicate on the "username" field.

func UsernameLTE

func UsernameLTE(v string) predicate.Feed

UsernameLTE applies the LTE predicate on the "username" field.

func UsernameNEQ

func UsernameNEQ(v string) predicate.Feed

UsernameNEQ applies the NEQ predicate on the "username" field.

func UsernameNotIn

func UsernameNotIn(vs ...string) predicate.Feed

UsernameNotIn applies the NotIn predicate on the "username" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

This section is empty.

Jump to

Keyboard shortcuts

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