item

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 item type in the database.
	Label = "item"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldItemGUID holds the string denoting the item_guid field in the database.
	FieldItemGUID = "item_guid"
	// FieldItemTitle holds the string denoting the item_title field in the database.
	FieldItemTitle = "item_title"
	// FieldItemDescription holds the string denoting the item_description field in the database.
	FieldItemDescription = "item_description"
	// FieldItemContent holds the string denoting the item_content field in the database.
	FieldItemContent = "item_content"
	// FieldItemLink holds the string denoting the item_link field in the database.
	FieldItemLink = "item_link"
	// FieldItemUpdated holds the string denoting the item_updated field in the database.
	FieldItemUpdated = "item_updated"
	// FieldItemPublished holds the string denoting the item_published field in the database.
	FieldItemPublished = "item_published"
	// FieldItemAuthorName holds the string denoting the item_author_name field in the database.
	FieldItemAuthorName = "item_author_name"
	// FieldItemAuthorEmail holds the string denoting the item_author_email field in the database.
	FieldItemAuthorEmail = "item_author_email"
	// FieldItemImageTitle holds the string denoting the item_image_title field in the database.
	FieldItemImageTitle = "item_image_title"
	// FieldItemImageURL holds the string denoting the item_image_url field in the database.
	FieldItemImageURL = "item_image_url"
	// FieldItemCategories holds the string denoting the item_categories field in the database.
	FieldItemCategories = "item_categories"
	// FieldItemEnclosures holds the string denoting the item_enclosures field in the database.
	FieldItemEnclosures = "item_enclosures"
	// FieldCrawlerTitle holds the string denoting the crawler_title field in the database.
	FieldCrawlerTitle = "crawler_title"
	// FieldCrawlerAuthor holds the string denoting the crawler_author field in the database.
	FieldCrawlerAuthor = "crawler_author"
	// FieldCrawlerExcerpt holds the string denoting the crawler_excerpt field in the database.
	FieldCrawlerExcerpt = "crawler_excerpt"
	// FieldCrawlerSiteName holds the string denoting the crawler_site_name field in the database.
	FieldCrawlerSiteName = "crawler_site_name"
	// FieldCrawlerImage holds the string denoting the crawler_image field in the database.
	FieldCrawlerImage = "crawler_image"
	// FieldCrawlerContentHTML holds the string denoting the crawler_content_html field in the database.
	FieldCrawlerContentHTML = "crawler_content_html"
	// FieldCrawlerContentText holds the string denoting the crawler_content_text field in the database.
	FieldCrawlerContentText = "crawler_content_text"
	// 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"
	// EdgeFeed holds the string denoting the feed edge name in mutations.
	EdgeFeed = "feed"
	// EdgeReadByUsers holds the string denoting the read_by_users edge name in mutations.
	EdgeReadByUsers = "read_by_users"
	// EdgeReads holds the string denoting the reads edge name in mutations.
	EdgeReads = "reads"
	// Table holds the table name of the item in the database.
	Table = "items"
	// FeedTable is the table that holds the feed relation/edge.
	FeedTable = "items"
	// 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_items"
	// ReadByUsersTable is the table that holds the read_by_users relation/edge. The primary key declared below.
	ReadByUsersTable = "reads"
	// ReadByUsersInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	ReadByUsersInverseTable = "users"
	// ReadsTable is the table that holds the reads relation/edge.
	ReadsTable = "reads"
	// ReadsInverseTable is the table name for the Read entity.
	// It exists in this package in order to avoid circular dependency with the "read" package.
	ReadsInverseTable = "reads"
	// ReadsColumn is the table column denoting the reads relation/edge.
	ReadsColumn = "item_id"
)

Variables

