Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.BacklogProgressNote) predicate.BacklogProgressNote
- func CreatedAt(v time.Time) predicate.BacklogProgressNote
- func CreatedAtEQ(v time.Time) predicate.BacklogProgressNote
- func CreatedAtGT(v time.Time) predicate.BacklogProgressNote
- func CreatedAtGTE(v time.Time) predicate.BacklogProgressNote
- func CreatedAtIn(vs ...time.Time) predicate.BacklogProgressNote
- func CreatedAtLT(v time.Time) predicate.BacklogProgressNote
- func CreatedAtLTE(v time.Time) predicate.BacklogProgressNote
- func CreatedAtNEQ(v time.Time) predicate.BacklogProgressNote
- func CreatedAtNotIn(vs ...time.Time) predicate.BacklogProgressNote
- func CriterionIndex(v int) predicate.BacklogProgressNote
- func CriterionIndexEQ(v int) predicate.BacklogProgressNote
- func CriterionIndexGT(v int) predicate.BacklogProgressNote
- func CriterionIndexGTE(v int) predicate.BacklogProgressNote
- func CriterionIndexIn(vs ...int) predicate.BacklogProgressNote
- func CriterionIndexLT(v int) predicate.BacklogProgressNote
- func CriterionIndexLTE(v int) predicate.BacklogProgressNote
- func CriterionIndexNEQ(v int) predicate.BacklogProgressNote
- func CriterionIndexNotIn(vs ...int) predicate.BacklogProgressNote
- func HasItem() predicate.BacklogProgressNote
- func HasItemWith(preds ...predicate.BacklogItem) predicate.BacklogProgressNote
- func ID(id uuid.UUID) predicate.BacklogProgressNote
- func IDEQ(id uuid.UUID) predicate.BacklogProgressNote
- func IDGT(id uuid.UUID) predicate.BacklogProgressNote
- func IDGTE(id uuid.UUID) predicate.BacklogProgressNote
- func IDIn(ids ...uuid.UUID) predicate.BacklogProgressNote
- func IDLT(id uuid.UUID) predicate.BacklogProgressNote
- func IDLTE(id uuid.UUID) predicate.BacklogProgressNote
- func IDNEQ(id uuid.UUID) predicate.BacklogProgressNote
- func IDNotIn(ids ...uuid.UUID) predicate.BacklogProgressNote
- func ItemID(v uuid.UUID) predicate.BacklogProgressNote
- func ItemIDEQ(v uuid.UUID) predicate.BacklogProgressNote
- func ItemIDIn(vs ...uuid.UUID) predicate.BacklogProgressNote
- func ItemIDNEQ(v uuid.UUID) predicate.BacklogProgressNote
- func ItemIDNotIn(vs ...uuid.UUID) predicate.BacklogProgressNote
- func Not(p predicate.BacklogProgressNote) predicate.BacklogProgressNote
- func Note(v string) predicate.BacklogProgressNote
- func NoteContains(v string) predicate.BacklogProgressNote
- func NoteContainsFold(v string) predicate.BacklogProgressNote
- func NoteEQ(v string) predicate.BacklogProgressNote
- func NoteEqualFold(v string) predicate.BacklogProgressNote
- func NoteGT(v string) predicate.BacklogProgressNote
- func NoteGTE(v string) predicate.BacklogProgressNote
- func NoteHasPrefix(v string) predicate.BacklogProgressNote
- func NoteHasSuffix(v string) predicate.BacklogProgressNote
- func NoteIn(vs ...string) predicate.BacklogProgressNote
- func NoteIsNil() predicate.BacklogProgressNote
- func NoteLT(v string) predicate.BacklogProgressNote
- func NoteLTE(v string) predicate.BacklogProgressNote
- func NoteNEQ(v string) predicate.BacklogProgressNote
- func NoteNotIn(vs ...string) predicate.BacklogProgressNote
- func NoteNotNil() predicate.BacklogProgressNote
- func Or(predicates ...predicate.BacklogProgressNote) predicate.BacklogProgressNote
- func Status(v string) predicate.BacklogProgressNote
- func StatusContains(v string) predicate.BacklogProgressNote
- func StatusContainsFold(v string) predicate.BacklogProgressNote
- func StatusEQ(v string) predicate.BacklogProgressNote
- func StatusEqualFold(v string) predicate.BacklogProgressNote
- func StatusGT(v string) predicate.BacklogProgressNote
- func StatusGTE(v string) predicate.BacklogProgressNote
- func StatusHasPrefix(v string) predicate.BacklogProgressNote
- func StatusHasSuffix(v string) predicate.BacklogProgressNote
- func StatusIn(vs ...string) predicate.BacklogProgressNote
- func StatusLT(v string) predicate.BacklogProgressNote
- func StatusLTE(v string) predicate.BacklogProgressNote
- func StatusNEQ(v string) predicate.BacklogProgressNote
- func StatusNotIn(vs ...string) predicate.BacklogProgressNote
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByCriterionIndex(opts ...sql.OrderTermOption) OrderOption
- func ByID(opts ...sql.OrderTermOption) OrderOption
- func ByItemField(field string, opts ...sql.OrderTermOption) OrderOption
- func ByItemID(opts ...sql.OrderTermOption) OrderOption
- func ByNote(opts ...sql.OrderTermOption) OrderOption
- func ByStatus(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the backlogprogressnote type in the database. Label = "backlog_progress_note" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldItemID holds the string denoting the item_id field in the database. FieldItemID = "item_id" // FieldCriterionIndex holds the string denoting the criterion_index field in the database. FieldCriterionIndex = "criterion_index" // FieldNote holds the string denoting the note field in the database. FieldNote = "note" // FieldStatus holds the string denoting the status field in the database. FieldStatus = "status" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // EdgeItem holds the string denoting the item edge name in mutations. EdgeItem = "item" // Table holds the table name of the backlogprogressnote in the database. Table = "backlog_progress_notes" // ItemTable is the table that holds the item relation/edge. ItemTable = "backlog_progress_notes" // ItemInverseTable is the table name for the BacklogItem entity. // It exists in this package in order to avoid circular dependency with the "backlogitem" package. ItemInverseTable = "backlog_items" // ItemColumn is the table column denoting the item relation/edge. ItemColumn = "item_id" )
Variables ¶
var ( // CriterionIndexValidator is a validator for the "criterion_index" field. It is called by the builders before save. CriterionIndexValidator func(int) error // 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 )
var Columns = []string{ FieldID, FieldItemID, FieldCriterionIndex, FieldNote, FieldStatus, FieldCreatedAt, }
Columns holds all SQL columns for backlogprogressnote fields.
Functions ¶
func And ¶
func And(predicates ...predicate.BacklogProgressNote) predicate.BacklogProgressNote
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.BacklogProgressNote
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.BacklogProgressNote
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.BacklogProgressNote
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.BacklogProgressNote
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.BacklogProgressNote
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.BacklogProgressNote
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.BacklogProgressNote
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.BacklogProgressNote
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.BacklogProgressNote
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func CriterionIndex ¶
func CriterionIndex(v int) predicate.BacklogProgressNote
CriterionIndex applies equality check predicate on the "criterion_index" field. It's identical to CriterionIndexEQ.
func CriterionIndexEQ ¶
func CriterionIndexEQ(v int) predicate.BacklogProgressNote
CriterionIndexEQ applies the EQ predicate on the "criterion_index" field.
func CriterionIndexGT ¶
func CriterionIndexGT(v int) predicate.BacklogProgressNote
CriterionIndexGT applies the GT predicate on the "criterion_index" field.
func CriterionIndexGTE ¶
func CriterionIndexGTE(v int) predicate.BacklogProgressNote
CriterionIndexGTE applies the GTE predicate on the "criterion_index" field.
func CriterionIndexIn ¶
func CriterionIndexIn(vs ...int) predicate.BacklogProgressNote
CriterionIndexIn applies the In predicate on the "criterion_index" field.
func CriterionIndexLT ¶
func CriterionIndexLT(v int) predicate.BacklogProgressNote
CriterionIndexLT applies the LT predicate on the "criterion_index" field.
func CriterionIndexLTE ¶
func CriterionIndexLTE(v int) predicate.BacklogProgressNote
CriterionIndexLTE applies the LTE predicate on the "criterion_index" field.
func CriterionIndexNEQ ¶
func CriterionIndexNEQ(v int) predicate.BacklogProgressNote
CriterionIndexNEQ applies the NEQ predicate on the "criterion_index" field.
func CriterionIndexNotIn ¶
func CriterionIndexNotIn(vs ...int) predicate.BacklogProgressNote
CriterionIndexNotIn applies the NotIn predicate on the "criterion_index" field.
func HasItem ¶
func HasItem() predicate.BacklogProgressNote
HasItem applies the HasEdge predicate on the "item" edge.
func HasItemWith ¶
func HasItemWith(preds ...predicate.BacklogItem) predicate.BacklogProgressNote
HasItemWith applies the HasEdge predicate on the "item" edge with a given conditions (other predicates).
func ID ¶
func ID(id uuid.UUID) predicate.BacklogProgressNote
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.BacklogProgressNote
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.BacklogProgressNote
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.BacklogProgressNote
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.BacklogProgressNote
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.BacklogProgressNote
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.BacklogProgressNote
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.BacklogProgressNote
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.BacklogProgressNote
IDNotIn applies the NotIn predicate on the ID field.
func ItemID ¶
func ItemID(v uuid.UUID) predicate.BacklogProgressNote
ItemID applies equality check predicate on the "item_id" field. It's identical to ItemIDEQ.
func ItemIDEQ ¶
func ItemIDEQ(v uuid.UUID) predicate.BacklogProgressNote
ItemIDEQ applies the EQ predicate on the "item_id" field.
func ItemIDIn ¶
func ItemIDIn(vs ...uuid.UUID) predicate.BacklogProgressNote
ItemIDIn applies the In predicate on the "item_id" field.
func ItemIDNEQ ¶
func ItemIDNEQ(v uuid.UUID) predicate.BacklogProgressNote
ItemIDNEQ applies the NEQ predicate on the "item_id" field.
func ItemIDNotIn ¶
func ItemIDNotIn(vs ...uuid.UUID) predicate.BacklogProgressNote
ItemIDNotIn applies the NotIn predicate on the "item_id" field.
func Not ¶
func Not(p predicate.BacklogProgressNote) predicate.BacklogProgressNote
Not applies the not operator on the given predicate.
func Note ¶
func Note(v string) predicate.BacklogProgressNote
Note applies equality check predicate on the "note" field. It's identical to NoteEQ.
func NoteContains ¶
func NoteContains(v string) predicate.BacklogProgressNote
NoteContains applies the Contains predicate on the "note" field.
func NoteContainsFold ¶
func NoteContainsFold(v string) predicate.BacklogProgressNote
NoteContainsFold applies the ContainsFold predicate on the "note" field.
func NoteEQ ¶
func NoteEQ(v string) predicate.BacklogProgressNote
NoteEQ applies the EQ predicate on the "note" field.
func NoteEqualFold ¶
func NoteEqualFold(v string) predicate.BacklogProgressNote
NoteEqualFold applies the EqualFold predicate on the "note" field.
func NoteGT ¶
func NoteGT(v string) predicate.BacklogProgressNote
NoteGT applies the GT predicate on the "note" field.
func NoteGTE ¶
func NoteGTE(v string) predicate.BacklogProgressNote
NoteGTE applies the GTE predicate on the "note" field.
func NoteHasPrefix ¶
func NoteHasPrefix(v string) predicate.BacklogProgressNote
NoteHasPrefix applies the HasPrefix predicate on the "note" field.
func NoteHasSuffix ¶
func NoteHasSuffix(v string) predicate.BacklogProgressNote
NoteHasSuffix applies the HasSuffix predicate on the "note" field.
func NoteIn ¶
func NoteIn(vs ...string) predicate.BacklogProgressNote
NoteIn applies the In predicate on the "note" field.
func NoteIsNil ¶
func NoteIsNil() predicate.BacklogProgressNote
NoteIsNil applies the IsNil predicate on the "note" field.
func NoteLT ¶
func NoteLT(v string) predicate.BacklogProgressNote
NoteLT applies the LT predicate on the "note" field.
func NoteLTE ¶
func NoteLTE(v string) predicate.BacklogProgressNote
NoteLTE applies the LTE predicate on the "note" field.
func NoteNEQ ¶
func NoteNEQ(v string) predicate.BacklogProgressNote
NoteNEQ applies the NEQ predicate on the "note" field.
func NoteNotIn ¶
func NoteNotIn(vs ...string) predicate.BacklogProgressNote
NoteNotIn applies the NotIn predicate on the "note" field.
func NoteNotNil ¶
func NoteNotNil() predicate.BacklogProgressNote
NoteNotNil applies the NotNil predicate on the "note" field.
func Or ¶
func Or(predicates ...predicate.BacklogProgressNote) predicate.BacklogProgressNote
Or groups predicates with the OR operator between them.
func Status ¶
func Status(v string) predicate.BacklogProgressNote
Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
func StatusContains ¶
func StatusContains(v string) predicate.BacklogProgressNote
StatusContains applies the Contains predicate on the "status" field.
func StatusContainsFold ¶
func StatusContainsFold(v string) predicate.BacklogProgressNote
StatusContainsFold applies the ContainsFold predicate on the "status" field.
func StatusEQ ¶
func StatusEQ(v string) predicate.BacklogProgressNote
StatusEQ applies the EQ predicate on the "status" field.
func StatusEqualFold ¶
func StatusEqualFold(v string) predicate.BacklogProgressNote
StatusEqualFold applies the EqualFold predicate on the "status" field.
func StatusGT ¶
func StatusGT(v string) predicate.BacklogProgressNote
StatusGT applies the GT predicate on the "status" field.
func StatusGTE ¶
func StatusGTE(v string) predicate.BacklogProgressNote
StatusGTE applies the GTE predicate on the "status" field.
func StatusHasPrefix ¶
func StatusHasPrefix(v string) predicate.BacklogProgressNote
StatusHasPrefix applies the HasPrefix predicate on the "status" field.
func StatusHasSuffix ¶
func StatusHasSuffix(v string) predicate.BacklogProgressNote
StatusHasSuffix applies the HasSuffix predicate on the "status" field.
func StatusIn ¶
func StatusIn(vs ...string) predicate.BacklogProgressNote
StatusIn applies the In predicate on the "status" field.
func StatusLT ¶
func StatusLT(v string) predicate.BacklogProgressNote
StatusLT applies the LT predicate on the "status" field.
func StatusLTE ¶
func StatusLTE(v string) predicate.BacklogProgressNote
StatusLTE applies the LTE predicate on the "status" field.
func StatusNEQ ¶
func StatusNEQ(v string) predicate.BacklogProgressNote
StatusNEQ applies the NEQ predicate on the "status" field.
func StatusNotIn ¶
func StatusNotIn(vs ...string) predicate.BacklogProgressNote
StatusNotIn applies the NotIn predicate on the "status" field.
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 BacklogProgressNote queries.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByCriterionIndex ¶
func ByCriterionIndex(opts ...sql.OrderTermOption) OrderOption
ByCriterionIndex orders the results by the criterion_index field.
func ByID ¶
func ByID(opts ...sql.OrderTermOption) OrderOption
ByID orders the results by the id field.
func ByItemField ¶
func ByItemField(field string, opts ...sql.OrderTermOption) OrderOption
ByItemField orders the results by item field.
func ByItemID ¶
func ByItemID(opts ...sql.OrderTermOption) OrderOption
ByItemID orders the results by the item_id field.
func ByNote ¶
func ByNote(opts ...sql.OrderTermOption) OrderOption
ByNote orders the results by the note field.
func ByStatus ¶
func ByStatus(opts ...sql.OrderTermOption) OrderOption
ByStatus orders the results by the status field.