Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Like) predicate.Like
- func CreateTime(v time.Time) predicate.Like
- func CreateTimeEQ(v time.Time) predicate.Like
- func CreateTimeGT(v time.Time) predicate.Like
- func CreateTimeGTE(v time.Time) predicate.Like
- func CreateTimeIn(vs ...time.Time) predicate.Like
- func CreateTimeLT(v time.Time) predicate.Like
- func CreateTimeLTE(v time.Time) predicate.Like
- func CreateTimeNEQ(v time.Time) predicate.Like
- func CreateTimeNotIn(vs ...time.Time) predicate.Like
- func HasTweet() predicate.Like
- func HasTweetWith(preds ...predicate.Tweet) predicate.Like
- func HasUser() predicate.Like
- func HasUserWith(preds ...predicate.User) predicate.Like
- func LikedAt(v time.Time) predicate.Like
- func LikedAtEQ(v time.Time) predicate.Like
- func LikedAtGT(v time.Time) predicate.Like
- func LikedAtGTE(v time.Time) predicate.Like
- func LikedAtIn(vs ...time.Time) predicate.Like
- func LikedAtLT(v time.Time) predicate.Like
- func LikedAtLTE(v time.Time) predicate.Like
- func LikedAtNEQ(v time.Time) predicate.Like
- func LikedAtNotIn(vs ...time.Time) predicate.Like
- func Not(p predicate.Like) predicate.Like
- func Or(predicates ...predicate.Like) predicate.Like
- func TweetID(v int) predicate.Like
- func TweetIDEQ(v int) predicate.Like
- func TweetIDIn(vs ...int) predicate.Like
- func TweetIDNEQ(v int) predicate.Like
- func TweetIDNotIn(vs ...int) predicate.Like
- func UpdateTime(v time.Time) predicate.Like
- func UpdateTimeEQ(v time.Time) predicate.Like
- func UpdateTimeGT(v time.Time) predicate.Like
- func UpdateTimeGTE(v time.Time) predicate.Like
- func UpdateTimeIn(vs ...time.Time) predicate.Like
- func UpdateTimeLT(v time.Time) predicate.Like
- func UpdateTimeLTE(v time.Time) predicate.Like
- func UpdateTimeNEQ(v time.Time) predicate.Like
- func UpdateTimeNotIn(vs ...time.Time) predicate.Like
- func UserID(v int) predicate.Like
- func UserIDEQ(v int) predicate.Like
- func UserIDIn(vs ...int) predicate.Like
- func UserIDNEQ(v int) predicate.Like
- func UserIDNotIn(vs ...int) predicate.Like
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreateTime(opts ...sql.OrderTermOption) OrderOption
- func ByLikedAt(opts ...sql.OrderTermOption) OrderOption
- func ByTweetField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByTweetID(opts ...sql.OrderTermOption) OrderOption
- func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption
- func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByUserID(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the like type in the database. Label = "like" // FieldCreateTime holds the string denoting the create_time field in the database. FieldCreateTime = "create_time" // FieldUpdateTime holds the string denoting the update_time field in the database. FieldUpdateTime = "update_time" // FieldLikedAt holds the string denoting the liked_at field in the database. FieldLikedAt = "liked_at" // FieldUserID holds the string denoting the user_id field in the database. FieldUserID = "user_id" // FieldTweetID holds the string denoting the tweet_id field in the database. FieldTweetID = "tweet_id" // EdgeUser holds the string denoting the user edge name in mutations. EdgeUser = "user" // EdgeTweet holds the string denoting the tweet edge name in mutations. EdgeTweet = "tweet" // UserFieldID holds the string denoting the ID field of the User. UserFieldID = "id" // TweetFieldID holds the string denoting the ID field of the Tweet. TweetFieldID = "id" // Table holds the table name of the like in the database. Table = "likes" // UserTable is the table that holds the user relation/edge. UserTable = "likes" // 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" // TweetTable is the table that holds the tweet relation/edge. TweetTable = "likes" // TweetInverseTable is the table name for the Tweet entity. // It exists in this package in order to avoid circular dependency with the "tweet" package. TweetInverseTable = "tweets" // TweetColumn is the table column denoting the tweet relation/edge. TweetColumn = "tweet_id" )
Variables ¶
var ( Hooks [1]ent.Hook Policy ent.Policy // DefaultCreateTime holds the default value on creation for the "create_time" field. DefaultCreateTime func() time.Time // DefaultUpdateTime holds the default value on creation for the "update_time" field. DefaultUpdateTime func() time.Time // UpdateDefaultUpdateTime holds the default value on update for the "update_time" field. UpdateDefaultUpdateTime func() time.Time // DefaultLikedAt holds the default value on creation for the "liked_at" field. DefaultLikedAt func() time.Time )
Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:
import _ "github.com/lrstanley/ent-bug-edge-schema/internal/database/ent/runtime"
var Columns = []string{ FieldCreateTime, FieldUpdateTime, FieldLikedAt, FieldUserID, FieldTweetID, }
Columns holds all SQL columns for like fields.
Functions ¶
func CreateTime ¶
CreateTime applies equality check predicate on the "create_time" field. It's identical to CreateTimeEQ.
func CreateTimeEQ ¶
CreateTimeEQ applies the EQ predicate on the "create_time" field.
func CreateTimeGT ¶
CreateTimeGT applies the GT predicate on the "create_time" field.
func CreateTimeGTE ¶
CreateTimeGTE applies the GTE predicate on the "create_time" field.
func CreateTimeIn ¶
CreateTimeIn applies the In predicate on the "create_time" field.
func CreateTimeLT ¶
CreateTimeLT applies the LT predicate on the "create_time" field.
func CreateTimeLTE ¶
CreateTimeLTE applies the LTE predicate on the "create_time" field.
func CreateTimeNEQ ¶
CreateTimeNEQ applies the NEQ predicate on the "create_time" field.
func CreateTimeNotIn ¶
CreateTimeNotIn applies the NotIn predicate on the "create_time" field.
func HasTweetWith ¶
HasTweetWith applies the HasEdge predicate on the "tweet" 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 LikedAt ¶
LikedAt applies equality check predicate on the "liked_at" field. It's identical to LikedAtEQ.
func LikedAtGTE ¶
LikedAtGTE applies the GTE predicate on the "liked_at" field.
func LikedAtLTE ¶
LikedAtLTE applies the LTE predicate on the "liked_at" field.
func LikedAtNEQ ¶
LikedAtNEQ applies the NEQ predicate on the "liked_at" field.
func LikedAtNotIn ¶
LikedAtNotIn applies the NotIn predicate on the "liked_at" field.
func TweetID ¶
TweetID applies equality check predicate on the "tweet_id" field. It's identical to TweetIDEQ.
func TweetIDNEQ ¶
TweetIDNEQ applies the NEQ predicate on the "tweet_id" field.
func TweetIDNotIn ¶
TweetIDNotIn applies the NotIn predicate on the "tweet_id" field.
func UpdateTime ¶
UpdateTime applies equality check predicate on the "update_time" field. It's identical to UpdateTimeEQ.
func UpdateTimeEQ ¶
UpdateTimeEQ applies the EQ predicate on the "update_time" field.
func UpdateTimeGT ¶
UpdateTimeGT applies the GT predicate on the "update_time" field.
func UpdateTimeGTE ¶
UpdateTimeGTE applies the GTE predicate on the "update_time" field.
func UpdateTimeIn ¶
UpdateTimeIn applies the In predicate on the "update_time" field.
func UpdateTimeLT ¶
UpdateTimeLT applies the LT predicate on the "update_time" field.
func UpdateTimeLTE ¶
UpdateTimeLTE applies the LTE predicate on the "update_time" field.
func UpdateTimeNEQ ¶
UpdateTimeNEQ applies the NEQ predicate on the "update_time" field.
func UpdateTimeNotIn ¶
UpdateTimeNotIn applies the NotIn predicate on the "update_time" field.
func UserID ¶
UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
func UserIDNotIn ¶
UserIDNotIn applies the NotIn predicate on the "user_id" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
type OrderOption ¶
OrderOption defines the ordering options for the Like queries.
func ByCreateTime ¶
func ByCreateTime(opts ...sql.OrderTermOption) OrderOption
ByCreateTime orders the results by the create_time field.
func ByLikedAt ¶
func ByLikedAt(opts ...sql.OrderTermOption) OrderOption
ByLikedAt orders the results by the liked_at field.
func ByTweetField ¶
func ByTweetField(field string, opts ...sql.OrderTermOption) OrderOption
ByTweetField orders the results by tweet field.
func ByTweetID ¶
func ByTweetID(opts ...sql.OrderTermOption) OrderOption
ByTweetID orders the results by the tweet_id field.
func ByUpdateTime ¶
func ByUpdateTime(opts ...sql.OrderTermOption) OrderOption
ByUpdateTime orders the results by the update_time field.
func ByUserField ¶
func ByUserField(field string, opts ...sql.OrderTermOption) OrderOption
ByUserField orders the results by user field.
func ByUserID ¶
func ByUserID(opts ...sql.OrderTermOption) OrderOption
ByUserID orders the results by the user_id field.