View Source
var (
	// ItemLinkValidator is a validator for the "item_link" field. It is called by the builders before save.
	ItemLinkValidator func(string) error
	// 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 item fields.

View Source
var ForeignKeys = []string{
	"feed_items",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "items" table and are not defined as standalone fields in the schema.

View Source
var (
	// ReadByUsersPrimaryKey and ReadByUsersColumn2 are the table columns denoting the
	// primary key for the read_by_users relation (M2M).
	ReadByUsersPrimaryKey = []string{"user_id", "item_id"}
)

Functions

func And

func And(predicates ...predicate.Item) predicate.Item

And groups predicates with the AND operator between them.

func CrawlerAuthor

func CrawlerAuthor(v string) predicate.Item

CrawlerAuthor applies equality check predicate on the "crawler_author" field. It's identical to CrawlerAuthorEQ.

func CrawlerAuthorContains

func CrawlerAuthorContains(v string) predicate.Item

CrawlerAuthorContains applies the Contains predicate on the "crawler_author" field.

func CrawlerAuthorContainsFold

func CrawlerAuthorContainsFold(v string) predicate.Item

CrawlerAuthorContainsFold applies the ContainsFold predicate on the "crawler_author" field.

func CrawlerAuthorEQ

func CrawlerAuthorEQ(v string) predicate.Item

CrawlerAuthorEQ applies the EQ predicate on the "crawler_author" field.

func CrawlerAuthorEqualFold

func CrawlerAuthorEqualFold(v string) predicate.Item

CrawlerAuthorEqualFold applies the EqualFold predicate on the "crawler_author" field.

func CrawlerAuthorGT

func CrawlerAuthorGT(v string) predicate.Item

CrawlerAuthorGT applies the GT predicate on the "crawler_author" field.

func CrawlerAuthorGTE

func CrawlerAuthorGTE(v string) predicate.Item

CrawlerAuthorGTE applies the GTE predicate on the "crawler_author" field.

func CrawlerAuthorHasPrefix

func CrawlerAuthorHasPrefix(v string) predicate.Item

CrawlerAuthorHasPrefix applies the HasPrefix predicate on the "crawler_author" field.

func CrawlerAuthorHasSuffix

func CrawlerAuthorHasSuffix(v string) predicate.Item

CrawlerAuthorHasSuffix applies the HasSuffix predicate on the "crawler_author" field.

func CrawlerAuthorIn

func CrawlerAuthorIn(vs ...string) predicate.Item

CrawlerAuthorIn applies the In predicate on the "crawler_author" field.

func CrawlerAuthorIsNil

func CrawlerAuthorIsNil() predicate.Item

CrawlerAuthorIsNil applies the IsNil predicate on the "crawler_author" field.

func CrawlerAuthorLT

func CrawlerAuthorLT(v string) predicate.Item

CrawlerAuthorLT applies the LT predicate on the "crawler_author" field.

func CrawlerAuthorLTE

func CrawlerAuthorLTE(v string) predicate.Item

CrawlerAuthorLTE applies the LTE predicate on the "crawler_author" field.

func CrawlerAuthorNEQ

func CrawlerAuthorNEQ(v string) predicate.Item

CrawlerAuthorNEQ applies the NEQ predicate on the "crawler_author" field.

func CrawlerAuthorNotIn

func CrawlerAuthorNotIn(vs ...string) predicate.Item

CrawlerAuthorNotIn applies the NotIn predicate on the "crawler_author" field.

func CrawlerAuthorNotNil

func CrawlerAuthorNotNil() predicate.Item

CrawlerAuthorNotNil applies the NotNil predicate on the "crawler_author" field.

func CrawlerContentHTML

func CrawlerContentHTML(v string) predicate.Item

CrawlerContentHTML applies equality check predicate on the "crawler_content_html" field. It's identical to CrawlerContentHTMLEQ.

func CrawlerContentHTMLContains

func CrawlerContentHTMLContains(v string) predicate.Item

CrawlerContentHTMLContains applies the Contains predicate on the "crawler_content_html" field.

func CrawlerContentHTMLContainsFold

func CrawlerContentHTMLContainsFold(v string) predicate.Item

CrawlerContentHTMLContainsFold applies the ContainsFold predicate on the "crawler_content_html" field.

func CrawlerContentHTMLEQ

func CrawlerContentHTMLEQ(v string) predicate.Item

CrawlerContentHTMLEQ applies the EQ predicate on the "crawler_content_html" field.

func CrawlerContentHTMLEqualFold

func CrawlerContentHTMLEqualFold(v string) predicate.Item

CrawlerContentHTMLEqualFold applies the EqualFold predicate on the "crawler_content_html" field.

func CrawlerContentHTMLGT

func CrawlerContentHTMLGT(v string) predicate.Item

CrawlerContentHTMLGT applies the GT predicate on the "crawler_content_html" field.

func CrawlerContentHTMLGTE

func CrawlerContentHTMLGTE(v string) predicate.Item

CrawlerContentHTMLGTE applies the GTE predicate on the "crawler_content_html" field.

func CrawlerContentHTMLHasPrefix

func CrawlerContentHTMLHasPrefix(v string) predicate.Item

CrawlerContentHTMLHasPrefix applies the HasPrefix predicate on the "crawler_content_html" field.

func CrawlerContentHTMLHasSuffix

func CrawlerContentHTMLHasSuffix(v string) predicate.Item

CrawlerContentHTMLHasSuffix applies the HasSuffix predicate on the "crawler_content_html" field.

func CrawlerContentHTMLIn

func CrawlerContentHTMLIn(vs ...string) predicate.Item

CrawlerContentHTMLIn applies the In predicate on the "crawler_content_html" field.

func CrawlerContentHTMLIsNil

func CrawlerContentHTMLIsNil() predicate.Item

CrawlerContentHTMLIsNil applies the IsNil predicate on the "crawler_content_html" field.

func CrawlerContentHTMLLT

func CrawlerContentHTMLLT(v string) predicate.Item

CrawlerContentHTMLLT applies the LT predicate on the "crawler_content_html" field.

func CrawlerContentHTMLLTE

func CrawlerContentHTMLLTE(v string) predicate.Item

CrawlerContentHTMLLTE applies the LTE predicate on the "crawler_content_html" field.

func CrawlerContentHTMLNEQ

func CrawlerContentHTMLNEQ(v string) predicate.Item

CrawlerContentHTMLNEQ applies the NEQ predicate on the "crawler_content_html" field.

func CrawlerContentHTMLNotIn

func CrawlerContentHTMLNotIn(vs ...string) predicate.Item

CrawlerContentHTMLNotIn applies the NotIn predicate on the "crawler_content_html" field.

func CrawlerContentHTMLNotNil

func CrawlerContentHTMLNotNil() predicate.Item

CrawlerContentHTMLNotNil applies the NotNil predicate on the "crawler_content_html" field.

func CrawlerContentText

func CrawlerContentText(v string) predicate.Item

CrawlerContentText applies equality check predicate on the "crawler_content_text" field. It's identical to CrawlerContentTextEQ.

func CrawlerContentTextContains

func CrawlerContentTextContains(v string) predicate.Item

CrawlerContentTextContains applies the Contains predicate on the "crawler_content_text" field.

func CrawlerContentTextContainsFold

func CrawlerContentTextContainsFold(v string) predicate.Item

CrawlerContentTextContainsFold applies the ContainsFold predicate on the "crawler_content_text" field.

func CrawlerContentTextEQ

func CrawlerContentTextEQ(v string) predicate.Item

CrawlerContentTextEQ applies the EQ predicate on the "crawler_content_text" field.

func CrawlerContentTextEqualFold

func CrawlerContentTextEqualFold(v string) predicate.Item

CrawlerContentTextEqualFold applies the EqualFold predicate on the "crawler_content_text" field.

func CrawlerContentTextGT

func CrawlerContentTextGT(v string) predicate.Item

CrawlerContentTextGT applies the GT predicate on the "crawler_content_text" field.

func CrawlerContentTextGTE

func CrawlerContentTextGTE(v string) predicate.Item

CrawlerContentTextGTE applies the GTE predicate on the "crawler_content_text" field.

func CrawlerContentTextHasPrefix

func CrawlerContentTextHasPrefix(v string) predicate.Item

CrawlerContentTextHasPrefix applies the HasPrefix predicate on the "crawler_content_text" field.

func CrawlerContentTextHasSuffix

func CrawlerContentTextHasSuffix(v string) predicate.Item

CrawlerContentTextHasSuffix applies the HasSuffix predicate on the "crawler_content_text" field.

func CrawlerContentTextIn

func CrawlerContentTextIn(vs ...string) predicate.Item

CrawlerContentTextIn applies the In predicate on the "crawler_content_text" field.

func CrawlerContentTextIsNil

func CrawlerContentTextIsNil() predicate.Item

CrawlerContentTextIsNil applies the IsNil predicate on the "crawler_content_text" field.

func CrawlerContentTextLT

func CrawlerContentTextLT(v string) predicate.Item

CrawlerContentTextLT applies the LT predicate on the "crawler_content_text" field.

func CrawlerContentTextLTE

func CrawlerContentTextLTE(v string) predicate.Item

CrawlerContentTextLTE applies the LTE predicate on the "crawler_content_text" field.

func CrawlerContentTextNEQ

func CrawlerContentTextNEQ(v string) predicate.Item

CrawlerContentTextNEQ applies the NEQ predicate on the "crawler_content_text" field.

func CrawlerContentTextNotIn

func CrawlerContentTextNotIn(vs ...string) predicate.Item

CrawlerContentTextNotIn applies the NotIn predicate on the "crawler_content_text" field.

func CrawlerContentTextNotNil

func CrawlerContentTextNotNil() predicate.Item

CrawlerContentTextNotNil applies the NotNil predicate on the "crawler_content_text" field.

func CrawlerExcerpt

func CrawlerExcerpt(v string) predicate.Item

CrawlerExcerpt applies equality check predicate on the "crawler_excerpt" field. It's identical to CrawlerExcerptEQ.

func CrawlerExcerptContains

func CrawlerExcerptContains(v string) predicate.Item

CrawlerExcerptContains applies the Contains predicate on the "crawler_excerpt" field.

func CrawlerExcerptContainsFold

func CrawlerExcerptContainsFold(v string) predicate.Item

CrawlerExcerptContainsFold applies the ContainsFold predicate on the "crawler_excerpt" field.

func CrawlerExcerptEQ

func CrawlerExcerptEQ(v string) predicate.Item

CrawlerExcerptEQ applies the EQ predicate on the "crawler_excerpt" field.

func CrawlerExcerptEqualFold

func CrawlerExcerptEqualFold(v string) predicate.Item

CrawlerExcerptEqualFold applies the EqualFold predicate on the "crawler_excerpt" field.

func CrawlerExcerptGT

func CrawlerExcerptGT(v string) predicate.Item

CrawlerExcerptGT applies the GT predicate on the "crawler_excerpt" field.

func CrawlerExcerptGTE

func CrawlerExcerptGTE(v string) predicate.Item

CrawlerExcerptGTE applies the GTE predicate on the "crawler_excerpt" field.

func CrawlerExcerptHasPrefix

func CrawlerExcerptHasPrefix(v string) predicate.Item

CrawlerExcerptHasPrefix applies the HasPrefix predicate on the "crawler_excerpt" field.

func CrawlerExcerptHasSuffix

func CrawlerExcerptHasSuffix(v string) predicate.Item

CrawlerExcerptHasSuffix applies the HasSuffix predicate on the "crawler_excerpt" field.

func CrawlerExcerptIn

func CrawlerExcerptIn(vs ...string) predicate.Item

CrawlerExcerptIn applies the In predicate on the "crawler_excerpt" field.

func CrawlerExcerptIsNil

func CrawlerExcerptIsNil() predicate.Item

CrawlerExcerptIsNil applies the IsNil predicate on the "crawler_excerpt" field.

func CrawlerExcerptLT

func CrawlerExcerptLT(v string) predicate.Item

CrawlerExcerptLT applies the LT predicate on the "crawler_excerpt" field.

func CrawlerExcerptLTE

func CrawlerExcerptLTE(v string) predicate.Item

CrawlerExcerptLTE applies the LTE predicate on the "crawler_excerpt" field.

func CrawlerExcerptNEQ

func CrawlerExcerptNEQ(v string) predicate.Item

CrawlerExcerptNEQ applies the NEQ predicate on the "crawler_excerpt" field.

func CrawlerExcerptNotIn

func CrawlerExcerptNotIn(vs ...string) predicate.Item

CrawlerExcerptNotIn applies the NotIn predicate on the "crawler_excerpt" field.

func CrawlerExcerptNotNil

func CrawlerExcerptNotNil() predicate.Item

CrawlerExcerptNotNil applies the NotNil predicate on the "crawler_excerpt" field.

func CrawlerImage

func CrawlerImage(v string) predicate.Item

CrawlerImage applies equality check predicate on the "crawler_image" field. It's identical to CrawlerImageEQ.

func CrawlerImageContains

func CrawlerImageContains(v string) predicate.Item

CrawlerImageContains applies the Contains predicate on the "crawler_image" field.

func CrawlerImageContainsFold

func CrawlerImageContainsFold(v string) predicate.Item

CrawlerImageContainsFold applies the ContainsFold predicate on the "crawler_image" field.

func CrawlerImageEQ

func CrawlerImageEQ(v string) predicate.Item

CrawlerImageEQ applies the EQ predicate on the "crawler_image" field.

func CrawlerImageEqualFold

func CrawlerImageEqualFold(v string) predicate.Item

CrawlerImageEqualFold applies the EqualFold predicate on the "crawler_image" field.

func CrawlerImageGT

func CrawlerImageGT(v string) predicate.Item

CrawlerImageGT applies the GT predicate on the "crawler_image" field.

func CrawlerImageGTE

func CrawlerImageGTE(v string) predicate.Item

CrawlerImageGTE applies the GTE predicate on the "crawler_image" field.

func CrawlerImageHasPrefix

func CrawlerImageHasPrefix(v string) predicate.Item

CrawlerImageHasPrefix applies the HasPrefix predicate on the "crawler_image" field.

func CrawlerImageHasSuffix

func CrawlerImageHasSuffix(v string) predicate.Item

CrawlerImageHasSuffix applies the HasSuffix predicate on the "crawler_image" field.

func CrawlerImageIn

func CrawlerImageIn(vs ...string) predicate.Item

CrawlerImageIn applies the In predicate on the "crawler_image" field.

func CrawlerImageIsNil

func CrawlerImageIsNil() predicate.Item

CrawlerImageIsNil applies the IsNil predicate on the "crawler_image" field.

func CrawlerImageLT

func CrawlerImageLT(v string) predicate.Item

CrawlerImageLT applies the LT predicate on the "crawler_image" field.

func CrawlerImageLTE

func CrawlerImageLTE(v string) predicate.Item

CrawlerImageLTE applies the LTE predicate on the "crawler_image" field.

func CrawlerImageNEQ

func CrawlerImageNEQ(v string) predicate.Item

CrawlerImageNEQ applies the NEQ predicate on the "crawler_image" field.

func CrawlerImageNotIn

func CrawlerImageNotIn(vs ...string) predicate.Item

CrawlerImageNotIn applies the NotIn predicate on the "crawler_image" field.

func CrawlerImageNotNil

func CrawlerImageNotNil() predicate.Item

CrawlerImageNotNil applies the NotNil predicate on the "crawler_image" field.

func CrawlerSiteName

func CrawlerSiteName(v string) predicate.Item

CrawlerSiteName applies equality check predicate on the "crawler_site_name" field. It's identical to CrawlerSiteNameEQ.

func CrawlerSiteNameContains

func CrawlerSiteNameContains(v string) predicate.Item

CrawlerSiteNameContains applies the Contains predicate on the "crawler_site_name" field.

func CrawlerSiteNameContainsFold

func CrawlerSiteNameContainsFold(v string) predicate.Item

CrawlerSiteNameContainsFold applies the ContainsFold predicate on the "crawler_site_name" field.

func CrawlerSiteNameEQ

func CrawlerSiteNameEQ(v string) predicate.Item

CrawlerSiteNameEQ applies the EQ predicate on the "crawler_site_name" field.

func CrawlerSiteNameEqualFold

func CrawlerSiteNameEqualFold(v string) predicate.Item

CrawlerSiteNameEqualFold applies the EqualFold predicate on the "crawler_site_name" field.

func CrawlerSiteNameGT

func CrawlerSiteNameGT(v string) predicate.Item

CrawlerSiteNameGT applies the GT predicate on the "crawler_site_name" field.

func CrawlerSiteNameGTE

func CrawlerSiteNameGTE(v string) predicate.Item

CrawlerSiteNameGTE applies the GTE predicate on the "crawler_site_name" field.

func CrawlerSiteNameHasPrefix

func CrawlerSiteNameHasPrefix(v string) predicate.Item

CrawlerSiteNameHasPrefix applies the HasPrefix predicate on the "crawler_site_name" field.

func CrawlerSiteNameHasSuffix

func CrawlerSiteNameHasSuffix(v string) predicate.Item

CrawlerSiteNameHasSuffix applies the HasSuffix predicate on the "crawler_site_name" field.

func CrawlerSiteNameIn

func CrawlerSiteNameIn(vs ...string) predicate.Item

CrawlerSiteNameIn applies the In predicate on the "crawler_site_name" field.

func CrawlerSiteNameIsNil

func CrawlerSiteNameIsNil() predicate.Item

CrawlerSiteNameIsNil applies the IsNil predicate on the "crawler_site_name" field.

func CrawlerSiteNameLT

func CrawlerSiteNameLT(v string) predicate.Item

CrawlerSiteNameLT applies the LT predicate on the "crawler_site_name" field.

func CrawlerSiteNameLTE

func CrawlerSiteNameLTE(v string) predicate.Item

CrawlerSiteNameLTE applies the LTE predicate on the "crawler_site_name" field.

func CrawlerSiteNameNEQ

func CrawlerSiteNameNEQ(v string) predicate.Item

CrawlerSiteNameNEQ applies the NEQ predicate on the "crawler_site_name" field.

func CrawlerSiteNameNotIn

func CrawlerSiteNameNotIn(vs ...string) predicate.Item

CrawlerSiteNameNotIn applies the NotIn predicate on the "crawler_site_name" field.

func CrawlerSiteNameNotNil

func CrawlerSiteNameNotNil() predicate.Item

CrawlerSiteNameNotNil applies the NotNil predicate on the "crawler_site_name" field.

func CrawlerTitle

func CrawlerTitle(v string) predicate.Item

CrawlerTitle applies equality check predicate on the "crawler_title" field. It's identical to CrawlerTitleEQ.

func CrawlerTitleContains

func CrawlerTitleContains(v string) predicate.Item

CrawlerTitleContains applies the Contains predicate on the "crawler_title" field.

func CrawlerTitleContainsFold

func CrawlerTitleContainsFold(v string) predicate.Item

CrawlerTitleContainsFold applies the ContainsFold predicate on the "crawler_title" field.

func CrawlerTitleEQ

func CrawlerTitleEQ(v string) predicate.Item

CrawlerTitleEQ applies the EQ predicate on the "crawler_title" field.

func CrawlerTitleEqualFold

func CrawlerTitleEqualFold(v string) predicate.Item

CrawlerTitleEqualFold applies the EqualFold predicate on the "crawler_title" field.

func CrawlerTitleGT

func CrawlerTitleGT(v string) predicate.Item

CrawlerTitleGT applies the GT predicate on the "crawler_title" field.

func CrawlerTitleGTE

func CrawlerTitleGTE(v string) predicate.Item

CrawlerTitleGTE applies the GTE predicate on the "crawler_title" field.

func CrawlerTitleHasPrefix

func CrawlerTitleHasPrefix(v string) predicate.Item

CrawlerTitleHasPrefix applies the HasPrefix predicate on the "crawler_title" field.

func CrawlerTitleHasSuffix

func CrawlerTitleHasSuffix(v string) predicate.Item

CrawlerTitleHasSuffix applies the HasSuffix predicate on the "crawler_title" field.

func CrawlerTitleIn

func CrawlerTitleIn(vs ...string) predicate.Item

CrawlerTitleIn applies the In predicate on the "crawler_title" field.

func CrawlerTitleIsNil

func CrawlerTitleIsNil() predicate.Item

CrawlerTitleIsNil applies the IsNil predicate on the "crawler_title" field.

func CrawlerTitleLT

func CrawlerTitleLT(v string) predicate.Item

CrawlerTitleLT applies the LT predicate on the "crawler_title" field.

func CrawlerTitleLTE

func CrawlerTitleLTE(v string) predicate.Item

CrawlerTitleLTE applies the LTE predicate on the "crawler_title" field.

func CrawlerTitleNEQ

func CrawlerTitleNEQ(v string) predicate.Item

CrawlerTitleNEQ applies the NEQ predicate on the "crawler_title" field.

func CrawlerTitleNotIn

func CrawlerTitleNotIn(vs ...string) predicate.Item

CrawlerTitleNotIn applies the NotIn predicate on the "crawler_title" field.

func CrawlerTitleNotNil

func CrawlerTitleNotNil() predicate.Item

CrawlerTitleNotNil applies the NotNil predicate on the "crawler_title" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Item

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Item

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Item

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Item

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Item

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Item

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Item

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

func CreatedAtNotIn

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

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

func HasFeed

func HasFeed() predicate.Item

HasFeed applies the HasEdge predicate on the "feed" edge.

func HasFeedWith

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

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

func HasReadByUsers

func HasReadByUsers() predicate.Item

HasReadByUsers applies the HasEdge predicate on the "read_by_users" edge.

func HasReadByUsersWith

func HasReadByUsersWith(preds ...predicate.User) predicate.Item

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

func HasReads

func HasReads() predicate.Item

HasReads applies the HasEdge predicate on the "reads" edge.

func HasReadsWith

func HasReadsWith(preds ...predicate.Read) predicate.Item

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

func ID

func ID(id uuid.UUID) predicate.Item

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.Item

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.Item

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.Item

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.Item

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.Item

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.Item

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func ItemAuthorEmail

func ItemAuthorEmail(v string) predicate.Item

ItemAuthorEmail applies equality check predicate on the "item_author_email" field. It's identical to ItemAuthorEmailEQ.

func ItemAuthorEmailContains

func ItemAuthorEmailContains(v string) predicate.Item

ItemAuthorEmailContains applies the Contains predicate on the "item_author_email" field.

func ItemAuthorEmailContainsFold

func ItemAuthorEmailContainsFold(v string) predicate.Item

ItemAuthorEmailContainsFold applies the ContainsFold predicate on the "item_author_email" field.

func ItemAuthorEmailEQ

func ItemAuthorEmailEQ(v string) predicate.Item

ItemAuthorEmailEQ applies the EQ predicate on the "item_author_email" field.

func ItemAuthorEmailEqualFold

func ItemAuthorEmailEqualFold(v string) predicate.Item

ItemAuthorEmailEqualFold applies the EqualFold predicate on the "item_author_email" field.

func ItemAuthorEmailGT

func ItemAuthorEmailGT(v string) predicate.Item

ItemAuthorEmailGT applies the GT predicate on the "item_author_email" field.

func ItemAuthorEmailGTE

func ItemAuthorEmailGTE(v string) predicate.Item

ItemAuthorEmailGTE applies the GTE predicate on the "item_author_email" field.

func ItemAuthorEmailHasPrefix

func ItemAuthorEmailHasPrefix(v string) predicate.Item

ItemAuthorEmailHasPrefix applies the HasPrefix predicate on the "item_author_email" field.

func ItemAuthorEmailHasSuffix

func ItemAuthorEmailHasSuffix(v string) predicate.Item

ItemAuthorEmailHasSuffix applies the HasSuffix predicate on the "item_author_email" field.

func ItemAuthorEmailIn

func ItemAuthorEmailIn(vs ...string) predicate.Item

ItemAuthorEmailIn applies the In predicate on the "item_author_email" field.

func ItemAuthorEmailIsNil

func ItemAuthorEmailIsNil() predicate.Item

ItemAuthorEmailIsNil applies the IsNil predicate on the "item_author_email" field.

func ItemAuthorEmailLT

func ItemAuthorEmailLT(v string) predicate.Item

ItemAuthorEmailLT applies the LT predicate on the "item_author_email" field.

func ItemAuthorEmailLTE

func ItemAuthorEmailLTE(v string) predicate.Item

ItemAuthorEmailLTE applies the LTE predicate on the "item_author_email" field.

func ItemAuthorEmailNEQ

func ItemAuthorEmailNEQ(v string) predicate.Item

ItemAuthorEmailNEQ applies the NEQ predicate on the "item_author_email" field.

func ItemAuthorEmailNotIn

func ItemAuthorEmailNotIn(vs ...string) predicate.Item

ItemAuthorEmailNotIn applies the NotIn predicate on the "item_author_email" field.

func ItemAuthorEmailNotNil

func ItemAuthorEmailNotNil() predicate.Item

ItemAuthorEmailNotNil applies the NotNil predicate on the "item_author_email" field.

func ItemAuthorName

func ItemAuthorName(v string) predicate.Item

ItemAuthorName applies equality check predicate on the "item_author_name" field. It's identical to ItemAuthorNameEQ.

func ItemAuthorNameContains

func ItemAuthorNameContains(v string) predicate.Item

ItemAuthorNameContains applies the Contains predicate on the "item_author_name" field.

func ItemAuthorNameContainsFold

func ItemAuthorNameContainsFold(v string) predicate.Item

ItemAuthorNameContainsFold applies the ContainsFold predicate on the "item_author_name" field.

func ItemAuthorNameEQ

func ItemAuthorNameEQ(v string) predicate.Item

ItemAuthorNameEQ applies the EQ predicate on the "item_author_name" field.

func ItemAuthorNameEqualFold

func ItemAuthorNameEqualFold(v string) predicate.Item

ItemAuthorNameEqualFold applies the EqualFold predicate on the "item_author_name" field.

func ItemAuthorNameGT

func ItemAuthorNameGT(v string) predicate.Item

ItemAuthorNameGT applies the GT predicate on the "item_author_name" field.

func ItemAuthorNameGTE

func ItemAuthorNameGTE(v string) predicate.Item

ItemAuthorNameGTE applies the GTE predicate on the "item_author_name" field.

func ItemAuthorNameHasPrefix

func ItemAuthorNameHasPrefix(v string) predicate.Item

ItemAuthorNameHasPrefix applies the HasPrefix predicate on the "item_author_name" field.

func ItemAuthorNameHasSuffix

func ItemAuthorNameHasSuffix(v string) predicate.Item

ItemAuthorNameHasSuffix applies the HasSuffix predicate on the "item_author_name" field.

func ItemAuthorNameIn

func ItemAuthorNameIn(vs ...string) predicate.Item

ItemAuthorNameIn applies the In predicate on the "item_author_name" field.

func ItemAuthorNameIsNil

func ItemAuthorNameIsNil() predicate.Item

ItemAuthorNameIsNil applies the IsNil predicate on the "item_author_name" field.

func ItemAuthorNameLT

func ItemAuthorNameLT(v string) predicate.Item

ItemAuthorNameLT applies the LT predicate on the "item_author_name" field.

func ItemAuthorNameLTE

func ItemAuthorNameLTE(v string) predicate.Item

ItemAuthorNameLTE applies the LTE predicate on the "item_author_name" field.

func ItemAuthorNameNEQ

func ItemAuthorNameNEQ(v string) predicate.Item

ItemAuthorNameNEQ applies the NEQ predicate on the "item_author_name" field.

func ItemAuthorNameNotIn

func ItemAuthorNameNotIn(vs ...string) predicate.Item

ItemAuthorNameNotIn applies the NotIn predicate on the "item_author_name" field.

func ItemAuthorNameNotNil

func ItemAuthorNameNotNil() predicate.Item

ItemAuthorNameNotNil applies the NotNil predicate on the "item_author_name" field.

func ItemCategories

func ItemCategories(v string) predicate.Item

ItemCategories applies equality check predicate on the "item_categories" field. It's identical to ItemCategoriesEQ.

func ItemCategoriesContains

func ItemCategoriesContains(v string) predicate.Item

ItemCategoriesContains applies the Contains predicate on the "item_categories" field.

func ItemCategoriesContainsFold

func ItemCategoriesContainsFold(v string) predicate.Item

ItemCategoriesContainsFold applies the ContainsFold predicate on the "item_categories" field.

func ItemCategoriesEQ

func ItemCategoriesEQ(v string) predicate.Item

ItemCategoriesEQ applies the EQ predicate on the "item_categories" field.

func ItemCategoriesEqualFold

func ItemCategoriesEqualFold(v string) predicate.Item

ItemCategoriesEqualFold applies the EqualFold predicate on the "item_categories" field.

func ItemCategoriesGT

func ItemCategoriesGT(v string) predicate.Item

ItemCategoriesGT applies the GT predicate on the "item_categories" field.

func ItemCategoriesGTE

func ItemCategoriesGTE(v string) predicate.Item

ItemCategoriesGTE applies the GTE predicate on the "item_categories" field.

func ItemCategoriesHasPrefix

func ItemCategoriesHasPrefix(v string) predicate.Item

ItemCategoriesHasPrefix applies the HasPrefix predicate on the "item_categories" field.

func ItemCategoriesHasSuffix

func ItemCategoriesHasSuffix(v string) predicate.Item

ItemCategoriesHasSuffix applies the HasSuffix predicate on the "item_categories" field.

func ItemCategoriesIn

func ItemCategoriesIn(vs ...string) predicate.Item

ItemCategoriesIn applies the In predicate on the "item_categories" field.

func ItemCategoriesLT

func ItemCategoriesLT(v string) predicate.Item

ItemCategoriesLT applies the LT predicate on the "item_categories" field.

func ItemCategoriesLTE

func ItemCategoriesLTE(v string) predicate.Item

ItemCategoriesLTE applies the LTE predicate on the "item_categories" field.

func ItemCategoriesNEQ

func ItemCategoriesNEQ(v string) predicate.Item

ItemCategoriesNEQ applies the NEQ predicate on the "item_categories" field.

func ItemCategoriesNotIn

func ItemCategoriesNotIn(vs ...string) predicate.Item

ItemCategoriesNotIn applies the NotIn predicate on the "item_categories" field.

func ItemContent

func ItemContent(v string) predicate.Item

ItemContent applies equality check predicate on the "item_content" field. It's identical to ItemContentEQ.

func ItemContentContains

func ItemContentContains(v string) predicate.Item

ItemContentContains applies the Contains predicate on the "item_content" field.

func ItemContentContainsFold

func ItemContentContainsFold(v string) predicate.Item

ItemContentContainsFold applies the ContainsFold predicate on the "item_content" field.

func ItemContentEQ

func ItemContentEQ(v string) predicate.Item

ItemContentEQ applies the EQ predicate on the "item_content" field.

func ItemContentEqualFold

func ItemContentEqualFold(v string) predicate.Item

ItemContentEqualFold applies the EqualFold predicate on the "item_content" field.

func ItemContentGT

func ItemContentGT(v string) predicate.Item

ItemContentGT applies the GT predicate on the "item_content" field.

func ItemContentGTE

func ItemContentGTE(v string) predicate.Item

ItemContentGTE applies the GTE predicate on the "item_content" field.

func ItemContentHasPrefix

func ItemContentHasPrefix(v string) predicate.Item

ItemContentHasPrefix applies the HasPrefix predicate on the "item_content" field.

func ItemContentHasSuffix

func ItemContentHasSuffix(v string) predicate.Item

ItemContentHasSuffix applies the HasSuffix predicate on the "item_content" field.

func ItemContentIn

func ItemContentIn(vs ...string) predicate.Item

ItemContentIn applies the In predicate on the "item_content" field.

func ItemContentLT

func ItemContentLT(v string) predicate.Item

ItemContentLT applies the LT predicate on the "item_content" field.

func ItemContentLTE

func ItemContentLTE(v string) predicate.Item

ItemContentLTE applies the LTE predicate on the "item_content" field.

func ItemContentNEQ

func ItemContentNEQ(v string) predicate.Item

ItemContentNEQ applies the NEQ predicate on the "item_content" field.

func ItemContentNotIn

func ItemContentNotIn(vs ...string) predicate.Item

ItemContentNotIn applies the NotIn predicate on the "item_content" field.

func ItemDescription

func ItemDescription(v string) predicate.Item

ItemDescription applies equality check predicate on the "item_description" field. It's identical to ItemDescriptionEQ.

func ItemDescriptionContains

func ItemDescriptionContains(v string) predicate.Item

ItemDescriptionContains applies the Contains predicate on the "item_description" field.

func ItemDescriptionContainsFold

func ItemDescriptionContainsFold(v string) predicate.Item

ItemDescriptionContainsFold applies the ContainsFold predicate on the "item_description" field.

func ItemDescriptionEQ

func ItemDescriptionEQ(v string) predicate.Item

ItemDescriptionEQ applies the EQ predicate on the "item_description" field.

func ItemDescriptionEqualFold

func ItemDescriptionEqualFold(v string) predicate.Item

ItemDescriptionEqualFold applies the EqualFold predicate on the "item_description" field.

func ItemDescriptionGT

func ItemDescriptionGT(v string) predicate.Item

ItemDescriptionGT applies the GT predicate on the "item_description" field.

func ItemDescriptionGTE

func ItemDescriptionGTE(v string) predicate.Item

ItemDescriptionGTE applies the GTE predicate on the "item_description" field.

func ItemDescriptionHasPrefix

func ItemDescriptionHasPrefix(v string) predicate.Item

ItemDescriptionHasPrefix applies the HasPrefix predicate on the "item_description" field.

func ItemDescriptionHasSuffix

func ItemDescriptionHasSuffix(v string) predicate.Item

ItemDescriptionHasSuffix applies the HasSuffix predicate on the "item_description" field.

func ItemDescriptionIn

func ItemDescriptionIn(vs ...string) predicate.Item

ItemDescriptionIn applies the In predicate on the "item_description" field.

func ItemDescriptionLT

func ItemDescriptionLT(v string) predicate.Item

ItemDescriptionLT applies the LT predicate on the "item_description" field.

func ItemDescriptionLTE

func ItemDescriptionLTE(v string) predicate.Item

ItemDescriptionLTE applies the LTE predicate on the "item_description" field.

func ItemDescriptionNEQ

func ItemDescriptionNEQ(v string) predicate.Item

ItemDescriptionNEQ applies the NEQ predicate on the "item_description" field.

func ItemDescriptionNotIn

func ItemDescriptionNotIn(vs ...string) predicate.Item

ItemDescriptionNotIn applies the NotIn predicate on the "item_description" field.

func ItemEnclosures

func ItemEnclosures(v string) predicate.Item

ItemEnclosures applies equality check predicate on the "item_enclosures" field. It's identical to ItemEnclosuresEQ.

func ItemEnclosuresContains

func ItemEnclosuresContains(v string) predicate.Item

ItemEnclosuresContains applies the Contains predicate on the "item_enclosures" field.

func ItemEnclosuresContainsFold

func ItemEnclosuresContainsFold(v string) predicate.Item

ItemEnclosuresContainsFold applies the ContainsFold predicate on the "item_enclosures" field.

func ItemEnclosuresEQ

func ItemEnclosuresEQ(v string) predicate.Item

ItemEnclosuresEQ applies the EQ predicate on the "item_enclosures" field.

func ItemEnclosuresEqualFold

func ItemEnclosuresEqualFold(v string) predicate.Item

ItemEnclosuresEqualFold applies the EqualFold predicate on the "item_enclosures" field.

func ItemEnclosuresGT

func ItemEnclosuresGT(v string) predicate.Item

ItemEnclosuresGT applies the GT predicate on the "item_enclosures" field.

func ItemEnclosuresGTE

func ItemEnclosuresGTE(v string) predicate.Item

ItemEnclosuresGTE applies the GTE predicate on the "item_enclosures" field.

func ItemEnclosuresHasPrefix

func ItemEnclosuresHasPrefix(v string) predicate.Item

ItemEnclosuresHasPrefix applies the HasPrefix predicate on the "item_enclosures" field.

func ItemEnclosuresHasSuffix

func ItemEnclosuresHasSuffix(v string) predicate.Item

ItemEnclosuresHasSuffix applies the HasSuffix predicate on the "item_enclosures" field.

func ItemEnclosuresIn

func ItemEnclosuresIn(vs ...string) predicate.Item

ItemEnclosuresIn applies the In predicate on the "item_enclosures" field.

func ItemEnclosuresLT

func ItemEnclosuresLT(v string) predicate.Item

ItemEnclosuresLT applies the LT predicate on the "item_enclosures" field.

func ItemEnclosuresLTE

func ItemEnclosuresLTE(v string) predicate.Item

ItemEnclosuresLTE applies the LTE predicate on the "item_enclosures" field.

func ItemEnclosuresNEQ

func ItemEnclosuresNEQ(v string) predicate.Item

ItemEnclosuresNEQ applies the NEQ predicate on the "item_enclosures" field.

func ItemEnclosuresNotIn

func ItemEnclosuresNotIn(vs ...string) predicate.Item

ItemEnclosuresNotIn applies the NotIn predicate on the "item_enclosures" field.

func ItemGUID

func ItemGUID(v string) predicate.Item

ItemGUID applies equality check predicate on the "item_guid" field. It's identical to ItemGUIDEQ.

func ItemGUIDContains

func ItemGUIDContains(v string) predicate.Item

ItemGUIDContains applies the Contains predicate on the "item_guid" field.

func ItemGUIDContainsFold

func ItemGUIDContainsFold(v string) predicate.Item

ItemGUIDContainsFold applies the ContainsFold predicate on the "item_guid" field.

func ItemGUIDEQ

func ItemGUIDEQ(v string) predicate.Item

ItemGUIDEQ applies the EQ predicate on the "item_guid" field.

func ItemGUIDEqualFold

func ItemGUIDEqualFold(v string) predicate.Item

ItemGUIDEqualFold applies the EqualFold predicate on the "item_guid" field.

func ItemGUIDGT

func ItemGUIDGT(v string) predicate.Item

ItemGUIDGT applies the GT predicate on the "item_guid" field.

func ItemGUIDGTE

func ItemGUIDGTE(v string) predicate.Item

ItemGUIDGTE applies the GTE predicate on the "item_guid" field.

func ItemGUIDHasPrefix

func ItemGUIDHasPrefix(v string) predicate.Item

ItemGUIDHasPrefix applies the HasPrefix predicate on the "item_guid" field.

func ItemGUIDHasSuffix

func ItemGUIDHasSuffix(v string) predicate.Item

ItemGUIDHasSuffix applies the HasSuffix predicate on the "item_guid" field.

func ItemGUIDIn

func ItemGUIDIn(vs ...string) predicate.Item

ItemGUIDIn applies the In predicate on the "item_guid" field.

func ItemGUIDLT

func ItemGUIDLT(v string) predicate.Item

ItemGUIDLT applies the LT predicate on the "item_guid" field.

func ItemGUIDLTE

func ItemGUIDLTE(v string) predicate.Item

ItemGUIDLTE applies the LTE predicate on the "item_guid" field.

func ItemGUIDNEQ

func ItemGUIDNEQ(v string) predicate.Item

ItemGUIDNEQ applies the NEQ predicate on the "item_guid" field.

func ItemGUIDNotIn

func ItemGUIDNotIn(vs ...string) predicate.Item

ItemGUIDNotIn applies the NotIn predicate on the "item_guid" field.

func ItemImageTitle

func ItemImageTitle(v string) predicate.Item

ItemImageTitle applies equality check predicate on the "item_image_title" field. It's identical to ItemImageTitleEQ.

func ItemImageTitleContains

func ItemImageTitleContains(v string) predicate.Item

ItemImageTitleContains applies the Contains predicate on the "item_image_title" field.

func ItemImageTitleContainsFold

func ItemImageTitleContainsFold(v string) predicate.Item

ItemImageTitleContainsFold applies the ContainsFold predicate on the "item_image_title" field.

func ItemImageTitleEQ

func ItemImageTitleEQ(v string) predicate.Item

ItemImageTitleEQ applies the EQ predicate on the "item_image_title" field.

func ItemImageTitleEqualFold

func ItemImageTitleEqualFold(v string) predicate.Item

ItemImageTitleEqualFold applies the EqualFold predicate on the "item_image_title" field.

func ItemImageTitleGT

func ItemImageTitleGT(v string) predicate.Item

ItemImageTitleGT applies the GT predicate on the "item_image_title" field.

func ItemImageTitleGTE

func ItemImageTitleGTE(v string) predicate.Item

ItemImageTitleGTE applies the GTE predicate on the "item_image_title" field.

func ItemImageTitleHasPrefix

func ItemImageTitleHasPrefix(v string) predicate.Item

ItemImageTitleHasPrefix applies the HasPrefix predicate on the "item_image_title" field.

func ItemImageTitleHasSuffix

func ItemImageTitleHasSuffix(v string) predicate.Item

ItemImageTitleHasSuffix applies the HasSuffix predicate on the "item_image_title" field.

func ItemImageTitleIn

func ItemImageTitleIn(vs ...string) predicate.Item

ItemImageTitleIn applies the In predicate on the "item_image_title" field.

func ItemImageTitleIsNil

func ItemImageTitleIsNil() predicate.Item

ItemImageTitleIsNil applies the IsNil predicate on the "item_image_title" field.

func ItemImageTitleLT

func ItemImageTitleLT(v string) predicate.Item

ItemImageTitleLT applies the LT predicate on the "item_image_title" field.

func ItemImageTitleLTE

func ItemImageTitleLTE(v string) predicate.Item

ItemImageTitleLTE applies the LTE predicate on the "item_image_title" field.

func ItemImageTitleNEQ

func ItemImageTitleNEQ(v string) predicate.Item

ItemImageTitleNEQ applies the NEQ predicate on the "item_image_title" field.

func ItemImageTitleNotIn

func ItemImageTitleNotIn(vs ...string) predicate.Item

ItemImageTitleNotIn applies the NotIn predicate on the "item_image_title" field.

func ItemImageTitleNotNil

func ItemImageTitleNotNil() predicate.Item

ItemImageTitleNotNil applies the NotNil predicate on the "item_image_title" field.

func ItemImageURL

func ItemImageURL(v string) predicate.Item

ItemImageURL applies equality check predicate on the "item_image_url" field. It's identical to ItemImageURLEQ.

func ItemImageURLContains

func ItemImageURLContains(v string) predicate.Item

ItemImageURLContains applies the Contains predicate on the "item_image_url" field.

func ItemImageURLContainsFold

func ItemImageURLContainsFold(v string) predicate.Item

ItemImageURLContainsFold applies the ContainsFold predicate on the "item_image_url" field.

func ItemImageURLEQ

func ItemImageURLEQ(v string) predicate.Item

ItemImageURLEQ applies the EQ predicate on the "item_image_url" field.

func ItemImageURLEqualFold

func ItemImageURLEqualFold(v string) predicate.Item

ItemImageURLEqualFold applies the EqualFold predicate on the "item_image_url" field.

func ItemImageURLGT

func ItemImageURLGT(v string) predicate.Item

ItemImageURLGT applies the GT predicate on the "item_image_url" field.

func ItemImageURLGTE

func ItemImageURLGTE(v string) predicate.Item

ItemImageURLGTE applies the GTE predicate on the "item_image_url" field.

func ItemImageURLHasPrefix

func ItemImageURLHasPrefix(v string) predicate.Item

ItemImageURLHasPrefix applies the HasPrefix predicate on the "item_image_url" field.

func ItemImageURLHasSuffix

func ItemImageURLHasSuffix(v string) predicate.Item

ItemImageURLHasSuffix applies the HasSuffix predicate on the "item_image_url" field.

func ItemImageURLIn

func ItemImageURLIn(vs ...string) predicate.Item

ItemImageURLIn applies the In predicate on the "item_image_url" field.

func ItemImageURLIsNil

func ItemImageURLIsNil() predicate.Item

ItemImageURLIsNil applies the IsNil predicate on the "item_image_url" field.

func ItemImageURLLT

func ItemImageURLLT(v string) predicate.Item

ItemImageURLLT applies the LT predicate on the "item_image_url" field.

func ItemImageURLLTE

func ItemImageURLLTE(v string) predicate.Item

ItemImageURLLTE applies the LTE predicate on the "item_image_url" field.

func ItemImageURLNEQ

func ItemImageURLNEQ(v string) predicate.Item

ItemImageURLNEQ applies the NEQ predicate on the "item_image_url" field.

func ItemImageURLNotIn

func ItemImageURLNotIn(vs ...string) predicate.Item

ItemImageURLNotIn applies the NotIn predicate on the "item_image_url" field.

func ItemImageURLNotNil

func ItemImageURLNotNil() predicate.Item

ItemImageURLNotNil applies the NotNil predicate on the "item_image_url" field.

func ItemLink(v string) predicate.Item

ItemLink applies equality check predicate on the "item_link" field. It's identical to ItemLinkEQ.

func ItemLinkContains

func ItemLinkContains(v string) predicate.Item

ItemLinkContains applies the Contains predicate on the "item_link" field.

func ItemLinkContainsFold

func ItemLinkContainsFold(v string) predicate.Item

ItemLinkContainsFold applies the ContainsFold predicate on the "item_link" field.

func ItemLinkEQ

func ItemLinkEQ(v string) predicate.Item

ItemLinkEQ applies the EQ predicate on the "item_link" field.

func ItemLinkEqualFold

func ItemLinkEqualFold(v string) predicate.Item

ItemLinkEqualFold applies the EqualFold predicate on the "item_link" field.

func ItemLinkGT

func ItemLinkGT(v string) predicate.Item

ItemLinkGT applies the GT predicate on the "item_link" field.

func ItemLinkGTE

func ItemLinkGTE(v string) predicate.Item

ItemLinkGTE applies the GTE predicate on the "item_link" field.

func ItemLinkHasPrefix

func ItemLinkHasPrefix(v string) predicate.Item

ItemLinkHasPrefix applies the HasPrefix predicate on the "item_link" field.

func ItemLinkHasSuffix

func ItemLinkHasSuffix(v string) predicate.Item

ItemLinkHasSuffix applies the HasSuffix predicate on the "item_link" field.

func ItemLinkIn

func ItemLinkIn(vs ...string) predicate.Item

ItemLinkIn applies the In predicate on the "item_link" field.

func ItemLinkLT

func ItemLinkLT(v string) predicate.Item

ItemLinkLT applies the LT predicate on the "item_link" field.

func ItemLinkLTE

func ItemLinkLTE(v string) predicate.Item

ItemLinkLTE applies the LTE predicate on the "item_link" field.

func ItemLinkNEQ

func ItemLinkNEQ(v string) predicate.Item

ItemLinkNEQ applies the NEQ predicate on the "item_link" field.

func ItemLinkNotIn

func ItemLinkNotIn(vs ...string) predicate.Item

ItemLinkNotIn applies the NotIn predicate on the "item_link" field.

func ItemPublished

func ItemPublished(v time.Time) predicate.Item

ItemPublished applies equality check predicate on the "item_published" field. It's identical to ItemPublishedEQ.

func ItemPublishedEQ

func ItemPublishedEQ(v time.Time) predicate.Item

ItemPublishedEQ applies the EQ predicate on the "item_published" field.

func ItemPublishedGT

func ItemPublishedGT(v time.Time) predicate.Item

ItemPublishedGT applies the GT predicate on the "item_published" field.

func ItemPublishedGTE

func ItemPublishedGTE(v time.Time) predicate.Item

ItemPublishedGTE applies the GTE predicate on the "item_published" field.

func ItemPublishedIn

func ItemPublishedIn(vs ...time.Time) predicate.Item

ItemPublishedIn applies the In predicate on the "item_published" field.

func ItemPublishedLT

func ItemPublishedLT(v time.Time) predicate.Item

ItemPublishedLT applies the LT predicate on the "item_published" field.

func ItemPublishedLTE

func ItemPublishedLTE(v time.Time) predicate.Item

ItemPublishedLTE applies the LTE predicate on the "item_published" field.

func ItemPublishedNEQ

func ItemPublishedNEQ(v time.Time) predicate.Item

ItemPublishedNEQ applies the NEQ predicate on the "item_published" field.

func ItemPublishedNotIn

func ItemPublishedNotIn(vs ...time.Time) predicate.Item

ItemPublishedNotIn applies the NotIn predicate on the "item_published" field.

func ItemTitle

func ItemTitle(v string) predicate.Item

ItemTitle applies equality check predicate on the "item_title" field. It's identical to ItemTitleEQ.

func ItemTitleContains

func ItemTitleContains(v string) predicate.Item

ItemTitleContains applies the Contains predicate on the "item_title" field.

func ItemTitleContainsFold

func ItemTitleContainsFold(v string) predicate.Item

ItemTitleContainsFold applies the ContainsFold predicate on the "item_title" field.

func ItemTitleEQ

func ItemTitleEQ(v string) predicate.Item

ItemTitleEQ applies the EQ predicate on the "item_title" field.

func ItemTitleEqualFold

func ItemTitleEqualFold(v string) predicate.Item

ItemTitleEqualFold applies the EqualFold predicate on the "item_title" field.

func ItemTitleGT

func ItemTitleGT(v string) predicate.Item

ItemTitleGT applies the GT predicate on the "item_title" field.

func ItemTitleGTE

func ItemTitleGTE(v string) predicate.Item

ItemTitleGTE applies the GTE predicate on the "item_title" field.

func ItemTitleHasPrefix

func ItemTitleHasPrefix(v string) predicate.Item

ItemTitleHasPrefix applies the HasPrefix predicate on the "item_title" field.

func ItemTitleHasSuffix

func ItemTitleHasSuffix(v string) predicate.Item

ItemTitleHasSuffix applies the HasSuffix predicate on the "item_title" field.

func ItemTitleIn

func ItemTitleIn(vs ...string) predicate.Item

ItemTitleIn applies the In predicate on the "item_title" field.

func ItemTitleLT

func ItemTitleLT(v string) predicate.Item

ItemTitleLT applies the LT predicate on the "item_title" field.

func ItemTitleLTE

func ItemTitleLTE(v string) predicate.Item

ItemTitleLTE applies the LTE predicate on the "item_title" field.

func ItemTitleNEQ

func ItemTitleNEQ(v string) predicate.Item

ItemTitleNEQ applies the NEQ predicate on the "item_title" field.

func ItemTitleNotIn

func ItemTitleNotIn(vs ...string) predicate.Item

ItemTitleNotIn applies the NotIn predicate on the "item_title" field.

func ItemUpdated

func ItemUpdated(v time.Time) predicate.Item

ItemUpdated applies equality check predicate on the "item_updated" field. It's identical to ItemUpdatedEQ.

func ItemUpdatedEQ

func ItemUpdatedEQ(v time.Time) predicate.Item

ItemUpdatedEQ applies the EQ predicate on the "item_updated" field.

func ItemUpdatedGT

func ItemUpdatedGT(v time.Time) predicate.Item

ItemUpdatedGT applies the GT predicate on the "item_updated" field.

func ItemUpdatedGTE

func ItemUpdatedGTE(v time.Time) predicate.Item

ItemUpdatedGTE applies the GTE predicate on the "item_updated" field.

func ItemUpdatedIn

func ItemUpdatedIn(vs ...time.Time) predicate.Item

ItemUpdatedIn applies the In predicate on the "item_updated" field.

func ItemUpdatedLT

func ItemUpdatedLT(v time.Time) predicate.Item

ItemUpdatedLT applies the LT predicate on the "item_updated" field.

func ItemUpdatedLTE

func ItemUpdatedLTE(v time.Time) predicate.Item

ItemUpdatedLTE applies the LTE predicate on the "item_updated" field.

func ItemUpdatedNEQ

func ItemUpdatedNEQ(v time.Time) predicate.Item

ItemUpdatedNEQ applies the NEQ predicate on the "item_updated" field.

func ItemUpdatedNotIn

func ItemUpdatedNotIn(vs ...time.Time) predicate.Item

ItemUpdatedNotIn applies the NotIn predicate on the "item_updated" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Item) predicate.Item

Or groups predicates with the OR operator between them.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Item

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Item

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Item

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Item

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Item

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Item

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Item

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

func UpdatedAtNotIn

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

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

This section is empty.

Jump to

Keyboard shortcuts

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