metadata

package
v0.10.1 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the metadata type in the database.
	Label = "metadata"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldAge holds the string denoting the age field in the database.
	FieldAge = "age"
	// FieldParentID holds the string denoting the parent_id field in the database.
	FieldParentID = "parent_id"
	// EdgeUser holds the string denoting the user edge name in mutations.
	EdgeUser = "user"
	// EdgeChildren holds the string denoting the children edge name in mutations.
	EdgeChildren = "children"
	// EdgeParent holds the string denoting the parent edge name in mutations.
	EdgeParent = "parent"
	// Table holds the table name of the metadata in the database.
	Table = "metadata"
	// UserTable is the table that holds the user relation/edge.
	UserTable = "metadata"
	// UserInverseTable is the table name for the User entity.
	// It exists in this package in order to avoid circular dependency with the "user" package.
	UserInverseTable = "users"
	// UserColumn is the table column denoting the user relation/edge.
	UserColumn = "id"
	// ChildrenTable is the table that holds the children relation/edge.
	ChildrenTable = "metadata"
	// ChildrenColumn is the table column denoting the children relation/edge.
	ChildrenColumn = "parent_id"
	// ParentTable is the table that holds the parent relation/edge.
	ParentTable = "metadata"
	// ParentColumn is the table column denoting the parent relation/edge.
	ParentColumn = "parent_id"
)

Variables

Columns holds all SQL columns for metadata fields.

View Source
var (
	// DefaultAge holds the default value on creation for the "age" field.
	DefaultAge int
)

Functions

func Age

func Age(v int) predicate.Metadata

Age applies equality check predicate on the "age" field. It's identical to AgeEQ.

func AgeEQ

func AgeEQ(v int) predicate.Metadata

AgeEQ applies the EQ predicate on the "age" field.

func AgeGT

func AgeGT(v int) predicate.Metadata

AgeGT applies the GT predicate on the "age" field.

func AgeGTE

func AgeGTE(v int) predicate.Metadata

AgeGTE applies the GTE predicate on the "age" field.

func AgeIn

func AgeIn(vs ...int) predicate.Metadata

AgeIn applies the In predicate on the "age" field.

func AgeLT

func AgeLT(v int) predicate.Metadata

AgeLT applies the LT predicate on the "age" field.

func AgeLTE

func AgeLTE(v int) predicate.Metadata

AgeLTE applies the LTE predicate on the "age" field.

func AgeNEQ

func AgeNEQ(v int) predicate.Metadata

AgeNEQ applies the NEQ predicate on the "age" field.

func AgeNotIn

func AgeNotIn(vs ...int) predicate.Metadata

AgeNotIn applies the NotIn predicate on the "age" field.

func And

func And(predicates ...predicate.Metadata) predicate.Metadata

And groups predicates with the AND operator between them.

func HasChildren added in v0.9.0

func HasChildren() predicate.Metadata

HasChildren applies the HasEdge predicate on the "children" edge.

func HasChildrenWith added in v0.9.0

func HasChildrenWith(preds ...predicate.Metadata) predicate.Metadata

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

func HasParent added in v0.9.0

func HasParent() predicate.Metadata

HasParent applies the HasEdge predicate on the "parent" edge.

func HasParentWith added in v0.9.0

func HasParentWith(preds ...predicate.Metadata) predicate.Metadata

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

func HasUser

func HasUser() predicate.Metadata

HasUser applies the HasEdge predicate on the "user" edge.

func HasUserWith

func HasUserWith(preds ...predicate.User) predicate.Metadata

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

func ID

func ID(id int) predicate.Metadata

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Metadata

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Metadata

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Metadata

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Metadata

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Metadata

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Metadata

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

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.Metadata) predicate.Metadata

Or groups predicates with the OR operator between them.

func ParentID added in v0.9.0

func ParentID(v int) predicate.Metadata

ParentID applies equality check predicate on the "parent_id" field. It's identical to ParentIDEQ.

func ParentIDEQ added in v0.9.0

func ParentIDEQ(v int) predicate.Metadata

ParentIDEQ applies the EQ predicate on the "parent_id" field.

func ParentIDIn added in v0.9.0

func ParentIDIn(vs ...int) predicate.Metadata

ParentIDIn applies the In predicate on the "parent_id" field.

func ParentIDIsNil added in v0.9.0

func ParentIDIsNil() predicate.Metadata

ParentIDIsNil applies the IsNil predicate on the "parent_id" field.

func ParentIDNEQ added in v0.9.0

func ParentIDNEQ(v int) predicate.Metadata

ParentIDNEQ applies the NEQ predicate on the "parent_id" field.

func ParentIDNotIn added in v0.9.0

func ParentIDNotIn(vs ...int) predicate.Metadata

ParentIDNotIn applies the NotIn predicate on the "parent_id" field.

func ParentIDNotNil added in v0.9.0

func ParentIDNotNil() predicate.Metadata

ParentIDNotNil applies the NotNil predicate on the "parent_id" 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