alltypes

package
v0.0.0-...-ed3e5d4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 21, 2023 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the alltypes type in the database.
	Label = "all_types"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldInt holds the string denoting the int field in the database.
	FieldInt = "int"
	// FieldInt8 holds the string denoting the int8 field in the database.
	FieldInt8 = "int8"
	// FieldInt16 holds the string denoting the int16 field in the database.
	FieldInt16 = "int16"
	// FieldInt32 holds the string denoting the int32 field in the database.
	FieldInt32 = "int32"
	// FieldInt64 holds the string denoting the int64 field in the database.
	FieldInt64 = "int64"
	// FieldUint holds the string denoting the uint field in the database.
	FieldUint = "uint"
	// FieldUint8 holds the string denoting the uint8 field in the database.
	FieldUint8 = "uint8"
	// FieldUint16 holds the string denoting the uint16 field in the database.
	FieldUint16 = "uint16"
	// FieldUint32 holds the string denoting the uint32 field in the database.
	FieldUint32 = "uint32"
	// FieldUint64 holds the string denoting the uint64 field in the database.
	FieldUint64 = "uint64"
	// FieldFloat32 holds the string denoting the float32 field in the database.
	FieldFloat32 = "float32"
	// FieldFloat64 holds the string denoting the float64 field in the database.
	FieldFloat64 = "float64"
	// FieldStringType holds the string denoting the string_type field in the database.
	FieldStringType = "string_type"
	// FieldBool holds the string denoting the bool field in the database.
	FieldBool = "bool"
	// FieldUUID holds the string denoting the uuid field in the database.
	FieldUUID = "uuid"
	// FieldTime holds the string denoting the time field in the database.
	FieldTime = "time"
	// FieldText holds the string denoting the text field in the database.
	FieldText = "text"
	// FieldState holds the string denoting the state field in the database.
	FieldState = "state"
	// FieldBytes holds the string denoting the bytes field in the database.
	FieldBytes = "bytes"
	// FieldNilable holds the string denoting the nilable field in the database.
	FieldNilable = "nilable"
	// Table holds the table name of the alltypes in the database.
	Table = "all_types"
)

Variables

Columns holds all SQL columns for alltypes fields.

Functions

func And

func And(predicates ...predicate.AllTypes) predicate.AllTypes

And groups predicates with the AND operator between them.

func Bool

func Bool(v bool) predicate.AllTypes

Bool applies equality check predicate on the "bool" field. It's identical to BoolEQ.

func BoolEQ

func BoolEQ(v bool) predicate.AllTypes

BoolEQ applies the EQ predicate on the "bool" field.

func BoolNEQ

func BoolNEQ(v bool) predicate.AllTypes

BoolNEQ applies the NEQ predicate on the "bool" field.

func Bytes

func Bytes(v []byte) predicate.AllTypes

Bytes applies equality check predicate on the "bytes" field. It's identical to BytesEQ.

func BytesEQ

func BytesEQ(v []byte) predicate.AllTypes

BytesEQ applies the EQ predicate on the "bytes" field.

func BytesGT

func BytesGT(v []byte) predicate.AllTypes

BytesGT applies the GT predicate on the "bytes" field.

func BytesGTE

func BytesGTE(v []byte) predicate.AllTypes

BytesGTE applies the GTE predicate on the "bytes" field.

func BytesIn

func BytesIn(vs ...[]byte) predicate.AllTypes

BytesIn applies the In predicate on the "bytes" field.

func BytesLT

func BytesLT(v []byte) predicate.AllTypes

BytesLT applies the LT predicate on the "bytes" field.

func BytesLTE

func BytesLTE(v []byte) predicate.AllTypes

BytesLTE applies the LTE predicate on the "bytes" field.

func BytesNEQ

func BytesNEQ(v []byte) predicate.AllTypes

BytesNEQ applies the NEQ predicate on the "bytes" field.

func BytesNotIn

func BytesNotIn(vs ...[]byte) predicate.AllTypes

BytesNotIn applies the NotIn predicate on the "bytes" field.

func Float32

func Float32(v float32) predicate.AllTypes

Float32 applies equality check predicate on the "float32" field. It's identical to Float32EQ.

