item

package
v0.11.2 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the item type in the database.
	Label = "item"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldText holds the string denoting the text field in the database.
	FieldText = "text"
)

Variables

View Source
var (
	// TextValidator is a validator for the "text" field. It is called by the builders before save.
	TextValidator func(string) error
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Functions

func And

func And(predicates ...predicate.Item) predicate.Item

And groups predicates with the AND operator between them.

func ID

func ID(id string) predicate.Item

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.Item

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.Item

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.Item

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.Item

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.Item

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.Item

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.Item

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.Item

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Item) predicate.Item

Or groups predicates with the OR operator between them.

func Text added in v0.9.1

func Text(v string) predicate.Item

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

func TextContains added in v0.9.1

func TextContains(v string) predicate.Item

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

func TextEQ added in v0.9.1

func TextEQ(v string) predicate.Item

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

func TextGT added in v0.9.1

func TextGT(v string) predicate.Item

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

func TextGTE added in v0.9.1

func TextGTE(v string) predicate.Item

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

func TextHasPrefix added in v0.9.1

func TextHasPrefix(v string) predicate.Item

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

func TextHasSuffix added in v0.9.1

func TextHasSuffix(v string) predicate.Item

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

func TextIn added in v0.9.1

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

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

func TextIsNil added in v0.9.1

func TextIsNil() predicate.Item

TextIsNil applies the IsNil predicate on the "text" field.

func TextLT added in v0.9.1

func TextLT(v string) predicate.Item

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

func TextLTE added in v0.9.1

func TextLTE(v string) predicate.Item

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

func TextNEQ added in v0.9.1

func TextNEQ(v string) predicate.Item

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

func TextNotIn added in v0.9.1

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

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

func TextNotNil added in v0.9.1

func TextNotNil() predicate.Item

TextNotNil applies the NotNil predicate on the "text" field.

Types

This section is empty.

Jump to

Keyboard shortcuts

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