Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Comment) predicate.Comment
- func Content(v string) predicate.Comment
- func ContentContains(v string) predicate.Comment
- func ContentContainsFold(v string) predicate.Comment
- func ContentEQ(v string) predicate.Comment
- func ContentEqualFold(v string) predicate.Comment
- func ContentGT(v string) predicate.Comment
- func ContentGTE(v string) predicate.Comment
- func ContentHTML(v string) predicate.Comment
- func ContentHTMLContains(v string) predicate.Comment
- func ContentHTMLContainsFold(v string) predicate.Comment
- func ContentHTMLEQ(v string) predicate.Comment
- func ContentHTMLEqualFold(v string) predicate.Comment
- func ContentHTMLGT(v string) predicate.Comment
- func ContentHTMLGTE(v string) predicate.Comment
- func ContentHTMLHasPrefix(v string) predicate.Comment
- func ContentHTMLHasSuffix(v string) predicate.Comment
- func ContentHTMLIn(vs ...string) predicate.Comment
- func ContentHTMLLT(v string) predicate.Comment
- func ContentHTMLLTE(v string) predicate.Comment
- func ContentHTMLNEQ(v string) predicate.Comment
- func ContentHTMLNotIn(vs ...string) predicate.Comment
- func ContentHasPrefix(v string) predicate.Comment
- func ContentHasSuffix(v string) predicate.Comment
- func ContentIn(vs ...string) predicate.Comment
- func ContentLT(v string) predicate.Comment
- func ContentLTE(v string) predicate.Comment
- func ContentNEQ(v string) predicate.Comment
- func ContentNotIn(vs ...string) predicate.Comment
- func CreatedAt(v time.Time) predicate.Comment
- func CreatedAtEQ(v time.Time) predicate.Comment
- func CreatedAtGT(v time.Time) predicate.Comment
- func CreatedAtGTE(v time.Time) predicate.Comment
- func CreatedAtIn(vs ...time.Time) predicate.Comment
- func CreatedAtLT(v time.Time) predicate.Comment
- func CreatedAtLTE(v time.Time) predicate.Comment
- func CreatedAtNEQ(v time.Time) predicate.Comment
- func CreatedAtNotIn(vs ...time.Time) predicate.Comment
- func DeletedAt(v time.Time) predicate.Comment
- func DeletedAtEQ(v time.Time) predicate.Comment
- func DeletedAtGT(v time.Time) predicate.Comment
- func DeletedAtGTE(v time.Time) predicate.Comment
- func DeletedAtIn(vs ...time.Time) predicate.Comment
- func DeletedAtIsNil() predicate.Comment
- func DeletedAtLT(v time.Time) predicate.Comment
- func DeletedAtLTE(v time.Time) predicate.Comment
- func DeletedAtNEQ(v time.Time) predicate.Comment
- func DeletedAtNotIn(vs ...time.Time) predicate.Comment
- func DeletedAtNotNil() predicate.Comment
- func HasChildren() predicate.Comment
- func HasChildrenWith(preds ...predicate.Comment) predicate.Comment
- func HasParent() predicate.Comment
- func HasParentWith(preds ...predicate.Comment) predicate.Comment
- func HasPost() predicate.Comment
- func HasPostWith(preds ...predicate.Post) predicate.Comment
- func HasUser() predicate.Comment
- func HasUserWith(preds ...predicate.User) predicate.Comment
- func ID(id int) predicate.Comment
- func IDEQ(id int) predicate.Comment
- func IDGT(id int) predicate.Comment
- func IDGTE(id int) predicate.Comment
- func IDIn(ids ...int) predicate.Comment
- func IDLT(id int) predicate.Comment
- func IDLTE(id int) predicate.Comment
- func IDNEQ(id int) predicate.Comment
- func IDNotIn(ids ...int) predicate.Comment
- func Not(p predicate.Comment) predicate.Comment
- func Or(predicates ...predicate.Comment) predicate.Comment
- func ParentID(v int) predicate.Comment
- func ParentIDEQ(v int) predicate.Comment
- func ParentIDIn(vs ...int) predicate.Comment
- func ParentIDIsNil() predicate.Comment
- func ParentIDNEQ(v int) predicate.Comment
- func ParentIDNotIn(vs ...int) predicate.Comment
- func ParentIDNotNil() predicate.Comment
- func PostID(v int) predicate.Comment
- func PostIDEQ(v int) predicate.Comment
- func PostIDIn(vs ...int) predicate.Comment
- func PostIDIsNil() predicate.Comment
- func PostIDNEQ(v int) predicate.Comment
- func PostIDNotIn(vs ...int) predicate.Comment
- func PostIDNotNil() predicate.Comment
- func UpdatedAt(v time.Time) predicate.Comment
- func UpdatedAtEQ(v time.Time) predicate.Comment
- func UpdatedAtGT(v time.Time) predicate.Comment
- func UpdatedAtGTE(v time.Time) predicate.Comment
- func UpdatedAtIn(vs ...time.Time) predicate.Comment
- func UpdatedAtLT(v time.Time) predicate.Comment
- func UpdatedAtLTE(v time.Time) predicate.Comment
- func UpdatedAtNEQ(v time.Time) predicate.Comment
- func UpdatedAtNotIn(vs ...time.Time) predicate.Comment
- func UserID(v int) predicate.Comment
- func UserIDEQ(v int) predicate.Comment
- func UserIDIn(vs ...int) predicate.Comment
- func UserIDIsNil() predicate.Comment
- func UserIDNEQ(v int) predicate.Comment
- func UserIDNotIn(vs ...int) predicate.Comment
- func UserIDNotNil() predicate.Comment
- func ValidColumn(column string) bool
- func Votes(v int64) predicate.Comment
- func VotesEQ(v int64) predicate.Comment
- func VotesGT(v int64) predicate.Comment
- func VotesGTE(v int64) predicate.Comment
- func VotesIn(vs ...int64) predicate.Comment
- func VotesLT(v int64) predicate.Comment
- func VotesLTE(v int64) predicate.Comment
- func VotesNEQ(v int64) predicate.Comment
- func VotesNotIn(vs ...int64) predicate.Comment
Constants ¶
const ( // Label holds the string label denoting the comment type in the database. Label = "comment" // FieldID holds the string denoting the id field in the database. FieldID = "id" // 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" // FieldContent holds the string denoting the content field in the database. FieldContent = "content" // FieldContentHTML holds the string denoting the content_html field in the database. FieldContentHTML = "content_html" // FieldVotes holds the string denoting the votes field in the database. FieldVotes = "votes" // FieldPostID holds the string denoting the post_id field in the database. FieldPostID = "post_id" // FieldUserID holds the string denoting the user_id field in the database. FieldUserID = "user_id" // FieldParentID holds the string denoting the parent_id field in the database. FieldParentID = "parent_id" // EdgePost holds the string denoting the post edge name in mutations. EdgePost = "post" // EdgeUser holds the string denoting the user edge name in mutations. EdgeUser = "user" // EdgeChildren holds the string denoting the children edge name in mutations. EdgeChildren = "children" // EdgeParent holds the string denoting the parent edge name in mutations. EdgeParent = "parent" // Table holds the table name of the comment in the database. Table = "comments" // PostTable is the table that holds the post relation/edge. PostTable = "comments" // PostInverseTable is the table name for the Post entity. // It exists in this package in order to avoid circular dependency with the "post" package. PostInverseTable = "posts" // PostColumn is the table column denoting the post relation/edge. PostColumn = "post_id" // UserTable is the table that holds the user relation/edge. UserTable = "comments" // UserInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. UserInverseTable = "users" // UserColumn is the table column denoting the user relation/edge. UserColumn = "user_id" // ChildrenTable is the table that holds the children relation/edge. ChildrenTable = "comments" // ChildrenColumn is the table column denoting the children relation/edge. ChildrenColumn = "parent_id" // ParentTable is the table that holds the parent relation/edge. ParentTable = "comments" // ParentColumn is the table column denoting the parent relation/edge. ParentColumn = "parent_id" )
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 // UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field. UpdateDefaultUpdatedAt func() time.Time // DefaultVotes holds the default value on creation for the "votes" field. DefaultVotes int64 )
var Columns = []string{ FieldID, FieldCreatedAt, FieldUpdatedAt, FieldDeletedAt, FieldContent, FieldContentHTML, FieldVotes, FieldPostID, FieldUserID, FieldParentID, }
Columns holds all SQL columns for comment fields.
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 ContentHTML ¶
ContentHTML applies equality check predicate on the "content_html" field. It's identical to ContentHTMLEQ.
func ContentHTMLContains ¶
ContentHTMLContains applies the Contains predicate on the "content_html" field.
func ContentHTMLContainsFold ¶
ContentHTMLContainsFold applies the ContainsFold predicate on the "content_html" field.
func ContentHTMLEQ ¶
ContentHTMLEQ applies the EQ predicate on the "content_html" field.
func ContentHTMLEqualFold ¶
ContentHTMLEqualFold applies the EqualFold predicate on the "content_html" field.
func ContentHTMLGT ¶
ContentHTMLGT applies the GT predicate on the "content_html" field.
func ContentHTMLGTE ¶
ContentHTMLGTE applies the GTE predicate on the "content_html" field.
func ContentHTMLHasPrefix ¶
ContentHTMLHasPrefix applies the HasPrefix predicate on the "content_html" field.
func ContentHTMLHasSuffix ¶
ContentHTMLHasSuffix applies the HasSuffix predicate on the "content_html" field.
func ContentHTMLIn ¶
ContentHTMLIn applies the In predicate on the "content_html" field.
func ContentHTMLLT ¶
ContentHTMLLT applies the LT predicate on the "content_html" field.
func ContentHTMLLTE ¶
ContentHTMLLTE applies the LTE predicate on the "content_html" field.
func ContentHTMLNEQ ¶
ContentHTMLNEQ applies the NEQ predicate on the "content_html" field.
func ContentHTMLNotIn ¶
ContentHTMLNotIn applies the NotIn predicate on the "content_html" 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 DeletedAt ¶
DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
func DeletedAtEQ ¶
DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
func DeletedAtGT ¶
DeletedAtGT applies the GT predicate on the "deleted_at" field.
func DeletedAtGTE ¶
DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
func DeletedAtIn ¶
DeletedAtIn applies the In predicate on the "deleted_at" field.
func DeletedAtIsNil ¶
DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
func DeletedAtLT ¶
DeletedAtLT applies the LT predicate on the "deleted_at" field.
func DeletedAtLTE ¶
DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
func DeletedAtNEQ ¶
DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
func DeletedAtNotIn ¶
DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
func DeletedAtNotNil ¶
DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
func HasChildren ¶
HasChildren applies the HasEdge predicate on the "children" edge.
func HasChildrenWith ¶
HasChildrenWith applies the HasEdge predicate on the "children" edge with a given conditions (other predicates).
func HasParentWith ¶
HasParentWith applies the HasEdge predicate on the "parent" edge with a given conditions (other predicates).
func HasPostWith ¶
HasPostWith applies the HasEdge predicate on the "post" edge with a given conditions (other predicates).
func HasUserWith ¶
HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
func ParentID ¶
ParentID applies equality check predicate on the "parent_id" field. It's identical to ParentIDEQ.
func ParentIDEQ ¶
ParentIDEQ applies the EQ predicate on the "parent_id" field.
func ParentIDIn ¶
ParentIDIn applies the In predicate on the "parent_id" field.
func ParentIDIsNil ¶
ParentIDIsNil applies the IsNil predicate on the "parent_id" field.
func ParentIDNEQ ¶
ParentIDNEQ applies the NEQ predicate on the "parent_id" field.
func ParentIDNotIn ¶
ParentIDNotIn applies the NotIn predicate on the "parent_id" field.
func ParentIDNotNil ¶
ParentIDNotNil applies the NotNil predicate on the "parent_id" field.
func PostID ¶
PostID applies equality check predicate on the "post_id" field. It's identical to PostIDEQ.
func PostIDIsNil ¶
PostIDIsNil applies the IsNil predicate on the "post_id" field.
func PostIDNotIn ¶
PostIDNotIn applies the NotIn predicate on the "post_id" field.
func PostIDNotNil ¶
PostIDNotNil applies the NotNil predicate on the "post_id" 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 UserID ¶
UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
func UserIDIsNil ¶
UserIDIsNil applies the IsNil predicate on the "user_id" field.
func UserIDNotIn ¶
UserIDNotIn applies the NotIn predicate on the "user_id" field.
func UserIDNotNil ¶
UserIDNotNil applies the NotNil predicate on the "user_id" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
func Votes ¶
Votes applies equality check predicate on the "votes" field. It's identical to VotesEQ.
func VotesNotIn ¶
VotesNotIn applies the NotIn predicate on the "votes" field.
Types ¶
This section is empty.