func Float32EQ

func Float32EQ(v float32) predicate.AllTypes

Float32EQ applies the EQ predicate on the "float32" field.

func Float32GT

func Float32GT(v float32) predicate.AllTypes

Float32GT applies the GT predicate on the "float32" field.

func Float32GTE

func Float32GTE(v float32) predicate.AllTypes

Float32GTE applies the GTE predicate on the "float32" field.

func Float32In

func Float32In(vs ...float32) predicate.AllTypes

Float32In applies the In predicate on the "float32" field.

func Float32LT

func Float32LT(v float32) predicate.AllTypes

Float32LT applies the LT predicate on the "float32" field.

func Float32LTE

func Float32LTE(v float32) predicate.AllTypes

Float32LTE applies the LTE predicate on the "float32" field.

func Float32NEQ

func Float32NEQ(v float32) predicate.AllTypes

Float32NEQ applies the NEQ predicate on the "float32" field.

func Float32NotIn

func Float32NotIn(vs ...float32) predicate.AllTypes

Float32NotIn applies the NotIn predicate on the "float32" field.

func Float64

func Float64(v float64) predicate.AllTypes

Float64 applies equality check predicate on the "float64" field. It's identical to Float64EQ.

func Float64EQ

func Float64EQ(v float64) predicate.AllTypes

Float64EQ applies the EQ predicate on the "float64" field.

func Float64GT

func Float64GT(v float64) predicate.AllTypes

Float64GT applies the GT predicate on the "float64" field.

func Float64GTE

func Float64GTE(v float64) predicate.AllTypes

Float64GTE applies the GTE predicate on the "float64" field.

func Float64In

func Float64In(vs ...float64) predicate.AllTypes

Float64In applies the In predicate on the "float64" field.

func Float64LT

func Float64LT(v float64) predicate.AllTypes

Float64LT applies the LT predicate on the "float64" field.

func Float64LTE

func Float64LTE(v float64) predicate.AllTypes

Float64LTE applies the LTE predicate on the "float64" field.

func Float64NEQ

func Float64NEQ(v float64) predicate.AllTypes

Float64NEQ applies the NEQ predicate on the "float64" field.

func Float64NotIn

func Float64NotIn(vs ...float64) predicate.AllTypes

Float64NotIn applies the NotIn predicate on the "float64" field.

func ID

func ID(id uint32) predicate.AllTypes

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uint32) predicate.AllTypes

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uint32) predicate.AllTypes

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uint32) predicate.AllTypes

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uint32) predicate.AllTypes

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uint32) predicate.AllTypes

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uint32) predicate.AllTypes

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uint32) predicate.AllTypes

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uint32) predicate.AllTypes

IDNotIn applies the NotIn predicate on the ID field.

func Int

func Int(v int) predicate.AllTypes

Int applies equality check predicate on the "int" field. It's identical to IntEQ.

func Int16

func Int16(v int16) predicate.AllTypes

Int16 applies equality check predicate on the "int16" field. It's identical to Int16EQ.

func Int16EQ

func Int16EQ(v int16) predicate.AllTypes

Int16EQ applies the EQ predicate on the "int16" field.

func Int16GT

func Int16GT(v int16) predicate.AllTypes

Int16GT applies the GT predicate on the "int16" field.

func Int16GTE

func Int16GTE(v int16) predicate.AllTypes

Int16GTE applies the GTE predicate on the "int16" field.

func Int16In

func Int16In(vs ...int16) predicate.AllTypes

Int16In applies the In predicate on the "int16" field.

func Int16LT

func Int16LT(v int16) predicate.AllTypes

Int16LT applies the LT predicate on the "int16" field.

func Int16LTE

func Int16LTE(v int16) predicate.AllTypes

Int16LTE applies the LTE predicate on the "int16" field.

func Int16NEQ

func Int16NEQ(v int16) predicate.AllTypes

Int16NEQ applies the NEQ predicate on the "int16" field.

func Int16NotIn

func Int16NotIn(vs ...int16) predicate.AllTypes

Int16NotIn applies the NotIn predicate on the "int16" field.

func Int32

func Int32(v int32) predicate.AllTypes

