qoute_retweet_feature

package
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 29, 2023 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the qoute_retweet_feature type in the database.
	Label = "qoute_retweet_feature"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldFromAccountID holds the string denoting the from_account_id field in the database.
	FieldFromAccountID = "from_account_id"
	// FieldQouteRetweet holds the string denoting the qoute_retweet field in the database.
	FieldQouteRetweet = "qoute_retweet"
	// FieldQoute holds the string denoting the qoute field in the database.
	FieldQoute = "qoute"
	// FieldPostID holds the string denoting the post_id field in the database.
	FieldPostID = "post_id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// Table holds the table name of the qoute_retweet_feature in the database.
	Table = "qoute_retweet_features"
)

Variables

View Source
var (
	// DefaultQouteRetweet holds the default value on creation for the "qoute_retweet" field.
	DefaultQouteRetweet bool
	// QouteValidator is a validator for the "qoute" field. It is called by the builders before save.
	QouteValidator func(string) error
)

Columns holds all SQL columns for qoute_retweet_feature fields.

Functions

func And

And groups predicates with the AND operator between them.

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

func CreatedAtGTE(v time.Time) predicate.Qoute_retweet_feature

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

func CreatedAtIn

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

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

func CreatedAtLT

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Qoute_retweet_feature

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Qoute_retweet_feature

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

func CreatedAtNotIn

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

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

func FromAccountID

func FromAccountID(v int64) predicate.Qoute_retweet_feature

FromAccountID applies equality check predicate on the "from_account_id" field. It's identical to FromAccountIDEQ.

func FromAccountIDEQ

func FromAccountIDEQ(v int64) predicate.Qoute_retweet_feature

FromAccountIDEQ applies the EQ predicate on the "from_account_id" field.

func FromAccountIDGT

func FromAccountIDGT(v int64) predicate.Qoute_retweet_feature

FromAccountIDGT applies the GT predicate on the "from_account_id" field.

func FromAccountIDGTE

func FromAccountIDGTE(v int64) predicate.Qoute_retweet_feature

FromAccountIDGTE applies the GTE predicate on the "from_account_id" field.

func FromAccountIDIn

func FromAccountIDIn(vs ...int64) predicate.Qoute_retweet_feature

FromAccountIDIn applies the In predicate on the "from_account_id" field.

func FromAccountIDLT

func FromAccountIDLT(v int64) predicate.Qoute_retweet_feature

FromAccountIDLT applies the LT predicate on the "from_account_id" field.

func FromAccountIDLTE

func FromAccountIDLTE(v int64) predicate.Qoute_retweet_feature

FromAccountIDLTE applies the LTE predicate on the "from_account_id" field.

func FromAccountIDNEQ

func FromAccountIDNEQ(v int64) predicate.Qoute_retweet_feature

FromAccountIDNEQ applies the NEQ predicate on the "from_account_id" field.

func FromAccountIDNotIn

func FromAccountIDNotIn(vs ...int64) predicate.Qoute_retweet_feature

FromAccountIDNotIn applies the NotIn predicate on the "from_account_id" field.

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Qoute_retweet_feature

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Qoute_retweet_feature

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func PostID

PostID applies equality check predicate on the "post_id" field. It's identical to PostIDEQ.

func PostIDEQ

PostIDEQ applies the EQ predicate on the "post_id" field.

func PostIDGT

PostIDGT applies the GT predicate on the "post_id" field.

func PostIDGTE

PostIDGTE applies the GTE predicate on the "post_id" field.

func PostIDIn

func PostIDIn(vs ...uuid.UUID) predicate.Qoute_retweet_feature

PostIDIn applies the In predicate on the "post_id" field.

func PostIDLT

PostIDLT applies the LT predicate on the "post_id" field.

func PostIDLTE

PostIDLTE applies the LTE predicate on the "post_id" field.

func PostIDNEQ

PostIDNEQ applies the NEQ predicate on the "post_id" field.

func PostIDNotIn

func PostIDNotIn(vs ...uuid.UUID) predicate.Qoute_retweet_feature

PostIDNotIn applies the NotIn predicate on the "post_id" field.

func Qoute

Qoute applies equality check predicate on the "qoute" field. It's identical to QouteEQ.

func QouteContains

func QouteContains(v string) predicate.Qoute_retweet_feature

QouteContains applies the Contains predicate on the "qoute" field.

func QouteContainsFold

func QouteContainsFold(v string) predicate.Qoute_retweet_feature

QouteContainsFold applies the ContainsFold predicate on the "qoute" field.

func QouteEQ

QouteEQ applies the EQ predicate on the "qoute" field.

func QouteEqualFold

func QouteEqualFold(v string) predicate.Qoute_retweet_feature

QouteEqualFold applies the EqualFold predicate on the "qoute" field.

func QouteGT

QouteGT applies the GT predicate on the "qoute" field.

func QouteGTE

QouteGTE applies the GTE predicate on the "qoute" field.

func QouteHasPrefix

func QouteHasPrefix(v string) predicate.Qoute_retweet_feature

QouteHasPrefix applies the HasPrefix predicate on the "qoute" field.

func QouteHasSuffix

func QouteHasSuffix(v string) predicate.Qoute_retweet_feature

QouteHasSuffix applies the HasSuffix predicate on the "qoute" field.

func QouteIn

func QouteIn(vs ...string) predicate.Qoute_retweet_feature

QouteIn applies the In predicate on the "qoute" field.

func QouteLT

QouteLT applies the LT predicate on the "qoute" field.

func QouteLTE

QouteLTE applies the LTE predicate on the "qoute" field.

func QouteNEQ

QouteNEQ applies the NEQ predicate on the "qoute" field.

func QouteNotIn

func QouteNotIn(vs ...string) predicate.Qoute_retweet_feature

QouteNotIn applies the NotIn predicate on the "qoute" field.

func QouteRetweet

func QouteRetweet(v bool) predicate.Qoute_retweet_feature

QouteRetweet applies equality check predicate on the "qoute_retweet" field. It's identical to QouteRetweetEQ.

func QouteRetweetEQ

func QouteRetweetEQ(v bool) predicate.Qoute_retweet_feature

QouteRetweetEQ applies the EQ predicate on the "qoute_retweet" field.

func QouteRetweetNEQ

func QouteRetweetNEQ(v bool) predicate.Qoute_retweet_feature

QouteRetweetNEQ applies the NEQ predicate on the "qoute_retweet" 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