playlist

package
v1.4.3 Latest Latest
Warning

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

Go to latest
Published: Sep 30, 2023 License: GPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the playlist type in the database.
	Label = "playlist"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldDescription holds the string denoting the description field in the database.
	FieldDescription = "description"
	// FieldThumbnailPath holds the string denoting the thumbnail_path field in the database.
	FieldThumbnailPath = "thumbnail_path"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeVods holds the string denoting the vods edge name in mutations.
	EdgeVods = "vods"
	// Table holds the table name of the playlist in the database.
	Table = "playlists"
	// VodsTable is the table that holds the vods relation/edge. The primary key declared below.
	VodsTable = "playlist_vods"
	// VodsInverseTable is the table name for the Vod entity.
	// It exists in this package in order to avoid circular dependency with the "vod" package.
	VodsInverseTable = "vods"
)

Variables

View Source
var (
	// 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
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for playlist fields.

View Source
var (
	// VodsPrimaryKey and VodsColumn2 are the table columns denoting the
	// primary key for the vods relation (M2M).
	VodsPrimaryKey = []string{"playlist_id", "vod_id"}
)

Functions

func And

func And(predicates ...predicate.Playlist) predicate.Playlist

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.Playlist

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Playlist

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Playlist

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Playlist

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Playlist

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Playlist

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Playlist

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

func CreatedAtNotIn

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

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

func Description

func Description(v string) predicate.Playlist

Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.

func DescriptionContains

func DescriptionContains(v string) predicate.Playlist

DescriptionContains applies the Contains predicate on the "description" field.

func DescriptionContainsFold

func DescriptionContainsFold(v string) predicate.Playlist

DescriptionContainsFold applies the ContainsFold predicate on the "description" field.

func DescriptionEQ

func DescriptionEQ(v string) predicate.Playlist

DescriptionEQ applies the EQ predicate on the "description" field.

func DescriptionEqualFold

func DescriptionEqualFold(v string) predicate.Playlist

DescriptionEqualFold applies the EqualFold predicate on the "description" field.

func DescriptionGT

func DescriptionGT(v string) predicate.Playlist

DescriptionGT applies the GT predicate on the "description" field.

func DescriptionGTE

func DescriptionGTE(v string) predicate.Playlist

DescriptionGTE applies the GTE predicate on the "description" field.

func DescriptionHasPrefix

func DescriptionHasPrefix(v string) predicate.Playlist

DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.

func DescriptionHasSuffix

func DescriptionHasSuffix(v string) predicate.Playlist

DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.

func DescriptionIn

func DescriptionIn(vs ...string) predicate.Playlist

DescriptionIn applies the In predicate on the "description" field.

func DescriptionIsNil

func DescriptionIsNil() predicate.Playlist

DescriptionIsNil applies the IsNil predicate on the "description" field.

func DescriptionLT

func DescriptionLT(v string) predicate.Playlist

DescriptionLT applies the LT predicate on the "description" field.

func DescriptionLTE

func DescriptionLTE(v string) predicate.Playlist

DescriptionLTE applies the LTE predicate on the "description" field.

func DescriptionNEQ

func DescriptionNEQ(v string) predicate.Playlist

DescriptionNEQ applies the NEQ predicate on the "description" field.

func DescriptionNotIn

func DescriptionNotIn(vs ...string) predicate.Playlist

DescriptionNotIn applies the NotIn predicate on the "description" field.

func DescriptionNotNil

func DescriptionNotNil() predicate.Playlist

DescriptionNotNil applies the NotNil predicate on the "description" field.

func HasVods

func HasVods() predicate.Playlist

HasVods applies the HasEdge predicate on the "vods" edge.

func HasVodsWith

func HasVodsWith(preds ...predicate.Vod) predicate.Playlist

HasVodsWith applies the HasEdge predicate on the "vods" edge with a given conditions (other predicates).

func ID

func ID(id uuid.UUID) predicate.Playlist

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.Playlist

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.Playlist

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.Playlist

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.Playlist

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.Playlist

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.Playlist

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.Playlist

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.Playlist

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.Playlist

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Playlist

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Playlist

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Playlist

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Playlist

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Playlist

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Playlist

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Playlist

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Playlist

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Playlist

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Playlist

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Playlist

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Playlist

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Playlist

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Playlist) predicate.Playlist