Int32 applies equality check predicate on the "int32" field. It's identical to Int32EQ.

func Int32EQ

func Int32EQ(v int32) predicate.AllTypes

Int32EQ applies the EQ predicate on the "int32" field.

func Int32GT

func Int32GT(v int32) predicate.AllTypes

Int32GT applies the GT predicate on the "int32" field.

func Int32GTE

func Int32GTE(v int32) predicate.AllTypes

Int32GTE applies the GTE predicate on the "int32" field.

func Int32In

func Int32In(vs ...int32) predicate.AllTypes

Int32In applies the In predicate on the "int32" field.

func Int32LT

func Int32LT(v int32) predicate.AllTypes

Int32LT applies the LT predicate on the "int32" field.

func Int32LTE

func Int32LTE(v int32) predicate.AllTypes

Int32LTE applies the LTE predicate on the "int32" field.

func Int32NEQ

func Int32NEQ(v int32) predicate.AllTypes

Int32NEQ applies the NEQ predicate on the "int32" field.

func Int32NotIn

func Int32NotIn(vs ...int32) predicate.AllTypes

Int32NotIn applies the NotIn predicate on the "int32" field.

func Int64

func Int64(v int64) predicate.AllTypes

Int64 applies equality check predicate on the "int64" field. It's identical to Int64EQ.

func Int64EQ

func Int64EQ(v int64) predicate.AllTypes

Int64EQ applies the EQ predicate on the "int64" field.

func Int64GT

func Int64GT(v int64) predicate.AllTypes

Int64GT applies the GT predicate on the "int64" field.

func Int64GTE

func Int64GTE(v int64) predicate.AllTypes

Int64GTE applies the GTE predicate on the "int64" field.

func Int64In

func Int64In(vs ...int64) predicate.AllTypes

Int64In applies the In predicate on the "int64" field.

func Int64LT

func Int64LT(v int64) predicate.AllTypes

Int64LT applies the LT predicate on the "int64" field.

func Int64LTE

func Int64LTE(v int64) predicate.AllTypes

Int64LTE applies the LTE predicate on the "int64" field.

func Int64NEQ

func Int64NEQ(v int64) predicate.AllTypes

Int64NEQ applies the NEQ predicate on the "int64" field.

func Int64NotIn

func Int64NotIn(vs ...int64) predicate.AllTypes

Int64NotIn applies the NotIn predicate on the "int64" field.

func Int8

func Int8(v int8) predicate.AllTypes

Int8 applies equality check predicate on the "int8" field. It's identical to Int8EQ.

func Int8EQ

func Int8EQ(v int8) predicate.AllTypes

Int8EQ applies the EQ predicate on the "int8" field.

func Int8GT

func Int8GT(v int8) predicate.AllTypes

Int8GT applies the GT predicate on the "int8" field.

func Int8GTE

func Int8GTE(v int8) predicate.AllTypes

Int8GTE applies the GTE predicate on the "int8" field.

func Int8In

func Int8In(vs ...int8) predicate.AllTypes

Int8In applies the In predicate on the "int8" field.

func Int8LT

func Int8LT(v int8) predicate.AllTypes

Int8LT applies the LT predicate on the "int8" field.

func Int8LTE

func Int8LTE(v int8) predicate.AllTypes

Int8LTE applies the LTE predicate on the "int8" field.

func Int8NEQ

func Int8NEQ(v int8) predicate.AllTypes

Int8NEQ applies the NEQ predicate on the "int8" field.

func Int8NotIn

func Int8NotIn(vs ...int8) predicate.AllTypes

Int8NotIn applies the NotIn predicate on the "int8" field.

func IntEQ

func IntEQ(v int) predicate.AllTypes

IntEQ applies the EQ predicate on the "int" field.

func IntGT

func IntGT(v int) predicate.AllTypes

IntGT applies the GT predicate on the "int" field.

func IntGTE

func IntGTE(v int) predicate.AllTypes

IntGTE applies the GTE predicate on the "int" field.

func IntIn

func IntIn(vs ...int) predicate.AllTypes

IntIn applies the In predicate on the "int" field.

func IntLT

func IntLT(v int) predicate.AllTypes

