Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Article) predicate.Article
- func Content(v string) predicate.Article
- func ContentContains(v string) predicate.Article
- func ContentContainsFold(v string) predicate.Article
- func ContentEQ(v string) predicate.Article
- func ContentEqualFold(v string) predicate.Article
- func ContentGT(v string) predicate.Article
- func ContentGTE(v string) predicate.Article
- func ContentHasPrefix(v string) predicate.Article
- func ContentHasSuffix(v string) predicate.Article
- func ContentIn(vs ...string) predicate.Article
- func ContentLT(v string) predicate.Article
- func ContentLTE(v string) predicate.Article
- func ContentNEQ(v string) predicate.Article
- func ContentNotIn(vs ...string) predicate.Article
- func CreatedAt(v time.Time) predicate.Article
- func CreatedAtEQ(v time.Time) predicate.Article
- func CreatedAtGT(v time.Time) predicate.Article
- func CreatedAtGTE(v time.Time) predicate.Article
- func CreatedAtIn(vs ...time.Time) predicate.Article
- func CreatedAtLT(v time.Time) predicate.Article
- func CreatedAtLTE(v time.Time) predicate.Article
- func CreatedAtNEQ(v time.Time) predicate.Article
- func CreatedAtNotIn(vs ...time.Time) predicate.Article
- func HasComments() predicate.Article
- func HasCommentsWith(preds ...predicate.Comment) predicate.Article
- func HasTags() predicate.Article
- func HasTagsWith(preds ...predicate.Tag) predicate.Article
- func ID(id int64) predicate.Article
- func IDEQ(id int64) predicate.Article
- func IDGT(id int64) predicate.Article
- func IDGTE(id int64) predicate.Article
- func IDIn(ids ...int64) predicate.Article
- func IDLT(id int64) predicate.Article
- func IDLTE(id int64) predicate.Article
- func IDNEQ(id int64) predicate.Article
- func IDNotIn(ids ...int64) predicate.Article
- func Not(p predicate.Article) predicate.Article
- func Or(predicates ...predicate.Article) predicate.Article
- func Title(v string) predicate.Article
- func TitleContains(v string) predicate.Article
- func TitleContainsFold(v string) predicate.Article
- func TitleEQ(v string) predicate.Article
- func TitleEqualFold(v string) predicate.Article
- func TitleGT(v string) predicate.Article
- func TitleGTE(v string) predicate.Article
- func TitleHasPrefix(v string) predicate.Article
- func TitleHasSuffix(v string) predicate.Article
- func TitleIn(vs ...string) predicate.Article
- func TitleLT(v string) predicate.Article
- func TitleLTE(v string) predicate.Article
- func TitleNEQ(v string) predicate.Article
- func TitleNotIn(vs ...string) predicate.Article
- func UpdatedAt(v time.Time) predicate.Article
- func UpdatedAtEQ(v time.Time) predicate.Article
- func UpdatedAtGT(v time.Time) predicate.Article
- func UpdatedAtGTE(v time.Time) predicate.Article
- func UpdatedAtIn(vs ...time.Time) predicate.Article
- func UpdatedAtLT(v time.Time) predicate.Article
- func UpdatedAtLTE(v time.Time) predicate.Article
- func UpdatedAtNEQ(v time.Time) predicate.Article
- func UpdatedAtNotIn(vs ...time.Time) predicate.Article
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the article type in the database. Label = "article" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldTitle holds the string denoting the title field in the database. FieldTitle = "title" // FieldContent holds the string denoting the content field in the database. FieldContent = "content" // 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" // EdgeComments holds the string denoting the comments edge name in mutations. EdgeComments = "comments" // EdgeTags holds the string denoting the tags edge name in mutations. EdgeTags = "tags" // Table holds the table name of the article in the database. Table = "articles" // CommentsTable is the table the holds the comments relation/edge. CommentsTable = "comments" // CommentsInverseTable is the table name for the Comment entity. // It exists in this package in order to avoid circular dependency with the "comment" package. CommentsInverseTable = "comments" // CommentsColumn is the table column denoting the comments relation/edge. CommentsColumn = "article_comments" // TagsTable is the table the holds the tags relation/edge. The primary key declared below. TagsTable = "tag_posts" // TagsInverseTable is the table name for the Tag entity. // It exists in this package in order to avoid circular dependency with the "tag" package. TagsInverseTable = "tags" )
Variables ¶
var ( // DefaultCreatedAt holds the default value on creation for the "created_at" field. DefaultCreatedAt func() time.Time // DefaultUpdatedAt holds the default value on creation for the "updated_at" field. DefaultUpdatedAt func() time.Time )
var Columns = []string{ FieldID, FieldTitle, FieldContent, FieldCreatedAt, FieldUpdatedAt, }
Columns holds all SQL columns for article fields.
var ( // TagsPrimaryKey and TagsColumn2 are the table columns denoting the // primary key for the tags relation (M2M). TagsPrimaryKey = []string{"tag_id", "article_id"} )
Functions ¶
func Content ¶
Content applies equality check predicate on the "content" field. It's identical to ContentEQ.
func ContentContains ¶
ContentContains applies the Contains predicate on the "content" field.
func ContentContainsFold ¶
ContentContainsFold applies the ContainsFold predicate on the "content" field.
func ContentEqualFold ¶
ContentEqualFold applies the EqualFold predicate on the "content" field.
func ContentGTE ¶
ContentGTE applies the GTE predicate on the "content" field.
func ContentHasPrefix ¶
ContentHasPrefix applies the HasPrefix predicate on the "content" field.
func ContentHasSuffix ¶
ContentHasSuffix applies the HasSuffix predicate on the "content" field.
func ContentLTE ¶
ContentLTE applies the LTE predicate on the "content" field.
func ContentNEQ ¶
ContentNEQ applies the NEQ predicate on the "content" field.
func ContentNotIn ¶
ContentNotIn applies the NotIn predicate on the "content" field.
func CreatedAt ¶
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func HasComments ¶
HasComments applies the HasEdge predicate on the "comments" edge.
func HasCommentsWith ¶
HasCommentsWith applies the HasEdge predicate on the "comments" edge with a given conditions (other predicates).
func HasTagsWith ¶
HasTagsWith applies the HasEdge predicate on the "tags" edge with a given conditions (other predicates).
func Title ¶
Title applies equality check predicate on the "title" field. It's identical to TitleEQ.
func TitleContains ¶
TitleContains applies the Contains predicate on the "title" field.
func TitleContainsFold ¶
TitleContainsFold applies the ContainsFold predicate on the "title" field.
func TitleEqualFold ¶
TitleEqualFold applies the EqualFold predicate on the "title" field.
func TitleHasPrefix ¶
TitleHasPrefix applies the HasPrefix predicate on the "title" field.
func TitleHasSuffix ¶
TitleHasSuffix applies the HasSuffix predicate on the "title" field.
func TitleNotIn ¶
TitleNotIn applies the NotIn predicate on the "title" field.
func UpdatedAt ¶
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtLT ¶
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.