Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Manga) predicate.Manga
- func HasChapters() predicate.Manga
- func HasChaptersWith(preds ...predicate.Chapter) predicate.Manga
- func ID(id int) predicate.Manga
- func IDEQ(id int) predicate.Manga
- func IDGT(id int) predicate.Manga
- func IDGTE(id int) predicate.Manga
- func IDIn(ids ...int) predicate.Manga
- func IDLT(id int) predicate.Manga
- func IDLTE(id int) predicate.Manga
- func IDNEQ(id int) predicate.Manga
- func IDNotIn(ids ...int) predicate.Manga
- func MangaID(v string) predicate.Manga
- func MangaIDContains(v string) predicate.Manga
- func MangaIDContainsFold(v string) predicate.Manga
- func MangaIDEQ(v string) predicate.Manga
- func MangaIDEqualFold(v string) predicate.Manga
- func MangaIDGT(v string) predicate.Manga
- func MangaIDGTE(v string) predicate.Manga
- func MangaIDHasPrefix(v string) predicate.Manga
- func MangaIDHasSuffix(v string) predicate.Manga
- func MangaIDIn(vs ...string) predicate.Manga
- func MangaIDLT(v string) predicate.Manga
- func MangaIDLTE(v string) predicate.Manga
- func MangaIDNEQ(v string) predicate.Manga
- func MangaIDNotIn(vs ...string) predicate.Manga
- func Mapping(v string) predicate.Manga
- func MappingContains(v string) predicate.Manga
- func MappingContainsFold(v string) predicate.Manga
- func MappingEQ(v string) predicate.Manga
- func MappingEqualFold(v string) predicate.Manga
- func MappingGT(v string) predicate.Manga
- func MappingGTE(v string) predicate.Manga
- func MappingHasPrefix(v string) predicate.Manga
- func MappingHasSuffix(v string) predicate.Manga
- func MappingIn(vs ...string) predicate.Manga
- func MappingLT(v string) predicate.Manga
- func MappingLTE(v string) predicate.Manga
- func MappingNEQ(v string) predicate.Manga
- func MappingNotIn(vs ...string) predicate.Manga
- func Not(p predicate.Manga) predicate.Manga
- func Or(predicates ...predicate.Manga) predicate.Manga
- func RegisteredOn(v time.Time) predicate.Manga
- func RegisteredOnEQ(v time.Time) predicate.Manga
- func RegisteredOnGT(v time.Time) predicate.Manga
- func RegisteredOnGTE(v time.Time) predicate.Manga
- func RegisteredOnIn(vs ...time.Time) predicate.Manga
- func RegisteredOnLT(v time.Time) predicate.Manga
- func RegisteredOnLTE(v time.Time) predicate.Manga
- func RegisteredOnNEQ(v time.Time) predicate.Manga
- func RegisteredOnNotIn(vs ...time.Time) predicate.Manga
- func Source(v string) predicate.Manga
- func SourceContains(v string) predicate.Manga
- func SourceContainsFold(v string) predicate.Manga
- func SourceEQ(v string) predicate.Manga
- func SourceEqualFold(v string) predicate.Manga
- func SourceGT(v string) predicate.Manga
- func SourceGTE(v string) predicate.Manga
- func SourceHasPrefix(v string) predicate.Manga
- func SourceHasSuffix(v string) predicate.Manga
- func SourceIn(vs ...string) predicate.Manga
- func SourceLT(v string) predicate.Manga
- func SourceLTE(v string) predicate.Manga
- func SourceNEQ(v string) predicate.Manga
- func SourceNotIn(vs ...string) predicate.Manga
- func Title(v string) predicate.Manga
- func TitleContains(v string) predicate.Manga
- func TitleContainsFold(v string) predicate.Manga
- func TitleEQ(v string) predicate.Manga
- func TitleEqualFold(v string) predicate.Manga
- func TitleGT(v string) predicate.Manga
- func TitleGTE(v string) predicate.Manga
- func TitleHasPrefix(v string) predicate.Manga
- func TitleHasSuffix(v string) predicate.Manga
- func TitleIn(vs ...string) predicate.Manga
- func TitleLT(v string) predicate.Manga
- func TitleLTE(v string) predicate.Manga
- func TitleNEQ(v string) predicate.Manga
- func TitleNotIn(vs ...string) predicate.Manga
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the manga type in the database. Label = "manga" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldMangaID holds the string denoting the mangaid field in the database. FieldMangaID = "manga_id" // FieldSource holds the string denoting the source field in the database. FieldSource = "source" // FieldTitle holds the string denoting the title field in the database. FieldTitle = "title" // FieldMapping holds the string denoting the mapping field in the database. FieldMapping = "mapping" // FieldRegisteredOn holds the string denoting the registeredon field in the database. FieldRegisteredOn = "registered_on" // FieldFilteredGroups holds the string denoting the filteredgroups field in the database. FieldFilteredGroups = "filtered_groups" // EdgeChapters holds the string denoting the chapters edge name in mutations. EdgeChapters = "Chapters" // Table holds the table name of the manga in the database. Table = "mangas" // ChaptersTable is the table that holds the Chapters relation/edge. ChaptersTable = "chapters" // ChaptersInverseTable is the table name for the Chapter entity. // It exists in this package in order to avoid circular dependency with the "chapter" package. ChaptersInverseTable = "chapters" // ChaptersColumn is the table column denoting the Chapters relation/edge. ChaptersColumn = "manga_chapters" )
Variables ¶
var Columns = []string{ FieldID, FieldMangaID, FieldSource, FieldTitle, FieldMapping, FieldRegisteredOn, FieldFilteredGroups, }
Columns holds all SQL columns for manga fields.
Functions ¶
func HasChapters ¶
HasChapters applies the HasEdge predicate on the "Chapters" edge.
func HasChaptersWith ¶
HasChaptersWith applies the HasEdge predicate on the "Chapters" edge with a given conditions (other predicates).
func MangaID ¶
MangaID applies equality check predicate on the "MangaID" field. It's identical to MangaIDEQ.
func MangaIDContains ¶
MangaIDContains applies the Contains predicate on the "MangaID" field.
func MangaIDContainsFold ¶
MangaIDContainsFold applies the ContainsFold predicate on the "MangaID" field.
func MangaIDEqualFold ¶
MangaIDEqualFold applies the EqualFold predicate on the "MangaID" field.
func MangaIDGTE ¶
MangaIDGTE applies the GTE predicate on the "MangaID" field.
func MangaIDHasPrefix ¶
MangaIDHasPrefix applies the HasPrefix predicate on the "MangaID" field.
func MangaIDHasSuffix ¶
MangaIDHasSuffix applies the HasSuffix predicate on the "MangaID" field.
func MangaIDLTE ¶
MangaIDLTE applies the LTE predicate on the "MangaID" field.
func MangaIDNEQ ¶
MangaIDNEQ applies the NEQ predicate on the "MangaID" field.
func MangaIDNotIn ¶
MangaIDNotIn applies the NotIn predicate on the "MangaID" field.
func Mapping ¶
Mapping applies equality check predicate on the "Mapping" field. It's identical to MappingEQ.
func MappingContains ¶
MappingContains applies the Contains predicate on the "Mapping" field.
func MappingContainsFold ¶
MappingContainsFold applies the ContainsFold predicate on the "Mapping" field.
func MappingEqualFold ¶
MappingEqualFold applies the EqualFold predicate on the "Mapping" field.
func MappingGTE ¶
MappingGTE applies the GTE predicate on the "Mapping" field.
func MappingHasPrefix ¶
MappingHasPrefix applies the HasPrefix predicate on the "Mapping" field.
func MappingHasSuffix ¶
MappingHasSuffix applies the HasSuffix predicate on the "Mapping" field.
func MappingLTE ¶
MappingLTE applies the LTE predicate on the "Mapping" field.
func MappingNEQ ¶
MappingNEQ applies the NEQ predicate on the "Mapping" field.
func MappingNotIn ¶
MappingNotIn applies the NotIn predicate on the "Mapping" field.
func RegisteredOn ¶
RegisteredOn applies equality check predicate on the "RegisteredOn" field. It's identical to RegisteredOnEQ.
func RegisteredOnEQ ¶
RegisteredOnEQ applies the EQ predicate on the "RegisteredOn" field.
func RegisteredOnGT ¶
RegisteredOnGT applies the GT predicate on the "RegisteredOn" field.
func RegisteredOnGTE ¶
RegisteredOnGTE applies the GTE predicate on the "RegisteredOn" field.
func RegisteredOnIn ¶
RegisteredOnIn applies the In predicate on the "RegisteredOn" field.
func RegisteredOnLT ¶
RegisteredOnLT applies the LT predicate on the "RegisteredOn" field.
func RegisteredOnLTE ¶
RegisteredOnLTE applies the LTE predicate on the "RegisteredOn" field.
func RegisteredOnNEQ ¶
RegisteredOnNEQ applies the NEQ predicate on the "RegisteredOn" field.
func RegisteredOnNotIn ¶
RegisteredOnNotIn applies the NotIn predicate on the "RegisteredOn" field.
func Source ¶
Source applies equality check predicate on the "Source" field. It's identical to SourceEQ.
func SourceContains ¶
SourceContains applies the Contains predicate on the "Source" field.
func SourceContainsFold ¶
SourceContainsFold applies the ContainsFold predicate on the "Source" field.
func SourceEqualFold ¶
SourceEqualFold applies the EqualFold predicate on the "Source" field.
func SourceHasPrefix ¶
SourceHasPrefix applies the HasPrefix predicate on the "Source" field.
func SourceHasSuffix ¶
SourceHasSuffix applies the HasSuffix predicate on the "Source" field.
func SourceNotIn ¶
SourceNotIn applies the NotIn predicate on the "Source" field.
func Title ¶
Title applies equality check predicate on the "Title" field. It's identical to TitleEQ.
func TitleContains ¶
TitleContains applies the Contains predicate on the "Title" field.
func TitleContainsFold ¶
TitleContainsFold applies the ContainsFold predicate on the "Title" field.
func TitleEqualFold ¶
TitleEqualFold applies the EqualFold predicate on the "Title" field.
func TitleHasPrefix ¶
TitleHasPrefix applies the HasPrefix predicate on the "Title" field.
func TitleHasSuffix ¶
TitleHasSuffix applies the HasSuffix predicate on the "Title" field.
func TitleNotIn ¶
TitleNotIn applies the NotIn predicate on the "Title" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.