IntLT applies the LT predicate on the "int" field.

func IntLTE

func IntLTE(v int) predicate.AllTypes

IntLTE applies the LTE predicate on the "int" field.

func IntNEQ

func IntNEQ(v int) predicate.AllTypes

IntNEQ applies the NEQ predicate on the "int" field.

func IntNotIn

func IntNotIn(vs ...int) predicate.AllTypes

IntNotIn applies the NotIn predicate on the "int" field.

func Nilable

func Nilable(v string) predicate.AllTypes

Nilable applies equality check predicate on the "nilable" field. It's identical to NilableEQ.

func NilableContains

func NilableContains(v string) predicate.AllTypes

NilableContains applies the Contains predicate on the "nilable" field.

func NilableContainsFold

func NilableContainsFold(v string) predicate.AllTypes

NilableContainsFold applies the ContainsFold predicate on the "nilable" field.

func NilableEQ

func NilableEQ(v string) predicate.AllTypes

NilableEQ applies the EQ predicate on the "nilable" field.

func NilableEqualFold

func NilableEqualFold(v string) predicate.AllTypes

NilableEqualFold applies the EqualFold predicate on the "nilable" field.

func NilableGT

func NilableGT(v string) predicate.AllTypes

NilableGT applies the GT predicate on the "nilable" field.

func NilableGTE

func NilableGTE(v string) predicate.AllTypes

NilableGTE applies the GTE predicate on the "nilable" field.

func NilableHasPrefix

func NilableHasPrefix(v string) predicate.AllTypes

NilableHasPrefix applies the HasPrefix predicate on the "nilable" field.

func NilableHasSuffix

func NilableHasSuffix(v string) predicate.AllTypes

NilableHasSuffix applies the HasSuffix predicate on the "nilable" field.

func NilableIn

func NilableIn(vs ...string) predicate.AllTypes

NilableIn applies the In predicate on the "nilable" field.

func NilableLT

func NilableLT(v string) predicate.AllTypes

NilableLT applies the LT predicate on the "nilable" field.

func NilableLTE

func NilableLTE(v string) predicate.AllTypes

NilableLTE applies the LTE predicate on the "nilable" field.

func NilableNEQ

func NilableNEQ(v string) predicate.AllTypes

NilableNEQ applies the NEQ predicate on the "nilable" field.

func NilableNotIn

func NilableNotIn(vs ...string) predicate.AllTypes

NilableNotIn applies the NotIn predicate on the "nilable" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.AllTypes) predicate.AllTypes

Or groups predicates with the OR operator between them.

func StateEQ

func StateEQ(v State) predicate.AllTypes

StateEQ applies the EQ predicate on the "state" field.

func StateIn

func StateIn(vs ...State) predicate.AllTypes

StateIn applies the In predicate on the "state" field.

func StateNEQ

func StateNEQ(v State) predicate.AllTypes

StateNEQ applies the NEQ predicate on the "state" field.

func StateNotIn

func StateNotIn(vs ...State) predicate.AllTypes

StateNotIn applies the NotIn predicate on the "state" field.

func StateValidator

func StateValidator(s State) error

StateValidator is a validator for the "state" field enum values. It is called by the builders before save.

func StringType

func StringType(v string) predicate.AllTypes

StringType applies equality check predicate on the "string_type" field. It's identical to StringTypeEQ.

func StringTypeContains

func StringTypeContains(v string) predicate.AllTypes

StringTypeContains applies the Contains predicate on the "string_type" field.

func StringTypeContainsFold

func StringTypeContainsFold(v string) predicate.AllTypes

StringTypeContainsFold applies the ContainsFold predicate on the "string_type" field.

func StringTypeEQ

func StringTypeEQ(v string) predicate.AllTypes

StringTypeEQ applies the EQ predicate on the "string_type" field.

func StringTypeEqualFold

func StringTypeEqualFold(v string) predicate.AllTypes

StringTypeEqualFold applies the EqualFold predicate on the "string_type" field.

func StringTypeGT

func StringTypeGT(v string) predicate.AllTypes

StringTypeGT applies the GT predicate on the "string_type" field.

func StringTypeGTE

