annotation

package
v0.2.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the annotation type in the database.
	Label = "annotation"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldDocumentID holds the string denoting the document_id field in the database.
	FieldDocumentID = "document_id"
	// FieldNodeID holds the string denoting the node_id field in the database.
	FieldNodeID = "node_id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldValue holds the string denoting the value field in the database.
	FieldValue = "value"
	// FieldIsUnique holds the string denoting the is_unique field in the database.
	FieldIsUnique = "is_unique"
	// EdgeDocument holds the string denoting the document edge name in mutations.
	EdgeDocument = "document"
	// EdgeNode holds the string denoting the node edge name in mutations.
	EdgeNode = "node"
	// Table holds the table name of the annotation in the database.
	Table = "annotations"
	// DocumentTable is the table that holds the document relation/edge.
	DocumentTable = "annotations"
	// DocumentInverseTable is the table name for the Document entity.
	// It exists in this package in order to avoid circular dependency with the "document" package.
	DocumentInverseTable = "documents"
	// DocumentColumn is the table column denoting the document relation/edge.
	DocumentColumn = "document_id"
	// NodeTable is the table that holds the node relation/edge.
	NodeTable = "annotations"
	// NodeInverseTable is the table name for the Node entity.
	// It exists in this package in order to avoid circular dependency with the "node" package.
	NodeInverseTable = "nodes"
	// NodeColumn is the table column denoting the node relation/edge.
	NodeColumn = "node_id"
)

Variables

View Source
var (
	Hooks [1]ent.Hook
	// DefaultIsUnique holds the default value on creation for the "is_unique" field.
	DefaultIsUnique bool
)

Note that the variables below are initialized by the runtime package on the initialization of the application. Therefore, it should be imported in the main as follows:

import _ "github.com/protobom/storage/internal/backends/ent/runtime"

Columns holds all SQL columns for annotation fields.

Functions

func And

func And(predicates ...predicate.Annotation) predicate.Annotation

And groups predicates with the AND operator between them.

func DocumentID

func DocumentID(v uuid.UUID) predicate.Annotation

DocumentID applies equality check predicate on the "document_id" field. It's identical to DocumentIDEQ.

func DocumentIDEQ

func DocumentIDEQ(v uuid.UUID) predicate.Annotation

DocumentIDEQ applies the EQ predicate on the "document_id" field.

func DocumentIDIn

func DocumentIDIn(vs ...uuid.UUID) predicate.Annotation

DocumentIDIn applies the In predicate on the "document_id" field.

func DocumentIDIsNil added in v0.2.0

func DocumentIDIsNil() predicate.Annotation

DocumentIDIsNil applies the IsNil predicate on the "document_id" field.

func DocumentIDNEQ

func DocumentIDNEQ(v uuid.UUID) predicate.Annotation

DocumentIDNEQ applies the NEQ predicate on the "document_id" field.

func DocumentIDNotIn

func DocumentIDNotIn(vs ...uuid.UUID) predicate.Annotation

DocumentIDNotIn applies the NotIn predicate on the "document_id" field.

func DocumentIDNotNil added in v0.2.0

func DocumentIDNotNil() predicate.Annotation

DocumentIDNotNil applies the NotNil predicate on the "document_id" field.

func HasDocument

func HasDocument() predicate.Annotation

HasDocument applies the HasEdge predicate on the "document" edge.

func HasDocumentWith

func HasDocumentWith(preds ...predicate.Document) predicate.Annotation

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

func HasNode added in v0.2.0

func HasNode() predicate.Annotation

HasNode applies the HasEdge predicate on the "node" edge.

func HasNodeWith added in v0.2.0

func HasNodeWith(preds ...predicate.Node) predicate.Annotation

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

func ID

func ID(id int) predicate.Annotation

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Annotation

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Annotation

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Annotation

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Annotation

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Annotation

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Annotation

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func IsUnique added in v0.1.5

func IsUnique(v bool) predicate.Annotation

IsUnique applies equality check predicate on the "is_unique" field. It's identical to IsUniqueEQ.

func IsUniqueEQ added in v0.1.5

func IsUniqueEQ(v bool) predicate.Annotation

IsUniqueEQ applies the EQ predicate on the "is_unique" field.

func IsUniqueNEQ added in v0.1.5

func IsUniqueNEQ(v bool) predicate.Annotation

IsUniqueNEQ applies the NEQ predicate on the "is_unique" field.

func Name

func Name(v string) predicate.Annotation

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

func NameContains

func NameContains(v string) predicate.Annotation

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

func NameContainsFold

func NameContainsFold(v string) predicate.Annotation

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

func NameEQ

func NameEQ(v string) predicate.Annotation

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

func NameEqualFold

func NameEqualFold(v string) predicate.Annotation

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

