Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.ApplicationAssignmentHistory) predicate.ApplicationAssignmentHistory
- func ApplicationID(v uuid.UUID) predicate.ApplicationAssignmentHistory
- func ApplicationIDEQ(v uuid.UUID) predicate.ApplicationAssignmentHistory
- func ApplicationIDIn(vs ...uuid.UUID) predicate.ApplicationAssignmentHistory
- func ApplicationIDNEQ(v uuid.UUID) predicate.ApplicationAssignmentHistory
- func ApplicationIDNotIn(vs ...uuid.UUID) predicate.ApplicationAssignmentHistory
- func Assignee(v string) predicate.ApplicationAssignmentHistory
- func AssigneeContains(v string) predicate.ApplicationAssignmentHistory
- func AssigneeContainsFold(v string) predicate.ApplicationAssignmentHistory
- func AssigneeEQ(v string) predicate.ApplicationAssignmentHistory
- func AssigneeEqualFold(v string) predicate.ApplicationAssignmentHistory
- func AssigneeGT(v string) predicate.ApplicationAssignmentHistory
- func AssigneeGTE(v string) predicate.ApplicationAssignmentHistory
- func AssigneeHasPrefix(v string) predicate.ApplicationAssignmentHistory
- func AssigneeHasSuffix(v string) predicate.ApplicationAssignmentHistory
- func AssigneeIn(vs ...string) predicate.ApplicationAssignmentHistory
- func AssigneeLT(v string) predicate.ApplicationAssignmentHistory
- func AssigneeLTE(v string) predicate.ApplicationAssignmentHistory
- func AssigneeNEQ(v string) predicate.ApplicationAssignmentHistory
- func AssigneeNotIn(vs ...string) predicate.ApplicationAssignmentHistory
- func Assigner(v string) predicate.ApplicationAssignmentHistory
- func AssignerContains(v string) predicate.ApplicationAssignmentHistory
- func AssignerContainsFold(v string) predicate.ApplicationAssignmentHistory
- func AssignerEQ(v string) predicate.ApplicationAssignmentHistory
- func AssignerEqualFold(v string) predicate.ApplicationAssignmentHistory
- func AssignerGT(v string) predicate.ApplicationAssignmentHistory
- func AssignerGTE(v string) predicate.ApplicationAssignmentHistory
- func AssignerHasPrefix(v string) predicate.ApplicationAssignmentHistory
- func AssignerHasSuffix(v string) predicate.ApplicationAssignmentHistory
- func AssignerIn(vs ...string) predicate.ApplicationAssignmentHistory
- func AssignerLT(v string) predicate.ApplicationAssignmentHistory
- func AssignerLTE(v string) predicate.ApplicationAssignmentHistory
- func AssignerNEQ(v string) predicate.ApplicationAssignmentHistory
- func AssignerNotIn(vs ...string) predicate.ApplicationAssignmentHistory
- func CreatedTime(v time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeEQ(v time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeGT(v time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeGTE(v time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeIn(vs ...time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeLT(v time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeLTE(v time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeNEQ(v time.Time) predicate.ApplicationAssignmentHistory
- func CreatedTimeNotIn(vs ...time.Time) predicate.ApplicationAssignmentHistory
- func HasApplications() predicate.ApplicationAssignmentHistory
- func HasApplicationsWith(preds ...predicate.Application) predicate.ApplicationAssignmentHistory
- func ID(id int) predicate.ApplicationAssignmentHistory
- func IDEQ(id int) predicate.ApplicationAssignmentHistory
- func IDGT(id int) predicate.ApplicationAssignmentHistory
- func IDGTE(id int) predicate.ApplicationAssignmentHistory
- func IDIn(ids ...int) predicate.ApplicationAssignmentHistory
- func IDLT(id int) predicate.ApplicationAssignmentHistory
- func IDLTE(id int) predicate.ApplicationAssignmentHistory
- func IDNEQ(id int) predicate.ApplicationAssignmentHistory
- func IDNotIn(ids ...int) predicate.ApplicationAssignmentHistory
- func Not(p predicate.ApplicationAssignmentHistory) predicate.ApplicationAssignmentHistory
- func Or(predicates ...predicate.ApplicationAssignmentHistory) predicate.ApplicationAssignmentHistory
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the applicationassignmenthistory type in the database. Label = "application_assignment_history" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldApplicationID holds the string denoting the application_id field in the database. FieldApplicationID = "application_id" // FieldAssigner holds the string denoting the assigner field in the database. FieldAssigner = "assigner" // FieldAssignee holds the string denoting the assignee field in the database. FieldAssignee = "assignee" // FieldCreatedTime holds the string denoting the created_time field in the database. FieldCreatedTime = "created_time" // EdgeApplications holds the string denoting the applications edge name in mutations. EdgeApplications = "applications" // ApplicationFieldID holds the string denoting the ID field of the Application. ApplicationFieldID = "application_id" // Table holds the table name of the applicationassignmenthistory in the database. Table = "application_assignment_histories" // ApplicationsTable is the table that holds the applications relation/edge. ApplicationsTable = "application_assignment_histories" // ApplicationsInverseTable is the table name for the Application entity. // It exists in this package in order to avoid circular dependency with the "application" package. ApplicationsInverseTable = "applications" // ApplicationsColumn is the table column denoting the applications relation/edge. ApplicationsColumn = "application_id" )
Variables ¶
var ( // AssignerValidator is a validator for the "assigner" field. It is called by the builders before save. AssignerValidator func(string) error // AssigneeValidator is a validator for the "assignee" field. It is called by the builders before save. AssigneeValidator func(string) error // DefaultCreatedTime holds the default value on creation for the "created_time" field. DefaultCreatedTime func() time.Time )
var Columns = []string{ FieldID, FieldApplicationID, FieldAssigner, FieldAssignee, FieldCreatedTime, }
Columns holds all SQL columns for applicationassignmenthistory fields.
Functions ¶
func And ¶
func And(predicates ...predicate.ApplicationAssignmentHistory) predicate.ApplicationAssignmentHistory
And groups predicates with the AND operator between them.
func ApplicationID ¶
func ApplicationID(v uuid.UUID) predicate.ApplicationAssignmentHistory
ApplicationID applies equality check predicate on the "application_id" field. It's identical to ApplicationIDEQ.
func ApplicationIDEQ ¶
func ApplicationIDEQ(v uuid.UUID) predicate.ApplicationAssignmentHistory
ApplicationIDEQ applies the EQ predicate on the "application_id" field.
func ApplicationIDIn ¶
func ApplicationIDIn(vs ...uuid.UUID) predicate.ApplicationAssignmentHistory
ApplicationIDIn applies the In predicate on the "application_id" field.
func ApplicationIDNEQ ¶
func ApplicationIDNEQ(v uuid.UUID) predicate.ApplicationAssignmentHistory
ApplicationIDNEQ applies the NEQ predicate on the "application_id" field.
func ApplicationIDNotIn ¶
func ApplicationIDNotIn(vs ...uuid.UUID) predicate.ApplicationAssignmentHistory
ApplicationIDNotIn applies the NotIn predicate on the "application_id" field.
func Assignee ¶
func Assignee(v string) predicate.ApplicationAssignmentHistory
Assignee applies equality check predicate on the "assignee" field. It's identical to AssigneeEQ.
func AssigneeContains ¶
func AssigneeContains(v string) predicate.ApplicationAssignmentHistory
AssigneeContains applies the Contains predicate on the "assignee" field.
func AssigneeContainsFold ¶
func AssigneeContainsFold(v string) predicate.ApplicationAssignmentHistory
AssigneeContainsFold applies the ContainsFold predicate on the "assignee" field.
func AssigneeEQ ¶
func AssigneeEQ(v string) predicate.ApplicationAssignmentHistory
AssigneeEQ applies the EQ predicate on the "assignee" field.
func AssigneeEqualFold ¶
func AssigneeEqualFold(v string) predicate.ApplicationAssignmentHistory
AssigneeEqualFold applies the EqualFold predicate on the "assignee" field.
func AssigneeGT ¶
func AssigneeGT(v string) predicate.ApplicationAssignmentHistory
AssigneeGT applies the GT predicate on the "assignee" field.
func AssigneeGTE ¶
func AssigneeGTE(v string) predicate.ApplicationAssignmentHistory
AssigneeGTE applies the GTE predicate on the "assignee" field.
func AssigneeHasPrefix ¶
func AssigneeHasPrefix(v string) predicate.ApplicationAssignmentHistory
AssigneeHasPrefix applies the HasPrefix predicate on the "assignee" field.
func AssigneeHasSuffix ¶
func AssigneeHasSuffix(v string) predicate.ApplicationAssignmentHistory
AssigneeHasSuffix applies the HasSuffix predicate on the "assignee" field.
func AssigneeIn ¶
func AssigneeIn(vs ...string) predicate.ApplicationAssignmentHistory
AssigneeIn applies the In predicate on the "assignee" field.
func AssigneeLT ¶
func AssigneeLT(v string) predicate.ApplicationAssignmentHistory
AssigneeLT applies the LT predicate on the "assignee" field.
func AssigneeLTE ¶
func AssigneeLTE(v string) predicate.ApplicationAssignmentHistory
AssigneeLTE applies the LTE predicate on the "assignee" field.
func AssigneeNEQ ¶
func AssigneeNEQ(v string) predicate.ApplicationAssignmentHistory
AssigneeNEQ applies the NEQ predicate on the "assignee" field.
func AssigneeNotIn ¶
func AssigneeNotIn(vs ...string) predicate.ApplicationAssignmentHistory
AssigneeNotIn applies the NotIn predicate on the "assignee" field.
func Assigner ¶
func Assigner(v string) predicate.ApplicationAssignmentHistory
Assigner applies equality check predicate on the "assigner" field. It's identical to AssignerEQ.
func AssignerContains ¶
func AssignerContains(v string) predicate.ApplicationAssignmentHistory
AssignerContains applies the Contains predicate on the "assigner" field.
func AssignerContainsFold ¶
func AssignerContainsFold(v string) predicate.ApplicationAssignmentHistory
AssignerContainsFold applies the ContainsFold predicate on the "assigner" field.
func AssignerEQ ¶
func AssignerEQ(v string) predicate.ApplicationAssignmentHistory
AssignerEQ applies the EQ predicate on the "assigner" field.
func AssignerEqualFold ¶
func AssignerEqualFold(v string) predicate.ApplicationAssignmentHistory
AssignerEqualFold applies the EqualFold predicate on the "assigner" field.
func AssignerGT ¶
func AssignerGT(v string) predicate.ApplicationAssignmentHistory
AssignerGT applies the GT predicate on the "assigner" field.
func AssignerGTE ¶
func AssignerGTE(v string) predicate.ApplicationAssignmentHistory
AssignerGTE applies the GTE predicate on the "assigner" field.
func AssignerHasPrefix ¶
func AssignerHasPrefix(v string) predicate.ApplicationAssignmentHistory
AssignerHasPrefix applies the HasPrefix predicate on the "assigner" field.
func AssignerHasSuffix ¶
func AssignerHasSuffix(v string) predicate.ApplicationAssignmentHistory
AssignerHasSuffix applies the HasSuffix predicate on the "assigner" field.
func AssignerIn ¶
func AssignerIn(vs ...string) predicate.ApplicationAssignmentHistory
AssignerIn applies the In predicate on the "assigner" field.
func AssignerLT ¶
func AssignerLT(v string) predicate.ApplicationAssignmentHistory
AssignerLT applies the LT predicate on the "assigner" field.
func AssignerLTE ¶
func AssignerLTE(v string) predicate.ApplicationAssignmentHistory
AssignerLTE applies the LTE predicate on the "assigner" field.
func AssignerNEQ ¶
func AssignerNEQ(v string) predicate.ApplicationAssignmentHistory
AssignerNEQ applies the NEQ predicate on the "assigner" field.
func AssignerNotIn ¶
func AssignerNotIn(vs ...string) predicate.ApplicationAssignmentHistory
AssignerNotIn applies the NotIn predicate on the "assigner" field.
func CreatedTime ¶
func CreatedTime(v time.Time) predicate.ApplicationAssignmentHistory
CreatedTime applies equality check predicate on the "created_time" field. It's identical to CreatedTimeEQ.
func CreatedTimeEQ ¶
func CreatedTimeEQ(v time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeEQ applies the EQ predicate on the "created_time" field.
func CreatedTimeGT ¶
func CreatedTimeGT(v time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeGT applies the GT predicate on the "created_time" field.
func CreatedTimeGTE ¶
func CreatedTimeGTE(v time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeGTE applies the GTE predicate on the "created_time" field.
func CreatedTimeIn ¶
func CreatedTimeIn(vs ...time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeIn applies the In predicate on the "created_time" field.
func CreatedTimeLT ¶
func CreatedTimeLT(v time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeLT applies the LT predicate on the "created_time" field.
func CreatedTimeLTE ¶
func CreatedTimeLTE(v time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeLTE applies the LTE predicate on the "created_time" field.
func CreatedTimeNEQ ¶
func CreatedTimeNEQ(v time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeNEQ applies the NEQ predicate on the "created_time" field.
func CreatedTimeNotIn ¶
func CreatedTimeNotIn(vs ...time.Time) predicate.ApplicationAssignmentHistory
CreatedTimeNotIn applies the NotIn predicate on the "created_time" field.
func HasApplications ¶
func HasApplications() predicate.ApplicationAssignmentHistory
HasApplications applies the HasEdge predicate on the "applications" edge.
func HasApplicationsWith ¶
func HasApplicationsWith(preds ...predicate.Application) predicate.ApplicationAssignmentHistory
HasApplicationsWith applies the HasEdge predicate on the "applications" edge with a given conditions (other predicates).
func ID ¶
func ID(id int) predicate.ApplicationAssignmentHistory
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id int) predicate.ApplicationAssignmentHistory
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id int) predicate.ApplicationAssignmentHistory
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id int) predicate.ApplicationAssignmentHistory
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int) predicate.ApplicationAssignmentHistory
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id int) predicate.ApplicationAssignmentHistory
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id int) predicate.ApplicationAssignmentHistory
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int) predicate.ApplicationAssignmentHistory
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int) predicate.ApplicationAssignmentHistory
IDNotIn applies the NotIn predicate on the ID field.
func Or ¶
func Or(predicates ...predicate.ApplicationAssignmentHistory) predicate.ApplicationAssignmentHistory
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.