func StringTypeGTE(v string) predicate.AllTypes

StringTypeGTE applies the GTE predicate on the "string_type" field.

func StringTypeHasPrefix

func StringTypeHasPrefix(v string) predicate.AllTypes

StringTypeHasPrefix applies the HasPrefix predicate on the "string_type" field.

func StringTypeHasSuffix

func StringTypeHasSuffix(v string) predicate.AllTypes

StringTypeHasSuffix applies the HasSuffix predicate on the "string_type" field.

func StringTypeIn

func StringTypeIn(vs ...string) predicate.AllTypes

StringTypeIn applies the In predicate on the "string_type" field.

func StringTypeLT

func StringTypeLT(v string) predicate.AllTypes

StringTypeLT applies the LT predicate on the "string_type" field.

func StringTypeLTE

func StringTypeLTE(v string) predicate.AllTypes

StringTypeLTE applies the LTE predicate on the "string_type" field.

func StringTypeNEQ

func StringTypeNEQ(v string) predicate.AllTypes

StringTypeNEQ applies the NEQ predicate on the "string_type" field.

func StringTypeNotIn

func StringTypeNotIn(vs ...string) predicate.AllTypes

StringTypeNotIn applies the NotIn predicate on the "string_type" field.

func Text

func Text(v string) predicate.AllTypes

Text applies equality check predicate on the "text" field. It's identical to TextEQ.

func TextContains

func TextContains(v string) predicate.AllTypes

TextContains applies the Contains predicate on the "text" field.

func TextContainsFold

func TextContainsFold(v string) predicate.AllTypes

TextContainsFold applies the ContainsFold predicate on the "text" field.

func TextEQ

func TextEQ(v string) predicate.AllTypes

TextEQ applies the EQ predicate on the "text" field.

func TextEqualFold

func TextEqualFold(v string) predicate.AllTypes

TextEqualFold applies the EqualFold predicate on the "text" field.

func TextGT

func TextGT(v string) predicate.AllTypes

TextGT applies the GT predicate on the "text" field.

func TextGTE

func TextGTE(v string) predicate.AllTypes

TextGTE applies the GTE predicate on the "text" field.

func TextHasPrefix

func TextHasPrefix(v string) predicate.AllTypes

TextHasPrefix applies the HasPrefix predicate on the "text" field.

func TextHasSuffix

func TextHasSuffix(v string) predicate.AllTypes

TextHasSuffix applies the HasSuffix predicate on the "text" field.

func TextIn

func TextIn(vs ...string) predicate.AllTypes

TextIn applies the In predicate on the "text" field.

func TextLT

func TextLT(v string) predicate.AllTypes

TextLT applies the LT predicate on the "text" field.

func TextLTE

func TextLTE(v string) predicate.AllTypes

TextLTE applies the LTE predicate on the "text" field.

func TextNEQ

func TextNEQ(v string) predicate.AllTypes

TextNEQ applies the NEQ predicate on the "text" field.

func TextNotIn

func TextNotIn(vs ...string) predicate.AllTypes

TextNotIn applies the NotIn predicate on the "text" field.

func Time

func Time(v time.Time) predicate.AllTypes

Time applies equality check predicate on the "time" field. It's identical to TimeEQ.

func TimeEQ

func TimeEQ(v time.Time) predicate.AllTypes

TimeEQ applies the EQ predicate on the "time" field.

func TimeGT

func TimeGT(v time.Time) predicate.AllTypes

TimeGT applies the GT predicate on the "time" field.

func TimeGTE

func TimeGTE(v time.Time) predicate.AllTypes

TimeGTE applies the GTE predicate on the "time" field.

func TimeIn

func TimeIn(vs ...time.Time) predicate.AllTypes

TimeIn applies the In predicate on the "time" field.

func TimeLT

func TimeLT(v time.Time) predicate.AllTypes

TimeLT applies the LT predicate on the "time" field.

func TimeLTE

func TimeLTE(v time.Time) predicate.AllTypes

TimeLTE applies the LTE predicate on the "time" field.

func TimeNEQ

func TimeNEQ(v time.Time) predicate.AllTypes

TimeNEQ applies the NEQ predicate on the "time" field.

