Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.BacklogActivityNote) predicate.BacklogActivityNote
- func AuthorSessionTitle(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleContains(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleContainsFold(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleEQ(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleEqualFold(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleGT(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleGTE(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleHasPrefix(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleHasSuffix(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleIn(vs ...string) predicate.BacklogActivityNote
- func AuthorSessionTitleIsNil() predicate.BacklogActivityNote
- func AuthorSessionTitleLT(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleLTE(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleNEQ(v string) predicate.BacklogActivityNote
- func AuthorSessionTitleNotIn(vs ...string) predicate.BacklogActivityNote
- func AuthorSessionTitleNotNil() predicate.BacklogActivityNote
- func AuthorSessionUUID(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDContains(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDContainsFold(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDEQ(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDEqualFold(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDGT(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDGTE(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDHasPrefix(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDHasSuffix(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDIn(vs ...string) predicate.BacklogActivityNote
- func AuthorSessionUUIDIsNil() predicate.BacklogActivityNote
- func AuthorSessionUUIDLT(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDLTE(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDNEQ(v string) predicate.BacklogActivityNote
- func AuthorSessionUUIDNotIn(vs ...string) predicate.BacklogActivityNote
- func AuthorSessionUUIDNotNil() predicate.BacklogActivityNote
- func CreatedAt(v time.Time) predicate.BacklogActivityNote
- func CreatedAtEQ(v time.Time) predicate.BacklogActivityNote
- func CreatedAtGT(v time.Time) predicate.BacklogActivityNote
- func CreatedAtGTE(v time.Time) predicate.BacklogActivityNote
- func CreatedAtIn(vs ...time.Time) predicate.BacklogActivityNote
- func CreatedAtLT(v time.Time) predicate.BacklogActivityNote
- func CreatedAtLTE(v time.Time) predicate.BacklogActivityNote
- func CreatedAtNEQ(v time.Time) predicate.BacklogActivityNote
- func CreatedAtNotIn(vs ...time.Time) predicate.BacklogActivityNote
- func HasItem() predicate.BacklogActivityNote
- func HasItemWith(preds ...predicate.BacklogItem) predicate.BacklogActivityNote
- func ID(id uuid.UUID) predicate.BacklogActivityNote
- func IDEQ(id uuid.UUID) predicate.BacklogActivityNote
- func IDGT(id uuid.UUID) predicate.BacklogActivityNote
- func IDGTE(id uuid.UUID) predicate.BacklogActivityNote
- func IDIn(ids ...uuid.UUID) predicate.BacklogActivityNote
- func IDLT(id uuid.UUID) predicate.BacklogActivityNote
- func IDLTE(id uuid.UUID) predicate.BacklogActivityNote
- func IDNEQ(id uuid.UUID) predicate.BacklogActivityNote
- func IDNotIn(ids ...uuid.UUID) predicate.BacklogActivityNote
- func ItemID(v uuid.UUID) predicate.BacklogActivityNote
- func ItemIDEQ(v uuid.UUID) predicate.BacklogActivityNote
- func ItemIDIn(vs ...uuid.UUID) predicate.BacklogActivityNote
- func ItemIDNEQ(v uuid.UUID) predicate.BacklogActivityNote
- func ItemIDNotIn(vs ...uuid.UUID) predicate.BacklogActivityNote
- func Message(v string) predicate.BacklogActivityNote
- func MessageContains(v string) predicate.BacklogActivityNote
- func MessageContainsFold(v string) predicate.BacklogActivityNote
- func MessageEQ(v string) predicate.BacklogActivityNote
- func MessageEqualFold(v string) predicate.BacklogActivityNote
- func MessageGT(v string) predicate.BacklogActivityNote
- func MessageGTE(v string) predicate.BacklogActivityNote
- func MessageHasPrefix(v string) predicate.BacklogActivityNote
- func MessageHasSuffix(v string) predicate.BacklogActivityNote
- func MessageIn(vs ...string) predicate.BacklogActivityNote
- func MessageLT(v string) predicate.BacklogActivityNote
- func MessageLTE(v string) predicate.BacklogActivityNote
- func MessageNEQ(v string) predicate.BacklogActivityNote
- func MessageNotIn(vs ...string) predicate.BacklogActivityNote
- func Not(p predicate.BacklogActivityNote) predicate.BacklogActivityNote
- func Or(predicates ...predicate.BacklogActivityNote) predicate.BacklogActivityNote
- func ValidColumn(column string) bool
- type OrderOption
- func ByAuthorSessionTitle(opts ...sql.OrderTermOption) OrderOption
- func ByAuthorSessionUUID(opts ...sql.OrderTermOption) OrderOption
- func ByCreatedAt(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 ByMessage(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the backlogactivitynote type in the database. Label = "backlog_activity_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" // FieldMessage holds the string denoting the message field in the database. FieldMessage = "message" // FieldAuthorSessionUUID holds the string denoting the author_session_uuid field in the database. FieldAuthorSessionUUID = "author_session_uuid" // FieldAuthorSessionTitle holds the string denoting the author_session_title field in the database. FieldAuthorSessionTitle = "author_session_title" // 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 backlogactivitynote in the database. Table = "backlog_activity_notes" // ItemTable is the table that holds the item relation/edge. ItemTable = "backlog_activity_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 ( // 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, FieldMessage, FieldAuthorSessionUUID, FieldAuthorSessionTitle, FieldCreatedAt, }
Columns holds all SQL columns for backlogactivitynote fields.
Functions ¶
func And ¶
func And(predicates ...predicate.BacklogActivityNote) predicate.BacklogActivityNote
And groups predicates with the AND operator between them.
func AuthorSessionTitle ¶
func AuthorSessionTitle(v string) predicate.BacklogActivityNote
AuthorSessionTitle applies equality check predicate on the "author_session_title" field. It's identical to AuthorSessionTitleEQ.
func AuthorSessionTitleContains ¶
func AuthorSessionTitleContains(v string) predicate.BacklogActivityNote
AuthorSessionTitleContains applies the Contains predicate on the "author_session_title" field.
func AuthorSessionTitleContainsFold ¶
func AuthorSessionTitleContainsFold(v string) predicate.BacklogActivityNote
AuthorSessionTitleContainsFold applies the ContainsFold predicate on the "author_session_title" field.
func AuthorSessionTitleEQ ¶
func AuthorSessionTitleEQ(v string) predicate.BacklogActivityNote
AuthorSessionTitleEQ applies the EQ predicate on the "author_session_title" field.
func AuthorSessionTitleEqualFold ¶
func AuthorSessionTitleEqualFold(v string) predicate.BacklogActivityNote
AuthorSessionTitleEqualFold applies the EqualFold predicate on the "author_session_title" field.
func AuthorSessionTitleGT ¶
func AuthorSessionTitleGT(v string) predicate.BacklogActivityNote
AuthorSessionTitleGT applies the GT predicate on the "author_session_title" field.
func AuthorSessionTitleGTE ¶
func AuthorSessionTitleGTE(v string) predicate.BacklogActivityNote
AuthorSessionTitleGTE applies the GTE predicate on the "author_session_title" field.
func AuthorSessionTitleHasPrefix ¶
func AuthorSessionTitleHasPrefix(v string) predicate.BacklogActivityNote
AuthorSessionTitleHasPrefix applies the HasPrefix predicate on the "author_session_title" field.
func AuthorSessionTitleHasSuffix ¶
func AuthorSessionTitleHasSuffix(v string) predicate.BacklogActivityNote
AuthorSessionTitleHasSuffix applies the HasSuffix predicate on the "author_session_title" field.
func AuthorSessionTitleIn ¶
func AuthorSessionTitleIn(vs ...string) predicate.BacklogActivityNote
AuthorSessionTitleIn applies the In predicate on the "author_session_title" field.
func AuthorSessionTitleIsNil ¶
func AuthorSessionTitleIsNil() predicate.BacklogActivityNote
AuthorSessionTitleIsNil applies the IsNil predicate on the "author_session_title" field.
func AuthorSessionTitleLT ¶
func AuthorSessionTitleLT(v string) predicate.BacklogActivityNote
AuthorSessionTitleLT applies the LT predicate on the "author_session_title" field.
func AuthorSessionTitleLTE ¶
func AuthorSessionTitleLTE(v string) predicate.BacklogActivityNote
AuthorSessionTitleLTE applies the LTE predicate on the "author_session_title" field.
func AuthorSessionTitleNEQ ¶
func AuthorSessionTitleNEQ(v string) predicate.BacklogActivityNote
AuthorSessionTitleNEQ applies the NEQ predicate on the "author_session_title" field.
func AuthorSessionTitleNotIn ¶
func AuthorSessionTitleNotIn(vs ...string) predicate.BacklogActivityNote
AuthorSessionTitleNotIn applies the NotIn predicate on the "author_session_title" field.
func AuthorSessionTitleNotNil ¶
func AuthorSessionTitleNotNil() predicate.BacklogActivityNote
AuthorSessionTitleNotNil applies the NotNil predicate on the "author_session_title" field.
func AuthorSessionUUID ¶
func AuthorSessionUUID(v string) predicate.BacklogActivityNote
AuthorSessionUUID applies equality check predicate on the "author_session_uuid" field. It's identical to AuthorSessionUUIDEQ.
func AuthorSessionUUIDContains ¶
func AuthorSessionUUIDContains(v string) predicate.BacklogActivityNote
AuthorSessionUUIDContains applies the Contains predicate on the "author_session_uuid" field.
func AuthorSessionUUIDContainsFold ¶
func AuthorSessionUUIDContainsFold(v string) predicate.BacklogActivityNote
AuthorSessionUUIDContainsFold applies the ContainsFold predicate on the "author_session_uuid" field.
func AuthorSessionUUIDEQ ¶
func AuthorSessionUUIDEQ(v string) predicate.BacklogActivityNote
AuthorSessionUUIDEQ applies the EQ predicate on the "author_session_uuid" field.
func AuthorSessionUUIDEqualFold ¶
func AuthorSessionUUIDEqualFold(v string) predicate.BacklogActivityNote
AuthorSessionUUIDEqualFold applies the EqualFold predicate on the "author_session_uuid" field.
func AuthorSessionUUIDGT ¶
func AuthorSessionUUIDGT(v string) predicate.BacklogActivityNote
AuthorSessionUUIDGT applies the GT predicate on the "author_session_uuid" field.
func AuthorSessionUUIDGTE ¶
func AuthorSessionUUIDGTE(v string) predicate.BacklogActivityNote
AuthorSessionUUIDGTE applies the GTE predicate on the "author_session_uuid" field.
func AuthorSessionUUIDHasPrefix ¶
func AuthorSessionUUIDHasPrefix(v string) predicate.BacklogActivityNote
AuthorSessionUUIDHasPrefix applies the HasPrefix predicate on the "author_session_uuid" field.
func AuthorSessionUUIDHasSuffix ¶
func AuthorSessionUUIDHasSuffix(v string) predicate.BacklogActivityNote
AuthorSessionUUIDHasSuffix applies the HasSuffix predicate on the "author_session_uuid" field.
func AuthorSessionUUIDIn ¶
func AuthorSessionUUIDIn(vs ...string) predicate.BacklogActivityNote
AuthorSessionUUIDIn applies the In predicate on the "author_session_uuid" field.
func AuthorSessionUUIDIsNil ¶
func AuthorSessionUUIDIsNil() predicate.BacklogActivityNote
AuthorSessionUUIDIsNil applies the IsNil predicate on the "author_session_uuid" field.
func AuthorSessionUUIDLT ¶
func AuthorSessionUUIDLT(v string) predicate.BacklogActivityNote
AuthorSessionUUIDLT applies the LT predicate on the "author_session_uuid" field.
func AuthorSessionUUIDLTE ¶
func AuthorSessionUUIDLTE(v string) predicate.BacklogActivityNote
AuthorSessionUUIDLTE applies the LTE predicate on the "author_session_uuid" field.
func AuthorSessionUUIDNEQ ¶
func AuthorSessionUUIDNEQ(v string) predicate.BacklogActivityNote
AuthorSessionUUIDNEQ applies the NEQ predicate on the "author_session_uuid" field.
func AuthorSessionUUIDNotIn ¶
func AuthorSessionUUIDNotIn(vs ...string) predicate.BacklogActivityNote
AuthorSessionUUIDNotIn applies the NotIn predicate on the "author_session_uuid" field.
func AuthorSessionUUIDNotNil ¶
func AuthorSessionUUIDNotNil() predicate.BacklogActivityNote
AuthorSessionUUIDNotNil applies the NotNil predicate on the "author_session_uuid" field.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.BacklogActivityNote
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.BacklogActivityNote
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.BacklogActivityNote
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.BacklogActivityNote
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.BacklogActivityNote
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.BacklogActivityNote
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.BacklogActivityNote
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.BacklogActivityNote
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.BacklogActivityNote
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func HasItem ¶
func HasItem() predicate.BacklogActivityNote
HasItem applies the HasEdge predicate on the "item" edge.
func HasItemWith ¶
func HasItemWith(preds ...predicate.BacklogItem) predicate.BacklogActivityNote
HasItemWith applies the HasEdge predicate on the "item" edge with a given conditions (other predicates).
func ID ¶
func ID(id uuid.UUID) predicate.BacklogActivityNote
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.BacklogActivityNote
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.BacklogActivityNote
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.BacklogActivityNote
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.BacklogActivityNote
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.BacklogActivityNote
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.BacklogActivityNote
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.BacklogActivityNote
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.BacklogActivityNote
IDNotIn applies the NotIn predicate on the ID field.
func ItemID ¶
func ItemID(v uuid.UUID) predicate.BacklogActivityNote
ItemID applies equality check predicate on the "item_id" field. It's identical to ItemIDEQ.
func ItemIDEQ ¶
func ItemIDEQ(v uuid.UUID) predicate.BacklogActivityNote
ItemIDEQ applies the EQ predicate on the "item_id" field.
func ItemIDIn ¶
func ItemIDIn(vs ...uuid.UUID) predicate.BacklogActivityNote
ItemIDIn applies the In predicate on the "item_id" field.
func ItemIDNEQ ¶
func ItemIDNEQ(v uuid.UUID) predicate.BacklogActivityNote
ItemIDNEQ applies the NEQ predicate on the "item_id" field.
func ItemIDNotIn ¶
func ItemIDNotIn(vs ...uuid.UUID) predicate.BacklogActivityNote
ItemIDNotIn applies the NotIn predicate on the "item_id" field.
func Message ¶
func Message(v string) predicate.BacklogActivityNote
Message applies equality check predicate on the "message" field. It's identical to MessageEQ.
func MessageContains ¶
func MessageContains(v string) predicate.BacklogActivityNote
MessageContains applies the Contains predicate on the "message" field.
func MessageContainsFold ¶
func MessageContainsFold(v string) predicate.BacklogActivityNote
MessageContainsFold applies the ContainsFold predicate on the "message" field.
func MessageEQ ¶
func MessageEQ(v string) predicate.BacklogActivityNote
MessageEQ applies the EQ predicate on the "message" field.
func MessageEqualFold ¶
func MessageEqualFold(v string) predicate.BacklogActivityNote
MessageEqualFold applies the EqualFold predicate on the "message" field.
func MessageGT ¶
func MessageGT(v string) predicate.BacklogActivityNote
MessageGT applies the GT predicate on the "message" field.
func MessageGTE ¶
func MessageGTE(v string) predicate.BacklogActivityNote
MessageGTE applies the GTE predicate on the "message" field.
func MessageHasPrefix ¶
func MessageHasPrefix(v string) predicate.BacklogActivityNote
MessageHasPrefix applies the HasPrefix predicate on the "message" field.
func MessageHasSuffix ¶
func MessageHasSuffix(v string) predicate.BacklogActivityNote
MessageHasSuffix applies the HasSuffix predicate on the "message" field.
func MessageIn ¶
func MessageIn(vs ...string) predicate.BacklogActivityNote
MessageIn applies the In predicate on the "message" field.
func MessageLT ¶
func MessageLT(v string) predicate.BacklogActivityNote
MessageLT applies the LT predicate on the "message" field.
func MessageLTE ¶
func MessageLTE(v string) predicate.BacklogActivityNote
MessageLTE applies the LTE predicate on the "message" field.
func MessageNEQ ¶
func MessageNEQ(v string) predicate.BacklogActivityNote
MessageNEQ applies the NEQ predicate on the "message" field.
func MessageNotIn ¶
func MessageNotIn(vs ...string) predicate.BacklogActivityNote
MessageNotIn applies the NotIn predicate on the "message" field.
func Not ¶
func Not(p predicate.BacklogActivityNote) predicate.BacklogActivityNote
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.BacklogActivityNote) predicate.BacklogActivityNote
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 BacklogActivityNote queries.
func ByAuthorSessionTitle ¶
func ByAuthorSessionTitle(opts ...sql.OrderTermOption) OrderOption
ByAuthorSessionTitle orders the results by the author_session_title field.
func ByAuthorSessionUUID ¶
func ByAuthorSessionUUID(opts ...sql.OrderTermOption) OrderOption
ByAuthorSessionUUID orders the results by the author_session_uuid field.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at 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 ByMessage ¶
func ByMessage(opts ...sql.OrderTermOption) OrderOption
ByMessage orders the results by the message field.