Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Screenshot) predicate.Screenshot
- func CreatedAt(v time.Time) predicate.Screenshot
- func CreatedAtEQ(v time.Time) predicate.Screenshot
- func CreatedAtGT(v time.Time) predicate.Screenshot
- func CreatedAtGTE(v time.Time) predicate.Screenshot
- func CreatedAtIn(vs ...time.Time) predicate.Screenshot
- func CreatedAtLT(v time.Time) predicate.Screenshot
- func CreatedAtLTE(v time.Time) predicate.Screenshot
- func CreatedAtNEQ(v time.Time) predicate.Screenshot
- func CreatedAtNotIn(vs ...time.Time) predicate.Screenshot
- func ID(id uuid.UUID) predicate.Screenshot
- func IDEQ(id uuid.UUID) predicate.Screenshot
- func IDGT(id uuid.UUID) predicate.Screenshot
- func IDGTE(id uuid.UUID) predicate.Screenshot
- func IDIn(ids ...uuid.UUID) predicate.Screenshot
- func IDLT(id uuid.UUID) predicate.Screenshot
- func IDLTE(id uuid.UUID) predicate.Screenshot
- func IDNEQ(id uuid.UUID) predicate.Screenshot
- func IDNotIn(ids ...uuid.UUID) predicate.Screenshot
- func Not(p predicate.Screenshot) predicate.Screenshot
- func Or(predicates ...predicate.Screenshot) predicate.Screenshot
- func Status(v models.Status) predicate.Screenshot
- func StatusContains(v models.Status) predicate.Screenshot
- func StatusContainsFold(v models.Status) predicate.Screenshot
- func StatusEQ(v models.Status) predicate.Screenshot
- func StatusEqualFold(v models.Status) predicate.Screenshot
- func StatusGT(v models.Status) predicate.Screenshot
- func StatusGTE(v models.Status) predicate.Screenshot
- func StatusHasPrefix(v models.Status) predicate.Screenshot
- func StatusHasSuffix(v models.Status) predicate.Screenshot
- func StatusIn(vs ...models.Status) predicate.Screenshot
- func StatusLT(v models.Status) predicate.Screenshot
- func StatusLTE(v models.Status) predicate.Screenshot
- func StatusNEQ(v models.Status) predicate.Screenshot
- func StatusNotIn(vs ...models.Status) predicate.Screenshot
- func StoredPath(v string) predicate.Screenshot
- func StoredPathContains(v string) predicate.Screenshot
- func StoredPathContainsFold(v string) predicate.Screenshot
- func StoredPathEQ(v string) predicate.Screenshot
- func StoredPathEqualFold(v string) predicate.Screenshot
- func StoredPathGT(v string) predicate.Screenshot
- func StoredPathGTE(v string) predicate.Screenshot
- func StoredPathHasPrefix(v string) predicate.Screenshot
- func StoredPathHasSuffix(v string) predicate.Screenshot
- func StoredPathIn(vs ...string) predicate.Screenshot
- func StoredPathIsNil() predicate.Screenshot
- func StoredPathLT(v string) predicate.Screenshot
- func StoredPathLTE(v string) predicate.Screenshot
- func StoredPathNEQ(v string) predicate.Screenshot
- func StoredPathNotIn(vs ...string) predicate.Screenshot
- func StoredPathNotNil() predicate.Screenshot
- func URL(v string) predicate.Screenshot
- func URLContains(v string) predicate.Screenshot
- func URLContainsFold(v string) predicate.Screenshot
- func URLEQ(v string) predicate.Screenshot
- func URLEqualFold(v string) predicate.Screenshot
- func URLGT(v string) predicate.Screenshot
- func URLGTE(v string) predicate.Screenshot
- func URLHasPrefix(v string) predicate.Screenshot
- func URLHasSuffix(v string) predicate.Screenshot
- func URLIn(vs ...string) predicate.Screenshot
- func URLLT(v string) predicate.Screenshot
- func URLLTE(v string) predicate.Screenshot
- func URLNEQ(v string) predicate.Screenshot
- func URLNotIn(vs ...string) predicate.Screenshot
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the screenshot type in the database. Label = "screenshot" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldStatus holds the string denoting the status field in the database. FieldStatus = "status" // FieldURL holds the string denoting the url field in the database. FieldURL = "url" // FieldStoredPath holds the string denoting the stored_path field in the database. FieldStoredPath = "stored_path" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // Table holds the table name of the screenshot in the database. Table = "screenshots" )
Variables ¶
var Columns = []string{ FieldID, FieldStatus, FieldURL, FieldStoredPath, FieldCreatedAt, }
Columns holds all SQL columns for screenshot fields.
Functions ¶
func And ¶
func And(predicates ...predicate.Screenshot) predicate.Screenshot
And groups predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.Screenshot
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.Screenshot
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.Screenshot
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.Screenshot
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.Screenshot
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.Screenshot
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.Screenshot
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.Screenshot
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.Screenshot
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func IDEQ ¶
func IDEQ(id uuid.UUID) predicate.Screenshot
IDEQ applies the EQ predicate on the ID field.
func IDGT ¶
func IDGT(id uuid.UUID) predicate.Screenshot
IDGT applies the GT predicate on the ID field.
func IDGTE ¶
func IDGTE(id uuid.UUID) predicate.Screenshot
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...uuid.UUID) predicate.Screenshot
IDIn applies the In predicate on the ID field.
func IDLT ¶
func IDLT(id uuid.UUID) predicate.Screenshot
IDLT applies the LT predicate on the ID field.
func IDLTE ¶
func IDLTE(id uuid.UUID) predicate.Screenshot
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id uuid.UUID) predicate.Screenshot
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...uuid.UUID) predicate.Screenshot
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.Screenshot) predicate.Screenshot
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.Screenshot) predicate.Screenshot
Or groups predicates with the OR operator between them.
func Status ¶
func Status(v models.Status) predicate.Screenshot
Status applies equality check predicate on the "status" field. It's identical to StatusEQ.
func StatusContains ¶
func StatusContains(v models.Status) predicate.Screenshot
StatusContains applies the Contains predicate on the "status" field.
func StatusContainsFold ¶
func StatusContainsFold(v models.Status) predicate.Screenshot
StatusContainsFold applies the ContainsFold predicate on the "status" field.
func StatusEQ ¶
func StatusEQ(v models.Status) predicate.Screenshot
StatusEQ applies the EQ predicate on the "status" field.
func StatusEqualFold ¶
func StatusEqualFold(v models.Status) predicate.Screenshot
StatusEqualFold applies the EqualFold predicate on the "status" field.
func StatusGT ¶
func StatusGT(v models.Status) predicate.Screenshot
StatusGT applies the GT predicate on the "status" field.
func StatusGTE ¶
func StatusGTE(v models.Status) predicate.Screenshot
StatusGTE applies the GTE predicate on the "status" field.
func StatusHasPrefix ¶
func StatusHasPrefix(v models.Status) predicate.Screenshot
StatusHasPrefix applies the HasPrefix predicate on the "status" field.
func StatusHasSuffix ¶
func StatusHasSuffix(v models.Status) predicate.Screenshot
StatusHasSuffix applies the HasSuffix predicate on the "status" field.
func StatusIn ¶
func StatusIn(vs ...models.Status) predicate.Screenshot
StatusIn applies the In predicate on the "status" field.
func StatusLT ¶
func StatusLT(v models.Status) predicate.Screenshot
StatusLT applies the LT predicate on the "status" field.
func StatusLTE ¶
func StatusLTE(v models.Status) predicate.Screenshot
StatusLTE applies the LTE predicate on the "status" field.
func StatusNEQ ¶
func StatusNEQ(v models.Status) predicate.Screenshot
StatusNEQ applies the NEQ predicate on the "status" field.
func StatusNotIn ¶
func StatusNotIn(vs ...models.Status) predicate.Screenshot
StatusNotIn applies the NotIn predicate on the "status" field.
func StoredPath ¶
func StoredPath(v string) predicate.Screenshot
StoredPath applies equality check predicate on the "stored_path" field. It's identical to StoredPathEQ.
func StoredPathContains ¶
func StoredPathContains(v string) predicate.Screenshot
StoredPathContains applies the Contains predicate on the "stored_path" field.
func StoredPathContainsFold ¶
func StoredPathContainsFold(v string) predicate.Screenshot
StoredPathContainsFold applies the ContainsFold predicate on the "stored_path" field.
func StoredPathEQ ¶
func StoredPathEQ(v string) predicate.Screenshot
StoredPathEQ applies the EQ predicate on the "stored_path" field.
func StoredPathEqualFold ¶
func StoredPathEqualFold(v string) predicate.Screenshot
StoredPathEqualFold applies the EqualFold predicate on the "stored_path" field.
func StoredPathGT ¶
func StoredPathGT(v string) predicate.Screenshot
StoredPathGT applies the GT predicate on the "stored_path" field.
func StoredPathGTE ¶
func StoredPathGTE(v string) predicate.Screenshot
StoredPathGTE applies the GTE predicate on the "stored_path" field.
func StoredPathHasPrefix ¶
func StoredPathHasPrefix(v string) predicate.Screenshot
StoredPathHasPrefix applies the HasPrefix predicate on the "stored_path" field.
func StoredPathHasSuffix ¶
func StoredPathHasSuffix(v string) predicate.Screenshot
StoredPathHasSuffix applies the HasSuffix predicate on the "stored_path" field.
func StoredPathIn ¶
func StoredPathIn(vs ...string) predicate.Screenshot
StoredPathIn applies the In predicate on the "stored_path" field.
func StoredPathIsNil ¶
func StoredPathIsNil() predicate.Screenshot
StoredPathIsNil applies the IsNil predicate on the "stored_path" field.
func StoredPathLT ¶
func StoredPathLT(v string) predicate.Screenshot
StoredPathLT applies the LT predicate on the "stored_path" field.
func StoredPathLTE ¶
func StoredPathLTE(v string) predicate.Screenshot
StoredPathLTE applies the LTE predicate on the "stored_path" field.
func StoredPathNEQ ¶
func StoredPathNEQ(v string) predicate.Screenshot
StoredPathNEQ applies the NEQ predicate on the "stored_path" field.
func StoredPathNotIn ¶
func StoredPathNotIn(vs ...string) predicate.Screenshot
StoredPathNotIn applies the NotIn predicate on the "stored_path" field.
func StoredPathNotNil ¶
func StoredPathNotNil() predicate.Screenshot
StoredPathNotNil applies the NotNil predicate on the "stored_path" field.
func URL ¶
func URL(v string) predicate.Screenshot
URL applies equality check predicate on the "url" field. It's identical to URLEQ.
func URLContains ¶
func URLContains(v string) predicate.Screenshot
URLContains applies the Contains predicate on the "url" field.
func URLContainsFold ¶
func URLContainsFold(v string) predicate.Screenshot
URLContainsFold applies the ContainsFold predicate on the "url" field.
func URLEQ ¶
func URLEQ(v string) predicate.Screenshot
URLEQ applies the EQ predicate on the "url" field.
func URLEqualFold ¶
func URLEqualFold(v string) predicate.Screenshot
URLEqualFold applies the EqualFold predicate on the "url" field.
func URLGT ¶
func URLGT(v string) predicate.Screenshot
URLGT applies the GT predicate on the "url" field.
func URLGTE ¶
func URLGTE(v string) predicate.Screenshot
URLGTE applies the GTE predicate on the "url" field.
func URLHasPrefix ¶
func URLHasPrefix(v string) predicate.Screenshot
URLHasPrefix applies the HasPrefix predicate on the "url" field.
func URLHasSuffix ¶
func URLHasSuffix(v string) predicate.Screenshot
URLHasSuffix applies the HasSuffix predicate on the "url" field.
func URLIn ¶
func URLIn(vs ...string) predicate.Screenshot
URLIn applies the In predicate on the "url" field.
func URLLT ¶
func URLLT(v string) predicate.Screenshot
URLLT applies the LT predicate on the "url" field.
func URLLTE ¶
func URLLTE(v string) predicate.Screenshot
URLLTE applies the LTE predicate on the "url" field.
func URLNEQ ¶
func URLNEQ(v string) predicate.Screenshot
URLNEQ applies the NEQ predicate on the "url" field.
func URLNotIn ¶
func URLNotIn(vs ...string) predicate.Screenshot
URLNotIn applies the NotIn predicate on the "url" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.