func TimeNotIn

func TimeNotIn(vs ...time.Time) predicate.AllTypes

TimeNotIn applies the NotIn predicate on the "time" field.

func UUID

func UUID(v uuid.UUID) predicate.AllTypes

UUID applies equality check predicate on the "uuid" field. It's identical to UUIDEQ.

func UUIDEQ

func UUIDEQ(v uuid.UUID) predicate.AllTypes

UUIDEQ applies the EQ predicate on the "uuid" field.

func UUIDGT

func UUIDGT(v uuid.UUID) predicate.AllTypes

UUIDGT applies the GT predicate on the "uuid" field.

func UUIDGTE

func UUIDGTE(v uuid.UUID) predicate.AllTypes

UUIDGTE applies the GTE predicate on the "uuid" field.

func UUIDIn

func UUIDIn(vs ...uuid.UUID) predicate.AllTypes

UUIDIn applies the In predicate on the "uuid" field.

func UUIDLT

func UUIDLT(v uuid.UUID) predicate.AllTypes

UUIDLT applies the LT predicate on the "uuid" field.

func UUIDLTE

func UUIDLTE(v uuid.UUID) predicate.AllTypes

UUIDLTE applies the LTE predicate on the "uuid" field.

func UUIDNEQ

func UUIDNEQ(v uuid.UUID) predicate.AllTypes

UUIDNEQ applies the NEQ predicate on the "uuid" field.

func UUIDNotIn

func UUIDNotIn(vs ...uuid.UUID) predicate.AllTypes

UUIDNotIn applies the NotIn predicate on the "uuid" field.

func Uint

func Uint(v uint) predicate.AllTypes

Uint applies equality check predicate on the "uint" field. It's identical to UintEQ.

func Uint16

func Uint16(v uint16) predicate.AllTypes

Uint16 applies equality check predicate on the "uint16" field. It's identical to Uint16EQ.

func Uint16EQ

func Uint16EQ(v uint16) predicate.AllTypes

Uint16EQ applies the EQ predicate on the "uint16" field.

func Uint16GT

func Uint16GT(v uint16) predicate.AllTypes

Uint16GT applies the GT predicate on the "uint16" field.

func Uint16GTE

func Uint16GTE(v uint16) predicate.AllTypes

Uint16GTE applies the GTE predicate on the "uint16" field.

func Uint16In

func Uint16In(vs ...uint16) predicate.AllTypes

Uint16In applies the In predicate on the "uint16" field.

func Uint16LT

func Uint16LT(v uint16) predicate.AllTypes

Uint16LT applies the LT predicate on the "uint16" field.

func Uint16LTE

func Uint16LTE(v uint16) predicate.AllTypes

Uint16LTE applies the LTE predicate on the "uint16" field.

func Uint16NEQ

func Uint16NEQ(v uint16) predicate.AllTypes

Uint16NEQ applies the NEQ predicate on the "uint16" field.

func Uint16NotIn

func Uint16NotIn(vs ...uint16) predicate.AllTypes

Uint16NotIn applies the NotIn predicate on the "uint16" field.

func Uint32

func Uint32(v uint32) predicate.AllTypes

Uint32 applies equality check predicate on the "uint32" field. It's identical to Uint32EQ.

func Uint32EQ

func Uint32EQ(v uint32) predicate.AllTypes

Uint32EQ applies the EQ predicate on the "uint32" field.

func Uint32GT

func Uint32GT(v uint32) predicate.AllTypes

Uint32GT applies the GT predicate on the "uint32" field.

func Uint32GTE

func Uint32GTE(v uint32) predicate.AllTypes

Uint32GTE applies the GTE predicate on the "uint32" field.

func Uint32In

func Uint32In(vs ...uint32) predicate.AllTypes

Uint32In applies the In predicate on the "uint32" field.

func Uint32LT

func Uint32LT(v uint32) predicate.AllTypes

Uint32LT applies the LT predicate on the "uint32" field.

func Uint32LTE

func Uint32LTE(v uint32) predicate.AllTypes

Uint32LTE applies the LTE predicate on the "uint32" field.

func Uint32NEQ