Or groups predicates with the OR operator between them.

func ThumbnailPath

func ThumbnailPath(v string) predicate.Playlist

ThumbnailPath applies equality check predicate on the "thumbnail_path" field. It's identical to ThumbnailPathEQ.

func ThumbnailPathContains

func ThumbnailPathContains(v string) predicate.Playlist

ThumbnailPathContains applies the Contains predicate on the "thumbnail_path" field.

func ThumbnailPathContainsFold

func ThumbnailPathContainsFold(v string) predicate.Playlist

ThumbnailPathContainsFold applies the ContainsFold predicate on the "thumbnail_path" field.

func ThumbnailPathEQ

func ThumbnailPathEQ(v string) predicate.Playlist

ThumbnailPathEQ applies the EQ predicate on the "thumbnail_path" field.

func ThumbnailPathEqualFold

func ThumbnailPathEqualFold(v string) predicate.Playlist

ThumbnailPathEqualFold applies the EqualFold predicate on the "thumbnail_path" field.

func ThumbnailPathGT

func ThumbnailPathGT(v string) predicate.Playlist

ThumbnailPathGT applies the GT predicate on the "thumbnail_path" field.

func ThumbnailPathGTE

func ThumbnailPathGTE(v string) predicate.Playlist

ThumbnailPathGTE applies the GTE predicate on the "thumbnail_path" field.

func ThumbnailPathHasPrefix

func ThumbnailPathHasPrefix(v string) predicate.Playlist

ThumbnailPathHasPrefix applies the HasPrefix predicate on the "thumbnail_path" field.

func ThumbnailPathHasSuffix

func ThumbnailPathHasSuffix(v string) predicate.Playlist

ThumbnailPathHasSuffix applies the HasSuffix predicate on the "thumbnail_path" field.

func ThumbnailPathIn

func ThumbnailPathIn(vs ...string) predicate.Playlist

ThumbnailPathIn applies the In predicate on the "thumbnail_path" field.

func ThumbnailPathIsNil

func ThumbnailPathIsNil() predicate.Playlist

ThumbnailPathIsNil applies the IsNil predicate on the "thumbnail_path" field.

func ThumbnailPathLT

func ThumbnailPathLT(v string) predicate.Playlist

ThumbnailPathLT applies the LT predicate on the "thumbnail_path" field.

func ThumbnailPathLTE

func ThumbnailPathLTE(v string) predicate.Playlist

ThumbnailPathLTE applies the LTE predicate on the "thumbnail_path" field.

func ThumbnailPathNEQ

func ThumbnailPathNEQ(v string) predicate.Playlist

ThumbnailPathNEQ applies the NEQ predicate on the "thumbnail_path" field.

func ThumbnailPathNotIn

func ThumbnailPathNotIn(vs ...string) predicate.Playlist

ThumbnailPathNotIn applies the NotIn predicate on the "thumbnail_path" field.

func ThumbnailPathNotNil

func ThumbnailPathNotNil() predicate.Playlist

ThumbnailPathNotNil applies the NotNil predicate on the "thumbnail_path" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Playlist

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Playlist

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Playlist

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Playlist

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.Playlist

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Playlist

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Playlist

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Playlist

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.Playlist

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

type OrderOption added in v1.2.12

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Playlist queries.

func ByCreatedAt added in v1.2.12

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByDescription added in v1.2.12

func ByDescription(opts ...sql.OrderTermOption) OrderOption

ByDescription orders the results by the description field.

func ByID added in v1.2.12

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByName added in v1.2.12

func ByName(opts ...sql.OrderTermOption) OrderOption

ByName orders the results by the name field.

func ByThumbnailPath added in v1.2.12

func ByThumbnailPath(opts ...sql.OrderTermOption) OrderOption

ByThumbnailPath orders the results by the thumbnail_path field.

func ByUpdatedAt added in v1.2.12

func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption

ByUpdatedAt orders the results by the updated_at field.

func ByVods added in v1.2.12

func ByVods(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption

ByVods orders the results by vods terms.

func ByVodsCount added in v1.2.12

func ByVodsCount(opts ...sql.OrderTermOption) OrderOption

ByVodsCount orders the results by vods count.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL