Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.BookAuthor) predicate.BookAuthor
- func FullName(v string) predicate.BookAuthor
- func FullNameContains(v string) predicate.BookAuthor
- func FullNameContainsFold(v string) predicate.BookAuthor
- func FullNameEQ(v string) predicate.BookAuthor
- func FullNameEqualFold(v string) predicate.BookAuthor
- func FullNameGT(v string) predicate.BookAuthor
- func FullNameGTE(v string) predicate.BookAuthor
- func FullNameHasPrefix(v string) predicate.BookAuthor
- func FullNameHasSuffix(v string) predicate.BookAuthor
- func FullNameIn(vs ...string) predicate.BookAuthor
- func FullNameLT(v string) predicate.BookAuthor
- func FullNameLTE(v string) predicate.BookAuthor
- func FullNameNEQ(v string) predicate.BookAuthor
- func FullNameNotIn(vs ...string) predicate.BookAuthor
- func HasBooks() predicate.BookAuthor
- func HasBooksWith(preds ...predicate.Book) predicate.BookAuthor
- func ID(id uuid.UUID) predicate.BookAuthor
- func IDEQ(id uuid.UUID) predicate.BookAuthor
- func IDGT(id uuid.UUID) predicate.BookAuthor
- func IDGTE(id uuid.UUID) predicate.BookAuthor
- func IDIn(ids ...uuid.UUID) predicate.BookAuthor
- func IDLT(id uuid.UUID) predicate.BookAuthor
- func IDLTE(id uuid.UUID) predicate.BookAuthor
- func IDNEQ(id uuid.UUID) predicate.BookAuthor
- func IDNotIn(ids ...uuid.UUID) predicate.BookAuthor
- func Not(p predicate.BookAuthor) predicate.BookAuthor
- func Or(predicates ...predicate.BookAuthor) predicate.BookAuthor
- func ValidColumn(column string) bool
- type OrderOption
Constants ¶
const ( // Label holds the string label denoting the bookauthor type in the database. Label = "book_author" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldFullName holds the string denoting the full_name field in the database. FieldFullName = "full_name" // EdgeBooks holds the string denoting the books edge name in mutations. EdgeBooks = "books" // Table holds the table name of the bookauthor in the database. Table = "book_authors" // BooksTable is the table that holds the books relation/edge. The primary key declared below. BooksTable = "book_author_books" // BooksInverseTable is the table name for the Book entity. // It exists in this package in order to avoid circular dependency with the "book" package. BooksInverseTable = "books" )
Variables ¶
var ( // BooksPrimaryKey and BooksColumn2 are the table columns denoting the // primary key for the books relation (M2M). BooksPrimaryKey = []string{"book_author_id", "book_id"} )
var Columns = []string{ FieldID, FieldFullName, }
Columns holds all SQL columns for bookauthor fields.
Functions ¶
func And ¶
func And(predicates ...predicate.BookAuthor) predicate.BookAuthor
And groups predicates with the AND operator between them.
func FullName ¶
func FullName(v string) predicate.BookAuthor
FullName applies equality check predicate on the "full_name" field. It's identical to FullNameEQ.
func FullNameContains ¶
func FullNameContains(v string) predicate.BookAuthor
FullNameContains applies the Contains predicate on the "full_name" field.
func FullNameContainsFold ¶
func FullNameContainsFold(v string) predicate.BookAuthor
FullNameContainsFold applies the ContainsFold predicate on the "full_name" field.
func FullNameEQ ¶
func FullNameEQ(v string) predicate.BookAuthor
FullNameEQ applies the EQ predicate on the "full_name" field.
func FullNameEqualFold ¶
func FullNameEqualFold(v string) predicate.BookAuthor
FullNameEqualFold applies the EqualFold predicate on the "full_name" field.
func FullNameGT ¶
func FullNameGT(v string) predicate.BookAuthor
FullNameGT applies the GT predicate on the "full_name" field.
func FullNameGTE ¶
func FullNameGTE(v string) predicate.BookAuthor
FullNameGTE applies the GTE predicate on the "full_name" field.
func FullNameHasPrefix ¶
func FullNameHasPrefix(v string) predicate.BookAuthor
FullNameHasPrefix applies the HasPrefix predicate on the "full_name" field.
func FullNameHasSuffix ¶
func FullNameHasSuffix(v string) predicate.BookAuthor
FullNameHasSuffix applies the HasSuffix predicate on the "full_name" field.
func FullNameIn ¶
func FullNameIn(vs ...string) predicate.BookAuthor
FullNameIn applies the In predicate on the "full_name" field.
func FullNameLT ¶
func FullNameLT(v string) predicate.BookAuthor
FullNameLT applies the LT predicate on the "full_name" field.
func FullNameLTE ¶
func FullNameLTE(v string) predicate.BookAuthor
FullNameLTE applies the LTE predicate on the "full_name" field.
func FullNameNEQ ¶
func FullNameNEQ(v string) predicate.BookAuthor
FullNameNEQ applies the NEQ predicate on the "full_name" field.
func FullNameNotIn ¶
func FullNameNotIn(vs ...string) predicate.BookAuthor
FullNameNotIn applies the NotIn predicate on the "full_name" field.
func HasBooks ¶
func HasBooks() predicate.BookAuthor
HasBooks applies the HasEdge predicate on the "books" edge.
func HasBooksWith ¶
func HasBooksWith(preds ...predicate.Book) predicate.BookAuthor
HasBooksWith applies the HasEdge predicate on the "books" edge with a given conditions (other predicates).
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.BookAuthor
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.BookAuthor
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.BookAuthor
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.BookAuthor
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.BookAuthor
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.BookAuthor
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.BookAuthor
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.BookAuthor
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.BookAuthor) predicate.BookAuthor
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.BookAuthor) predicate.BookAuthor
Or groups predicates with the OR operator between them.
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 BookAuthor queries.
func ByBooks ¶
func ByBooks(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption
ByBooks orders the results by books terms.
func ByBooksCount ¶
func ByBooksCount(opts ...sql.OrderTermOption) OrderOption
ByBooksCount orders the results by books count.
func ByFullName ¶
func ByFullName(opts ...sql.OrderTermOption) OrderOption
ByFullName orders the results by the full_name field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.