func Uint32NEQ(v uint32) predicate.AllTypes

Uint32NEQ applies the NEQ predicate on the "uint32" field.

func Uint32NotIn

func Uint32NotIn(vs ...uint32) predicate.AllTypes

Uint32NotIn applies the NotIn predicate on the "uint32" field.

func Uint64

func Uint64(v uint64) predicate.AllTypes

Uint64 applies equality check predicate on the "uint64" field. It's identical to Uint64EQ.

func Uint64EQ

func Uint64EQ(v uint64) predicate.AllTypes

Uint64EQ applies the EQ predicate on the "uint64" field.

func Uint64GT

func Uint64GT(v uint64) predicate.AllTypes

Uint64GT applies the GT predicate on the "uint64" field.

func Uint64GTE

func Uint64GTE(v uint64) predicate.AllTypes

Uint64GTE applies the GTE predicate on the "uint64" field.

func Uint64In

func Uint64In(vs ...uint64) predicate.AllTypes

Uint64In applies the In predicate on the "uint64" field.

func Uint64LT

func Uint64LT(v uint64) predicate.AllTypes

Uint64LT applies the LT predicate on the "uint64" field.

func Uint64LTE

func Uint64LTE(v uint64) predicate.AllTypes

Uint64LTE applies the LTE predicate on the "uint64" field.

func Uint64NEQ

func Uint64NEQ(v uint64) predicate.AllTypes

Uint64NEQ applies the NEQ predicate on the "uint64" field.

func Uint64NotIn

func Uint64NotIn(vs ...uint64) predicate.AllTypes

Uint64NotIn applies the NotIn predicate on the "uint64" field.

func Uint8

func Uint8(v uint8) predicate.AllTypes

Uint8 applies equality check predicate on the "uint8" field. It's identical to Uint8EQ.

func Uint8EQ

func Uint8EQ(v uint8) predicate.AllTypes

Uint8EQ applies the EQ predicate on the "uint8" field.

func Uint8GT

func Uint8GT(v uint8) predicate.AllTypes

Uint8GT applies the GT predicate on the "uint8" field.

func Uint8GTE

func Uint8GTE(v uint8) predicate.AllTypes

Uint8GTE applies the GTE predicate on the "uint8" field.

func Uint8In

func Uint8In(vs ...uint8) predicate.AllTypes

Uint8In applies the In predicate on the "uint8" field.

func Uint8LT

func Uint8LT(v uint8) predicate.AllTypes

Uint8LT applies the LT predicate on the "uint8" field.

func Uint8LTE

func Uint8LTE(v uint8) predicate.AllTypes

Uint8LTE applies the LTE predicate on the "uint8" field.

func Uint8NEQ

func Uint8NEQ(v uint8) predicate.AllTypes

Uint8NEQ applies the NEQ predicate on the "uint8" field.

func Uint8NotIn

func Uint8NotIn(vs ...uint8) predicate.AllTypes

Uint8NotIn applies the NotIn predicate on the "uint8" field.

func UintEQ

func UintEQ(v uint) predicate.AllTypes

UintEQ applies the EQ predicate on the "uint" field.

func UintGT

func UintGT(v uint) predicate.AllTypes

UintGT applies the GT predicate on the "uint" field.

func UintGTE

func UintGTE(v uint) predicate.AllTypes

UintGTE applies the GTE predicate on the "uint" field.

func UintIn

func UintIn(vs ...uint) predicate.AllTypes

UintIn applies the In predicate on the "uint" field.

func UintLT

func UintLT(v uint) predicate.AllTypes

UintLT applies the LT predicate on the "uint" field.

func UintLTE

func UintLTE(v uint) predicate.AllTypes

UintLTE applies the LTE predicate on the "uint" field.

func UintNEQ

func UintNEQ(v uint) predicate.AllTypes

UintNEQ applies the NEQ predicate on the "uint" field.

func UintNotIn

func UintNotIn(vs ...uint) predicate.AllTypes

UintNotIn applies the NotIn predicate on the "uint" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

type State

type State string

State defines the type for the "state" enum field.

const (
	StateOn  State = "on"
	StateOff State = "off"
)

State values.

func (State) String

func (s State) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL