thing

package
v0.0.0-...-2ed13ab Latest Latest
Warning

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

Go to latest
Published: Jan 13, 2022 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the thing type in the database.
	Label = "thing"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldUUID holds the string denoting the uuid field in the database.
	FieldUUID = "uuid"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldSecretKey holds the string denoting the secret_key field in the database.
	FieldSecretKey = "secret_key"
	// EdgeRoom holds the string denoting the room edge name in mutations.
	EdgeRoom = "room"
	// Table holds the table name of the thing in the database.
	Table = "things"
	// RoomTable is the table that holds the room relation/edge.
	RoomTable = "things"
	// RoomInverseTable is the table name for the Room entity.
	// It exists in this package in order to avoid circular dependency with the "room" package.
	RoomInverseTable = "rooms"
	// RoomColumn is the table column denoting the room relation/edge.
	RoomColumn = "room_things"
)

Variables

View Source
var (
	// DefaultUUID holds the default value on creation for the "uuid" field.
	DefaultUUID func() uuid.UUID
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// DefaultSecretKey holds the default value on creation for the "secret_key" field.
	DefaultSecretKey func() uuid.UUID
)

Columns holds all SQL columns for thing fields.

View Source
var ForeignKeys = []string{
	"room_things",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "things" table and are not defined as standalone fields in the schema.

Functions

func And

func And(predicates ...predicate.Thing) predicate.Thing

And groups predicates with the AND operator between them.

func HasRoom

func HasRoom() predicate.Thing

HasRoom applies the HasEdge predicate on the "room" edge.

func HasRoomWith

func HasRoomWith(preds ...predicate.Room) predicate.Thing

HasRoomWith applies the HasEdge predicate on the "room" edge with a given conditions (other predicates).

func ID

func ID(id int) predicate.Thing

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Thing

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Thing

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Thing

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...int) predicate.Thing

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Thing

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Thing

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Thing

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...int) predicate.Thing

IDNotIn applies the NotIn predicate on the ID field.

func Name

func Name(v string) predicate.Thing

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.Thing

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.Thing

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.Thing

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.Thing

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.Thing

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.Thing

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.Thing

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.Thing

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.Thing

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.Thing

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.Thing

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.Thing

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.Thing

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Thing) predicate.Thing

Or groups predicates with the OR operator between them.

func SecretKey

func SecretKey(v uuid.UUID) predicate.Thing

SecretKey applies equality check predicate on the "secret_key" field. It's identical to SecretKeyEQ.

func SecretKeyEQ

func SecretKeyEQ(v uuid.UUID) predicate.Thing

SecretKeyEQ applies the EQ predicate on the "secret_key" field.

func SecretKeyGT

func SecretKeyGT(v uuid.UUID) predicate.Thing

SecretKeyGT applies the GT predicate on the "secret_key" field.

func SecretKeyGTE

func SecretKeyGTE(v uuid.UUID) predicate.Thing

SecretKeyGTE applies the GTE predicate on the "secret_key" field.

func SecretKeyIn

func SecretKeyIn(vs ...uuid.UUID) predicate.Thing

SecretKeyIn applies the In predicate on the "secret_key" field.

func SecretKeyLT

func SecretKeyLT(v uuid.UUID) predicate.Thing

SecretKeyLT applies the LT predicate on the "secret_key" field.

func SecretKeyLTE

func SecretKeyLTE(v uuid.UUID) predicate.Thing

SecretKeyLTE applies the LTE predicate on the "secret_key" field.

func SecretKeyNEQ

func SecretKeyNEQ(v uuid.UUID) predicate.Thing

SecretKeyNEQ applies the NEQ predicate on the "secret_key" field.

func SecretKeyNotIn

func SecretKeyNotIn(vs ...uuid.UUID) predicate.Thing

SecretKeyNotIn applies the NotIn predicate on the "secret_key" field.

func UUID

func UUID(v uuid.UUID) predicate.Thing

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

func UUIDEQ

func UUIDEQ(v uuid.UUID) predicate.Thing

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

func UUIDGT

func UUIDGT(v uuid.UUID) predicate.Thing

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

func UUIDGTE

func UUIDGTE(v uuid.UUID) predicate.Thing

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

func UUIDIn

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

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

func UUIDLT

func UUIDLT(v uuid.UUID) predicate.Thing

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

func UUIDLTE

func UUIDLTE(v uuid.UUID) predicate.Thing

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

func UUIDNEQ

func UUIDNEQ(v uuid.UUID) predicate.Thing

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

func UUIDNotIn

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

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

func ValidColumn

func ValidColumn(column string) bool

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

Types

This section is empty.

Jump to

Keyboard shortcuts

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