Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.BacklogStatusEvent) predicate.BacklogStatusEvent
- func CreatedAt(v time.Time) predicate.BacklogStatusEvent
- func CreatedAtEQ(v time.Time) predicate.BacklogStatusEvent
- func CreatedAtGT(v time.Time) predicate.BacklogStatusEvent
- func CreatedAtGTE(v time.Time) predicate.BacklogStatusEvent
- func CreatedAtIn(vs ...time.Time) predicate.BacklogStatusEvent
- func CreatedAtLT(v time.Time) predicate.BacklogStatusEvent
- func CreatedAtLTE(v time.Time) predicate.BacklogStatusEvent
- func CreatedAtNEQ(v time.Time) predicate.BacklogStatusEvent
- func CreatedAtNotIn(vs ...time.Time) predicate.BacklogStatusEvent
- func FromStatus(v string) predicate.BacklogStatusEvent
- func FromStatusContains(v string) predicate.BacklogStatusEvent
- func FromStatusContainsFold(v string) predicate.BacklogStatusEvent
- func FromStatusEQ(v string) predicate.BacklogStatusEvent
- func FromStatusEqualFold(v string) predicate.BacklogStatusEvent
- func FromStatusGT(v string) predicate.BacklogStatusEvent
- func FromStatusGTE(v string) predicate.BacklogStatusEvent
- func FromStatusHasPrefix(v string) predicate.BacklogStatusEvent
- func FromStatusHasSuffix(v string) predicate.BacklogStatusEvent
- func FromStatusIn(vs ...string) predicate.BacklogStatusEvent
- func FromStatusLT(v string) predicate.BacklogStatusEvent
- func FromStatusLTE(v string) predicate.BacklogStatusEvent
- func FromStatusNEQ(v string) predicate.BacklogStatusEvent
- func FromStatusNotIn(vs ...string) predicate.BacklogStatusEvent
- func HasItem() predicate.BacklogStatusEvent
- func HasItemWith(preds ...predicate.BacklogItem) predicate.BacklogStatusEvent
- func ID(id uuid.UUID) predicate.BacklogStatusEvent
- func IDEQ(id uuid.UUID) predicate.BacklogStatusEvent
- func IDGT(id uuid.UUID) predicate.BacklogStatusEvent
- func IDGTE(id uuid.UUID) predicate.BacklogStatusEvent
- func IDIn(ids ...uuid.UUID) predicate.BacklogStatusEvent
- func IDLT(id uuid.UUID) predicate.BacklogStatusEvent
- func IDLTE(id uuid.UUID) predicate.BacklogStatusEvent
- func IDNEQ(id uuid.UUID) predicate.BacklogStatusEvent
- func IDNotIn(ids ...uuid.UUID) predicate.BacklogStatusEvent
- func ItemID(v uuid.UUID) predicate.BacklogStatusEvent
- func ItemIDEQ(v uuid.UUID) predicate.BacklogStatusEvent
- func ItemIDIn(vs ...uuid.UUID) predicate.BacklogStatusEvent
- func ItemIDNEQ(v uuid.UUID) predicate.BacklogStatusEvent
- func ItemIDNotIn(vs ...uuid.UUID) predicate.BacklogStatusEvent
- func Not(p predicate.BacklogStatusEvent) predicate.BacklogStatusEvent
- func Note(v string) predicate.BacklogStatusEvent
- func NoteContains(v string) predicate.BacklogStatusEvent
- func NoteContainsFold(v string) predicate.BacklogStatusEvent
- func NoteEQ(v string) predicate.BacklogStatusEvent
- func NoteEqualFold(v string) predicate.BacklogStatusEvent
- func NoteGT(v string) predicate.BacklogStatusEvent
- func NoteGTE(v string) predicate.BacklogStatusEvent
- func NoteHasPrefix(v string) predicate.BacklogStatusEvent
- func NoteHasSuffix(v string) predicate.BacklogStatusEvent
- func NoteIn(vs ...string) predicate.BacklogStatusEvent
- func NoteIsNil() predicate.BacklogStatusEvent
- func NoteLT(v string) predicate.BacklogStatusEvent
- func NoteLTE(v string) predicate.BacklogStatusEvent
- func NoteNEQ(v string) predicate.BacklogStatusEvent
- func NoteNotIn(vs ...string) predicate.BacklogStatusEvent
- func NoteNotNil() predicate.BacklogStatusEvent
- func Or(predicates ...predicate.BacklogStatusEvent) predicate.BacklogStatusEvent
- func ToStatus(v string) predicate.BacklogStatusEvent
- func ToStatusContains(v string) predicate.BacklogStatusEvent
- func ToStatusContainsFold(v string) predicate.BacklogStatusEvent
- func ToStatusEQ(v string) predicate.BacklogStatusEvent
- func ToStatusEqualFold(v string) predicate.BacklogStatusEvent
- func ToStatusGT(v string) predicate.BacklogStatusEvent
- func ToStatusGTE(v string) predicate.BacklogStatusEvent
- func ToStatusHasPrefix(v string) predicate.BacklogStatusEvent
- func ToStatusHasSuffix(v string) predicate.BacklogStatusEvent
- func ToStatusIn(vs ...string) predicate.BacklogStatusEvent
- func ToStatusLT(v string) predicate.BacklogStatusEvent
- func ToStatusLTE(v string) predicate.BacklogStatusEvent
- func ToStatusNEQ(v string) predicate.BacklogStatusEvent
- func ToStatusNotIn(vs ...string) predicate.BacklogStatusEvent
- func TriggeredBy(v string) predicate.BacklogStatusEvent
- func TriggeredByContains(v string) predicate.BacklogStatusEvent
- func TriggeredByContainsFold(v string) predicate.BacklogStatusEvent
- func TriggeredByEQ(v string) predicate.BacklogStatusEvent
- func TriggeredByEqualFold(v string) predicate.BacklogStatusEvent
- func TriggeredByGT(v string) predicate.BacklogStatusEvent
- func TriggeredByGTE(v string) predicate.BacklogStatusEvent
- func TriggeredByHasPrefix(v string) predicate.BacklogStatusEvent
- func TriggeredByHasSuffix(v string) predicate.BacklogStatusEvent
- func TriggeredByIn(vs ...string) predicate.BacklogStatusEvent
- func TriggeredByLT(v string) predicate.BacklogStatusEvent
- func TriggeredByLTE(v string) predicate.BacklogStatusEvent
- func TriggeredByNEQ(v string) predicate.BacklogStatusEvent
- func TriggeredByNotIn(vs ...string) predicate.BacklogStatusEvent
- func ValidColumn(column string) bool
- type OrderOption
- func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
- func ByFromStatus(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 ByToStatus(opts ...sql.OrderTermOption) OrderOption
- func ByTriggeredBy(opts ...sql.OrderTermOption) OrderOption
Constants ¶
const ( // Label holds the string label denoting the backlogstatusevent type in the database. Label = "backlog_status_event" // 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" // FieldFromStatus holds the string denoting the from_status field in the database. FieldFromStatus = "from_status" // FieldToStatus holds the string denoting the to_status field in the database. FieldToStatus = "to_status" // FieldTriggeredBy holds the string denoting the triggered_by field in the database. FieldTriggeredBy = "triggered_by" // FieldNote holds the string denoting the note field in the database. FieldNote = "note" // 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 backlogstatusevent in the database. Table = "backlog_status_events" // ItemTable is the table that holds the item relation/edge. ItemTable = "backlog_status_events" // 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 ( // DefaultTriggeredBy holds the default value on creation for the "triggered_by" field. DefaultTriggeredBy string // 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, FieldFromStatus, FieldToStatus, FieldTriggeredBy, FieldNote, FieldCreatedAt, }
Columns holds all SQL columns for backlogstatusevent fields.
Functions ¶
func And ¶
func And(predicates ...predicate.BacklogStatusEvent) predicate.BacklogStatusEvent
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.BacklogStatusEvent
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.BacklogStatusEvent
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.BacklogStatusEvent
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.BacklogStatusEvent
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.BacklogStatusEvent
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.BacklogStatusEvent
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.BacklogStatusEvent
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.BacklogStatusEvent
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.BacklogStatusEvent
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func FromStatus ¶
func FromStatus(v string) predicate.BacklogStatusEvent
FromStatus applies equality check predicate on the "from_status" field. It's identical to FromStatusEQ.
func FromStatusContains ¶
func FromStatusContains(v string) predicate.BacklogStatusEvent
FromStatusContains applies the Contains predicate on the "from_status" field.
func FromStatusContainsFold ¶
func FromStatusContainsFold(v string) predicate.BacklogStatusEvent
FromStatusContainsFold applies the ContainsFold predicate on the "from_status" field.
func FromStatusEQ ¶
func FromStatusEQ(v string) predicate.BacklogStatusEvent
FromStatusEQ applies the EQ predicate on the "from_status" field.
func FromStatusEqualFold ¶
func FromStatusEqualFold(v string) predicate.BacklogStatusEvent
FromStatusEqualFold applies the EqualFold predicate on the "from_status" field.
func FromStatusGT ¶
func FromStatusGT(v string) predicate.BacklogStatusEvent
FromStatusGT applies the GT predicate on the "from_status" field.
func FromStatusGTE ¶
func FromStatusGTE(v string) predicate.BacklogStatusEvent
FromStatusGTE applies the GTE predicate on the "from_status" field.
func FromStatusHasPrefix ¶
func FromStatusHasPrefix(v string) predicate.BacklogStatusEvent
FromStatusHasPrefix applies the HasPrefix predicate on the "from_status" field.
func FromStatusHasSuffix ¶
func FromStatusHasSuffix(v string) predicate.BacklogStatusEvent
FromStatusHasSuffix applies the HasSuffix predicate on the "from_status" field.
func FromStatusIn ¶
func FromStatusIn(vs ...string) predicate.BacklogStatusEvent
FromStatusIn applies the In predicate on the "from_status" field.
func FromStatusLT ¶
func FromStatusLT(v string) predicate.BacklogStatusEvent
FromStatusLT applies the LT predicate on the "from_status" field.
func FromStatusLTE ¶
func FromStatusLTE(v string) predicate.BacklogStatusEvent
FromStatusLTE applies the LTE predicate on the "from_status" field.
func FromStatusNEQ ¶
func FromStatusNEQ(v string) predicate.BacklogStatusEvent
FromStatusNEQ applies the NEQ predicate on the "from_status" field.
func FromStatusNotIn ¶
func FromStatusNotIn(vs ...string) predicate.BacklogStatusEvent
FromStatusNotIn applies the NotIn predicate on the "from_status" field.
func HasItem ¶
func HasItem() predicate.BacklogStatusEvent
HasItem applies the HasEdge predicate on the "item" edge.
func HasItemWith ¶
func HasItemWith(preds ...predicate.BacklogItem) predicate.BacklogStatusEvent
HasItemWith applies the HasEdge predicate on the "item" edge with a given conditions (other predicates).
func ID ¶
func ID(id uuid.UUID) predicate.BacklogStatusEvent
ID filters vertices based on their ID field.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.BacklogStatusEvent
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.BacklogStatusEvent
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.BacklogStatusEvent
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.BacklogStatusEvent
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.BacklogStatusEvent
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.BacklogStatusEvent
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.BacklogStatusEvent
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.BacklogStatusEvent
IDNotIn applies the NotIn predicate on the ID field.
func ItemID ¶
func ItemID(v uuid.UUID) predicate.BacklogStatusEvent
ItemID applies equality check predicate on the "item_id" field. It's identical to ItemIDEQ.
func ItemIDEQ ¶
func ItemIDEQ(v uuid.UUID) predicate.BacklogStatusEvent
ItemIDEQ applies the EQ predicate on the "item_id" field.
func ItemIDIn ¶
func ItemIDIn(vs ...uuid.UUID) predicate.BacklogStatusEvent
ItemIDIn applies the In predicate on the "item_id" field.
func ItemIDNEQ ¶
func ItemIDNEQ(v uuid.UUID) predicate.BacklogStatusEvent
ItemIDNEQ applies the NEQ predicate on the "item_id" field.
func ItemIDNotIn ¶
func ItemIDNotIn(vs ...uuid.UUID) predicate.BacklogStatusEvent
ItemIDNotIn applies the NotIn predicate on the "item_id" field.
func Not ¶
func Not(p predicate.BacklogStatusEvent) predicate.BacklogStatusEvent
Not applies the not operator on the given predicate.
func Note ¶ added in v1.37.0
func Note(v string) predicate.BacklogStatusEvent
Note applies equality check predicate on the "note" field. It's identical to NoteEQ.
func NoteContains ¶ added in v1.37.0
func NoteContains(v string) predicate.BacklogStatusEvent
NoteContains applies the Contains predicate on the "note" field.
func NoteContainsFold ¶ added in v1.37.0
func NoteContainsFold(v string) predicate.BacklogStatusEvent
NoteContainsFold applies the ContainsFold predicate on the "note" field.
func NoteEQ ¶ added in v1.37.0
func NoteEQ(v string) predicate.BacklogStatusEvent
NoteEQ applies the EQ predicate on the "note" field.
func NoteEqualFold ¶ added in v1.37.0
func NoteEqualFold(v string) predicate.BacklogStatusEvent
NoteEqualFold applies the EqualFold predicate on the "note" field.
func NoteGT ¶ added in v1.37.0
func NoteGT(v string) predicate.BacklogStatusEvent
NoteGT applies the GT predicate on the "note" field.
func NoteGTE ¶ added in v1.37.0
func NoteGTE(v string) predicate.BacklogStatusEvent
NoteGTE applies the GTE predicate on the "note" field.
func NoteHasPrefix ¶ added in v1.37.0
func NoteHasPrefix(v string) predicate.BacklogStatusEvent
NoteHasPrefix applies the HasPrefix predicate on the "note" field.
func NoteHasSuffix ¶ added in v1.37.0
func NoteHasSuffix(v string) predicate.BacklogStatusEvent
NoteHasSuffix applies the HasSuffix predicate on the "note" field.
func NoteIn ¶ added in v1.37.0
func NoteIn(vs ...string) predicate.BacklogStatusEvent
NoteIn applies the In predicate on the "note" field.
func NoteIsNil ¶ added in v1.37.0
func NoteIsNil() predicate.BacklogStatusEvent
NoteIsNil applies the IsNil predicate on the "note" field.
func NoteLT ¶ added in v1.37.0
func NoteLT(v string) predicate.BacklogStatusEvent
NoteLT applies the LT predicate on the "note" field.
func NoteLTE ¶ added in v1.37.0
func NoteLTE(v string) predicate.BacklogStatusEvent
NoteLTE applies the LTE predicate on the "note" field.
func NoteNEQ ¶ added in v1.37.0
func NoteNEQ(v string) predicate.BacklogStatusEvent
NoteNEQ applies the NEQ predicate on the "note" field.
func NoteNotIn ¶ added in v1.37.0
func NoteNotIn(vs ...string) predicate.BacklogStatusEvent
NoteNotIn applies the NotIn predicate on the "note" field.
func NoteNotNil ¶ added in v1.37.0
func NoteNotNil() predicate.BacklogStatusEvent
NoteNotNil applies the NotNil predicate on the "note" field.
func Or ¶
func Or(predicates ...predicate.BacklogStatusEvent) predicate.BacklogStatusEvent
Or groups predicates with the OR operator between them.
func ToStatus ¶
func ToStatus(v string) predicate.BacklogStatusEvent
ToStatus applies equality check predicate on the "to_status" field. It's identical to ToStatusEQ.
func ToStatusContains ¶
func ToStatusContains(v string) predicate.BacklogStatusEvent
ToStatusContains applies the Contains predicate on the "to_status" field.
func ToStatusContainsFold ¶
func ToStatusContainsFold(v string) predicate.BacklogStatusEvent
ToStatusContainsFold applies the ContainsFold predicate on the "to_status" field.
func ToStatusEQ ¶
func ToStatusEQ(v string) predicate.BacklogStatusEvent
ToStatusEQ applies the EQ predicate on the "to_status" field.
func ToStatusEqualFold ¶
func ToStatusEqualFold(v string) predicate.BacklogStatusEvent
ToStatusEqualFold applies the EqualFold predicate on the "to_status" field.
func ToStatusGT ¶
func ToStatusGT(v string) predicate.BacklogStatusEvent
ToStatusGT applies the GT predicate on the "to_status" field.
func ToStatusGTE ¶
func ToStatusGTE(v string) predicate.BacklogStatusEvent
ToStatusGTE applies the GTE predicate on the "to_status" field.
func ToStatusHasPrefix ¶
func ToStatusHasPrefix(v string) predicate.BacklogStatusEvent
ToStatusHasPrefix applies the HasPrefix predicate on the "to_status" field.
func ToStatusHasSuffix ¶
func ToStatusHasSuffix(v string) predicate.BacklogStatusEvent
ToStatusHasSuffix applies the HasSuffix predicate on the "to_status" field.
func ToStatusIn ¶
func ToStatusIn(vs ...string) predicate.BacklogStatusEvent
ToStatusIn applies the In predicate on the "to_status" field.
func ToStatusLT ¶
func ToStatusLT(v string) predicate.BacklogStatusEvent
ToStatusLT applies the LT predicate on the "to_status" field.
func ToStatusLTE ¶
func ToStatusLTE(v string) predicate.BacklogStatusEvent
ToStatusLTE applies the LTE predicate on the "to_status" field.
func ToStatusNEQ ¶
func ToStatusNEQ(v string) predicate.BacklogStatusEvent
ToStatusNEQ applies the NEQ predicate on the "to_status" field.
func ToStatusNotIn ¶
func ToStatusNotIn(vs ...string) predicate.BacklogStatusEvent
ToStatusNotIn applies the NotIn predicate on the "to_status" field.
func TriggeredBy ¶
func TriggeredBy(v string) predicate.BacklogStatusEvent
TriggeredBy applies equality check predicate on the "triggered_by" field. It's identical to TriggeredByEQ.
func TriggeredByContains ¶
func TriggeredByContains(v string) predicate.BacklogStatusEvent
TriggeredByContains applies the Contains predicate on the "triggered_by" field.
func TriggeredByContainsFold ¶
func TriggeredByContainsFold(v string) predicate.BacklogStatusEvent
TriggeredByContainsFold applies the ContainsFold predicate on the "triggered_by" field.
func TriggeredByEQ ¶
func TriggeredByEQ(v string) predicate.BacklogStatusEvent
TriggeredByEQ applies the EQ predicate on the "triggered_by" field.
func TriggeredByEqualFold ¶
func TriggeredByEqualFold(v string) predicate.BacklogStatusEvent
TriggeredByEqualFold applies the EqualFold predicate on the "triggered_by" field.
func TriggeredByGT ¶
func TriggeredByGT(v string) predicate.BacklogStatusEvent
TriggeredByGT applies the GT predicate on the "triggered_by" field.
func TriggeredByGTE ¶
func TriggeredByGTE(v string) predicate.BacklogStatusEvent
TriggeredByGTE applies the GTE predicate on the "triggered_by" field.
func TriggeredByHasPrefix ¶
func TriggeredByHasPrefix(v string) predicate.BacklogStatusEvent
TriggeredByHasPrefix applies the HasPrefix predicate on the "triggered_by" field.
func TriggeredByHasSuffix ¶
func TriggeredByHasSuffix(v string) predicate.BacklogStatusEvent
TriggeredByHasSuffix applies the HasSuffix predicate on the "triggered_by" field.
func TriggeredByIn ¶
func TriggeredByIn(vs ...string) predicate.BacklogStatusEvent
TriggeredByIn applies the In predicate on the "triggered_by" field.
func TriggeredByLT ¶
func TriggeredByLT(v string) predicate.BacklogStatusEvent
TriggeredByLT applies the LT predicate on the "triggered_by" field.
func TriggeredByLTE ¶
func TriggeredByLTE(v string) predicate.BacklogStatusEvent
TriggeredByLTE applies the LTE predicate on the "triggered_by" field.
func TriggeredByNEQ ¶
func TriggeredByNEQ(v string) predicate.BacklogStatusEvent
TriggeredByNEQ applies the NEQ predicate on the "triggered_by" field.
func TriggeredByNotIn ¶
func TriggeredByNotIn(vs ...string) predicate.BacklogStatusEvent
TriggeredByNotIn applies the NotIn predicate on the "triggered_by" 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 BacklogStatusEvent queries.
func ByCreatedAt ¶
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption
ByCreatedAt orders the results by the created_at field.
func ByFromStatus ¶
func ByFromStatus(opts ...sql.OrderTermOption) OrderOption
ByFromStatus orders the results by the from_status 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 ¶ added in v1.37.0
func ByNote(opts ...sql.OrderTermOption) OrderOption
ByNote orders the results by the note field.
func ByToStatus ¶
func ByToStatus(opts ...sql.OrderTermOption) OrderOption
ByToStatus orders the results by the to_status field.
func ByTriggeredBy ¶
func ByTriggeredBy(opts ...sql.OrderTermOption) OrderOption
ByTriggeredBy orders the results by the triggered_by field.