Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Department) predicate.Department
- func Code(v string) predicate.Department
- func CodeContains(v string) predicate.Department
- func CodeContainsFold(v string) predicate.Department
- func CodeEQ(v string) predicate.Department
- func CodeEqualFold(v string) predicate.Department
- func CodeGT(v string) predicate.Department
- func CodeGTE(v string) predicate.Department
- func CodeHasPrefix(v string) predicate.Department
- func CodeHasSuffix(v string) predicate.Department
- func CodeIn(vs ...string) predicate.Department
- func CodeLT(v string) predicate.Department
- func CodeLTE(v string) predicate.Department
- func CodeNEQ(v string) predicate.Department
- func CodeNotIn(vs ...string) predicate.Department
- func Description(v string) predicate.Department
- func DescriptionContains(v string) predicate.Department
- func DescriptionContainsFold(v string) predicate.Department
- func DescriptionEQ(v string) predicate.Department
- func DescriptionEqualFold(v string) predicate.Department
- func DescriptionGT(v string) predicate.Department
- func DescriptionGTE(v string) predicate.Department
- func DescriptionHasPrefix(v string) predicate.Department
- func DescriptionHasSuffix(v string) predicate.Department
- func DescriptionIn(vs ...string) predicate.Department
- func DescriptionLT(v string) predicate.Department
- func DescriptionLTE(v string) predicate.Department
- func DescriptionNEQ(v string) predicate.Department
- func DescriptionNotIn(vs ...string) predicate.Department
- func HasClass() predicate.Department
- func HasClassWith(preds ...predicate.Class) predicate.Department
- func HasMajor() predicate.Department
- func HasMajorWith(preds ...predicate.Major) predicate.Department
- func HasStudent() predicate.Department
- func HasStudentWith(preds ...predicate.Student) predicate.Department
- func ID(id int) predicate.Department
- func IDEQ(id int) predicate.Department
- func IDGT(id int) predicate.Department
- func IDGTE(id int) predicate.Department
- func IDIn(ids ...int) predicate.Department
- func IDLT(id int) predicate.Department
- func IDLTE(id int) predicate.Department
- func IDNEQ(id int) predicate.Department
- func IDNotIn(ids ...int) predicate.Department
- func Name(v string) predicate.Department
- func NameContains(v string) predicate.Department
- func NameContainsFold(v string) predicate.Department
- func NameEQ(v string) predicate.Department
- func NameEqualFold(v string) predicate.Department
- func NameGT(v string) predicate.Department
- func NameGTE(v string) predicate.Department
- func NameHasPrefix(v string) predicate.Department
- func NameHasSuffix(v string) predicate.Department
- func NameIn(vs ...string) predicate.Department
- func NameLT(v string) predicate.Department
- func NameLTE(v string) predicate.Department
- func NameNEQ(v string) predicate.Department
- func NameNotIn(vs ...string) predicate.Department
- func Not(p predicate.Department) predicate.Department
- func Or(predicates ...predicate.Department) predicate.Department
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the department type in the database. Label = "department" // 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" // FieldCode holds the string denoting the code field in the database. FieldCode = "code" // FieldDescription holds the string denoting the description field in the database. FieldDescription = "description" // EdgeMajor holds the string denoting the major edge name in mutations. EdgeMajor = "major" // EdgeClass holds the string denoting the class edge name in mutations. EdgeClass = "class" // EdgeStudent holds the string denoting the student edge name in mutations. EdgeStudent = "student" // Table holds the table name of the department in the database. Table = "departments" // MajorTable is the table that holds the major relation/edge. MajorTable = "majors" // MajorInverseTable is the table name for the Major entity. // It exists in this package in order to avoid circular dependency with the "major" package. MajorInverseTable = "majors" // MajorColumn is the table column denoting the major relation/edge. MajorColumn = "major_department" // ClassTable is the table that holds the class relation/edge. ClassTable = "classes" // ClassInverseTable is the table name for the Class entity. // It exists in this package in order to avoid circular dependency with the "class" package. ClassInverseTable = "classes" // ClassColumn is the table column denoting the class relation/edge. ClassColumn = "class_department" // StudentTable is the table that holds the student relation/edge. StudentTable = "students" // StudentInverseTable is the table name for the Student entity. // It exists in this package in order to avoid circular dependency with the "student" package. StudentInverseTable = "students" // StudentColumn is the table column denoting the student relation/edge. StudentColumn = "student_department" )
Variables ¶
var Columns = []string{ FieldID, FieldName, FieldCode, FieldDescription, }
Columns holds all SQL columns for department fields.
Functions ¶
func And ¶
func And(predicates ...predicate.Department) predicate.Department
And groups predicates with the AND operator between them.
func Code ¶
func Code(v string) predicate.Department
Code applies equality check predicate on the "code" field. It's identical to CodeEQ.
func CodeContains ¶
func CodeContains(v string) predicate.Department
CodeContains applies the Contains predicate on the "code" field.
func CodeContainsFold ¶
func CodeContainsFold(v string) predicate.Department
CodeContainsFold applies the ContainsFold predicate on the "code" field.
func CodeEQ ¶
func CodeEQ(v string) predicate.Department
CodeEQ applies the EQ predicate on the "code" field.
func CodeEqualFold ¶
func CodeEqualFold(v string) predicate.Department
CodeEqualFold applies the EqualFold predicate on the "code" field.
func CodeGT ¶
func CodeGT(v string) predicate.Department
CodeGT applies the GT predicate on the "code" field.
func CodeGTE ¶
func CodeGTE(v string) predicate.Department
CodeGTE applies the GTE predicate on the "code" field.
func CodeHasPrefix ¶
func CodeHasPrefix(v string) predicate.Department
CodeHasPrefix applies the HasPrefix predicate on the "code" field.
func CodeHasSuffix ¶
func CodeHasSuffix(v string) predicate.Department
CodeHasSuffix applies the HasSuffix predicate on the "code" field.
func CodeIn ¶
func CodeIn(vs ...string) predicate.Department
CodeIn applies the In predicate on the "code" field.
func CodeLT ¶
func CodeLT(v string) predicate.Department
CodeLT applies the LT predicate on the "code" field.
func CodeLTE ¶
func CodeLTE(v string) predicate.Department
CodeLTE applies the LTE predicate on the "code" field.
func CodeNEQ ¶
func CodeNEQ(v string) predicate.Department
CodeNEQ applies the NEQ predicate on the "code" field.
func CodeNotIn ¶
func CodeNotIn(vs ...string) predicate.Department
CodeNotIn applies the NotIn predicate on the "code" field.
func Description ¶
func Description(v string) predicate.Department
Description applies equality check predicate on the "description" field. It's identical to DescriptionEQ.
func DescriptionContains ¶
func DescriptionContains(v string) predicate.Department
DescriptionContains applies the Contains predicate on the "description" field.
func DescriptionContainsFold ¶
func DescriptionContainsFold(v string) predicate.Department
DescriptionContainsFold applies the ContainsFold predicate on the "description" field.
func DescriptionEQ ¶
func DescriptionEQ(v string) predicate.Department
DescriptionEQ applies the EQ predicate on the "description" field.
func DescriptionEqualFold ¶
func DescriptionEqualFold(v string) predicate.Department
DescriptionEqualFold applies the EqualFold predicate on the "description" field.
func DescriptionGT ¶
func DescriptionGT(v string) predicate.Department
DescriptionGT applies the GT predicate on the "description" field.
func DescriptionGTE ¶
func DescriptionGTE(v string) predicate.Department
DescriptionGTE applies the GTE predicate on the "description" field.
func DescriptionHasPrefix ¶
func DescriptionHasPrefix(v string) predicate.Department
DescriptionHasPrefix applies the HasPrefix predicate on the "description" field.
func DescriptionHasSuffix ¶
func DescriptionHasSuffix(v string) predicate.Department
DescriptionHasSuffix applies the HasSuffix predicate on the "description" field.
func DescriptionIn ¶
func DescriptionIn(vs ...string) predicate.Department
DescriptionIn applies the In predicate on the "description" field.
func DescriptionLT ¶
func DescriptionLT(v string) predicate.Department
DescriptionLT applies the LT predicate on the "description" field.
func DescriptionLTE ¶
func DescriptionLTE(v string) predicate.Department
DescriptionLTE applies the LTE predicate on the "description" field.
func DescriptionNEQ ¶
func DescriptionNEQ(v string) predicate.Department
DescriptionNEQ applies the NEQ predicate on the "description" field.
func DescriptionNotIn ¶
func DescriptionNotIn(vs ...string) predicate.Department
DescriptionNotIn applies the NotIn predicate on the "description" field.
func HasClass ¶
func HasClass() predicate.Department
HasClass applies the HasEdge predicate on the "class" edge.
func HasClassWith ¶
func HasClassWith(preds ...predicate.Class) predicate.Department
HasClassWith applies the HasEdge predicate on the "class" edge with a given conditions (other predicates).
func HasMajor ¶
func HasMajor() predicate.Department
HasMajor applies the HasEdge predicate on the "major" edge.
func HasMajorWith ¶
func HasMajorWith(preds ...predicate.Major) predicate.Department
HasMajorWith applies the HasEdge predicate on the "major" edge with a given conditions (other predicates).
func HasStudent ¶
func HasStudent() predicate.Department
HasStudent applies the HasEdge predicate on the "student" edge.
func HasStudentWith ¶
func HasStudentWith(preds ...predicate.Student) predicate.Department
HasStudentWith applies the HasEdge predicate on the "student" edge with a given conditions (other predicates).
func IDGTE ¶
func IDGTE(id int) predicate.Department
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.Department
IDIn applies the In predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.Department
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.Department
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.Department
IDNotIn applies the NotIn predicate on the ID field.
func Name ¶
func Name(v string) predicate.Department
Name applies equality check predicate on the "name" field. It's identical to NameEQ.
func NameContains ¶
func NameContains(v string) predicate.Department
NameContains applies the Contains predicate on the "name" field.
func NameContainsFold ¶
func NameContainsFold(v string) predicate.Department
NameContainsFold applies the ContainsFold predicate on the "name" field.
func NameEQ ¶
func NameEQ(v string) predicate.Department
NameEQ applies the EQ predicate on the "name" field.
func NameEqualFold ¶
func NameEqualFold(v string) predicate.Department
NameEqualFold applies the EqualFold predicate on the "name" field.
func NameGT ¶
func NameGT(v string) predicate.Department
NameGT applies the GT predicate on the "name" field.
func NameGTE ¶
func NameGTE(v string) predicate.Department
NameGTE applies the GTE predicate on the "name" field.
func NameHasPrefix ¶
func NameHasPrefix(v string) predicate.Department
NameHasPrefix applies the HasPrefix predicate on the "name" field.
func NameHasSuffix ¶
func NameHasSuffix(v string) predicate.Department
NameHasSuffix applies the HasSuffix predicate on the "name" field.
func NameIn ¶
func NameIn(vs ...string) predicate.Department
NameIn applies the In predicate on the "name" field.
func NameLT ¶
func NameLT(v string) predicate.Department
NameLT applies the LT predicate on the "name" field.
func NameLTE ¶
func NameLTE(v string) predicate.Department
NameLTE applies the LTE predicate on the "name" field.
func NameNEQ ¶
func NameNEQ(v string) predicate.Department
NameNEQ applies the NEQ predicate on the "name" field.
func NameNotIn ¶
func NameNotIn(vs ...string) predicate.Department
NameNotIn applies the NotIn predicate on the "name" field.
func Not ¶
func Not(p predicate.Department) predicate.Department
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.Department) predicate.Department
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 ¶
This section is empty.