Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.TweetLike) predicate.TweetLike
- func HasTweet() predicate.TweetLike
- func HasTweetWith(preds ...predicate.Tweet) predicate.TweetLike
- func HasUser() predicate.TweetLike
- func HasUserWith(preds ...predicate.User) predicate.TweetLike
- func LikedAt(v time.Time) predicate.TweetLike
- func LikedAtEQ(v time.Time) predicate.TweetLike
- func LikedAtGT(v time.Time) predicate.TweetLike
- func LikedAtGTE(v time.Time) predicate.TweetLike
- func LikedAtIn(vs ...time.Time) predicate.TweetLike
- func LikedAtLT(v time.Time) predicate.TweetLike
- func LikedAtLTE(v time.Time) predicate.TweetLike
- func LikedAtNEQ(v time.Time) predicate.TweetLike
- func LikedAtNotIn(vs ...time.Time) predicate.TweetLike
- func Not(p predicate.TweetLike) predicate.TweetLike
- func Or(predicates ...predicate.TweetLike) predicate.TweetLike
- func TweetID(v int) predicate.TweetLike
- func TweetIDEQ(v int) predicate.TweetLike
- func TweetIDIn(vs ...int) predicate.TweetLike
- func TweetIDNEQ(v int) predicate.TweetLike
- func TweetIDNotIn(vs ...int) predicate.TweetLike
- func UserID(v int) predicate.TweetLike
- func UserIDEQ(v int) predicate.TweetLike
- func UserIDIn(vs ...int) predicate.TweetLike
- func UserIDNEQ(v int) predicate.TweetLike
- func UserIDNotIn(vs ...int) predicate.TweetLike
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the tweetlike type in the database. Label = "tweet_like" // 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" // EdgeTweet holds the string denoting the tweet edge name in mutations. EdgeTweet = "tweet" // EdgeUser holds the string denoting the user edge name in mutations. EdgeUser = "user" // TweetFieldID holds the string denoting the ID field of the Tweet. TweetFieldID = "id" // UserFieldID holds the string denoting the ID field of the User. UserFieldID = "id" // Table holds the table name of the tweetlike in the database. Table = "tweet_likes" // TweetTable is the table that holds the tweet relation/edge. TweetTable = "tweet_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" // UserTable is the table that holds the user relation/edge. UserTable = "tweet_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" )
Variables ¶
var ( Hooks [1]ent.Hook Policy ent.Policy // 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 _ "entgo.io/ent/entc/integration/edgeschema/ent/runtime"
var Columns = []string{ FieldLikedAt, FieldUserID, FieldTweetID, }
Columns holds all SQL columns for tweetlike fields.
Functions ¶
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 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 ¶
This section is empty.