Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Blob) predicate.Blob
- func ID(id uuid.UUID) predicate.Blob
- func IDEQ(id uuid.UUID) predicate.Blob
- func IDGT(id uuid.UUID) predicate.Blob
- func IDGTE(id uuid.UUID) predicate.Blob
- func IDIn(ids ...uuid.UUID) predicate.Blob
- func IDLT(id uuid.UUID) predicate.Blob
- func IDLTE(id uuid.UUID) predicate.Blob
- func IDNEQ(id uuid.UUID) predicate.Blob
- func IDNotIn(ids ...uuid.UUID) predicate.Blob
- func Not(p predicate.Blob) predicate.Blob
- func Or(predicates ...predicate.Blob) predicate.Blob
- func UUID(v uuid.UUID) predicate.Blob
- func UUIDEQ(v uuid.UUID) predicate.Blob
- func UUIDGT(v uuid.UUID) predicate.Blob
- func UUIDGTE(v uuid.UUID) predicate.Blob
- func UUIDIn(vs ...uuid.UUID) predicate.Blob
- func UUIDLT(v uuid.UUID) predicate.Blob
- func UUIDLTE(v uuid.UUID) predicate.Blob
- func UUIDNEQ(v uuid.UUID) predicate.Blob
- func UUIDNotIn(vs ...uuid.UUID) predicate.Blob
Constants ¶
View Source
const ( // Label holds the string label denoting the blob type in the database. Label = "blob" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldUUID holds the string denoting the uuid vertex property in the database. FieldUUID = "uuid" // Table holds the table name of the blob in the database. Table = "blobs" )
Variables ¶
View Source
var Columns = []string{ FieldID, FieldUUID, }
Columns holds all SQL columns for blob fields.
View Source
var ( // DefaultUUID holds the default value on creation for the uuid field. DefaultUUID = descUUID.Default.(func() uuid.UUID) )
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.