func NameGT

func NameGT(v string) predicate.Annotation

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

func NameGTE

func NameGTE(v string) predicate.Annotation

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.Annotation

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.Annotation

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.Annotation

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

func NameLTE

func NameLTE(v string) predicate.Annotation

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

func NameNEQ

func NameNEQ(v string) predicate.Annotation

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

func NameNotIn

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

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

func NodeID added in v0.2.0

func NodeID(v uuid.UUID) predicate.Annotation

NodeID applies equality check predicate on the "node_id" field. It's identical to NodeIDEQ.

func NodeIDEQ added in v0.2.0

func NodeIDEQ(v uuid.UUID) predicate.Annotation

NodeIDEQ applies the EQ predicate on the "node_id" field.

func NodeIDIn added in v0.2.0

func NodeIDIn(vs ...uuid.UUID) predicate.Annotation

NodeIDIn applies the In predicate on the "node_id" field.

func NodeIDIsNil added in v0.2.0

func NodeIDIsNil() predicate.Annotation

NodeIDIsNil applies the IsNil predicate on the "node_id" field.

func NodeIDNEQ added in v0.2.0

func NodeIDNEQ(v uuid.UUID) predicate.Annotation

NodeIDNEQ applies the NEQ predicate on the "node_id" field.

func NodeIDNotIn added in v0.2.0

func NodeIDNotIn(vs ...uuid.UUID) predicate.Annotation

NodeIDNotIn applies the NotIn predicate on the "node_id" field.

func NodeIDNotNil added in v0.2.0

func NodeIDNotNil() predicate.Annotation

NodeIDNotNil applies the NotNil predicate on the "node_id" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Annotation) predicate.Annotation

Or groups predicates with the OR operator between them.

func ValidColumn

func ValidColumn(column string) bool

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

func Value

func Value(v string) predicate.Annotation

Value applies equality check predicate on the "value" field. It's identical to ValueEQ.

func ValueContains

func ValueContains(v string) predicate.Annotation

ValueContains applies the Contains predicate on the "value" field.

func ValueContainsFold

func ValueContainsFold(v string) predicate.Annotation

ValueContainsFold applies the ContainsFold predicate on the "value" field.

func ValueEQ

func ValueEQ(v string) predicate.Annotation

ValueEQ applies the EQ predicate on the "value" field.

func ValueEqualFold

func ValueEqualFold(v string) predicate.Annotation

ValueEqualFold applies the EqualFold predicate on the "value" field.

func ValueGT

func ValueGT(v string) predicate.Annotation

ValueGT applies the GT predicate on the "value" field.

func ValueGTE

func ValueGTE(v string) predicate.Annotation

ValueGTE applies the GTE predicate on the "value" field.

func ValueHasPrefix

func ValueHasPrefix(v string) predicate.Annotation

ValueHasPrefix applies the HasPrefix predicate on the "value" field.

func ValueHasSuffix

func ValueHasSuffix(v string) predicate.Annotation

ValueHasSuffix applies the HasSuffix predicate on the "value" field.

func ValueIn

func ValueIn(vs ...string) predicate.Annotation

ValueIn applies the In predicate on the "value" field.

func ValueLT

func ValueLT(v string) predicate.Annotation

ValueLT applies the LT predicate on the "value" field.

func ValueLTE

func ValueLTE(v string) predicate.Annotation

ValueLTE applies the LTE predicate on the "value" field.

func ValueNEQ

func ValueNEQ(v string) predicate.Annotation

ValueNEQ applies the NEQ predicate on the "value" field.

func ValueNotIn

func ValueNotIn(vs ...string) predicate.Annotation

ValueNotIn applies the NotIn predicate on the "value" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Annotation queries.

func ByDocumentField

func ByDocumentField(field string, opts ...sql.OrderTermOption) OrderOption

ByDocumentField orders the results by document field.

func ByDocumentID

func ByDocumentID(opts ...sql.OrderTermOption) OrderOption

ByDocumentID orders the results by the document_id field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByIsUnique added in v0.1.5

func ByIsUnique(opts ...sql.OrderTermOption) OrderOption

ByIsUnique orders the results by the is_unique field.

func ByName

func ByName(opts ...sql.OrderTermOption) OrderOption

ByName orders the results by the name field.

func ByNodeField added in v0.2.0

func ByNodeField(field string, opts ...sql.OrderTermOption) OrderOption

ByNodeField orders the results by node field.

func ByNodeID added in v0.2.0

func ByNodeID(opts ...sql.OrderTermOption) OrderOption

ByNodeID orders the results by the node_id field.

func ByValue

func ByValue(opts ...sql.OrderTermOption) OrderOption

ByValue orders the results by the value field.

Jump to

Keyboard shortcuts

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