document

package
v0.0.0-...-b8a6b6b Latest Latest
Warning

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

Go to latest
Published: Jul 8, 2022 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the document type in the database.
	Label = "document"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldContent holds the string denoting the content field in the database.
	FieldContent = "content"
	// FieldTokenizedContent holds the string denoting the tokenized_content field in the database.
	FieldTokenizedContent = "tokenized_content"
	// Table holds the table name of the document in the database.
	Table = "documents"
)

Variables

View Source
var (
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
)

Columns holds all SQL columns for document fields.

Functions

func And

func And(predicates ...predicate.Document) predicate.Document

And groups predicates with the AND operator between them.

func Content

func Content(v string) predicate.Document

Content applies equality check predicate on the "content" field. It's identical to ContentEQ.

func ContentContains

func ContentContains(v string) predicate.Document

ContentContains applies the Contains predicate on the "content" field.

func ContentContainsFold

func ContentContainsFold(v string) predicate.Document

ContentContainsFold applies the ContainsFold predicate on the "content" field.

func ContentEQ

func ContentEQ(v string) predicate.Document

ContentEQ applies the EQ predicate on the "content" field.

func ContentEqualFold

func ContentEqualFold(v string) predicate.Document

ContentEqualFold applies the EqualFold predicate on the "content" field.

func ContentGT

func ContentGT(v string) predicate.Document

ContentGT applies the GT predicate on the "content" field.

func ContentGTE

func ContentGTE(v string) predicate.Document

ContentGTE applies the GTE predicate on the "content" field.

func ContentHasPrefix

func ContentHasPrefix(v string) predicate.Document

ContentHasPrefix applies the HasPrefix predicate on the "content" field.

func ContentHasSuffix

func ContentHasSuffix(v string) predicate.Document

ContentHasSuffix applies the HasSuffix predicate on the "content" field.

func ContentIn

func ContentIn(vs ...string) predicate.Document

ContentIn applies the In predicate on the "content" field.

func ContentLT

func ContentLT(v string) predicate.Document

ContentLT applies the LT predicate on the "content" field.

func ContentLTE

func ContentLTE(v string) predicate.Document

ContentLTE applies the LTE predicate on the "content" field.

func ContentNEQ

func ContentNEQ(v string) predicate.Document

ContentNEQ applies the NEQ predicate on the "content" field.

func ContentNotIn

func ContentNotIn(vs ...string) predicate.Document

ContentNotIn applies the NotIn predicate on the "content" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Document

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Document

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Document

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Document

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.Document

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Document

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Document

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Document

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.Document

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func ID

func ID(id int) predicate.Document

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.Document

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.Document

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.Document

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.Document

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.Document

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.Document

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

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

Or groups predicates with the OR operator between them.

func TokenizedContent

func TokenizedContent(v string) predicate.Document

TokenizedContent applies equality check predicate on the "tokenized_content" field. It's identical to TokenizedContentEQ.

func TokenizedContentContains

func TokenizedContentContains(v string) predicate.Document

TokenizedContentContains applies the Contains predicate on the "tokenized_content" field.

func TokenizedContentContainsFold

func TokenizedContentContainsFold(v string) predicate.Document

TokenizedContentContainsFold applies the ContainsFold predicate on the "tokenized_content" field.

func TokenizedContentEQ

func TokenizedContentEQ(v string) predicate.Document

TokenizedContentEQ applies the EQ predicate on the "tokenized_content" field.

func TokenizedContentEqualFold

func TokenizedContentEqualFold(v string) predicate.Document

TokenizedContentEqualFold applies the EqualFold predicate on the "tokenized_content" field.

func TokenizedContentGT

func TokenizedContentGT(v string) predicate.Document

TokenizedContentGT applies the GT predicate on the "tokenized_content" field.

func TokenizedContentGTE

func TokenizedContentGTE(v string) predicate.Document

TokenizedContentGTE applies the GTE predicate on the "tokenized_content" field.

func TokenizedContentHasPrefix

func TokenizedContentHasPrefix(v string) predicate.Document

TokenizedContentHasPrefix applies the HasPrefix predicate on the "tokenized_content" field.

func TokenizedContentHasSuffix

func TokenizedContentHasSuffix(v string) predicate.Document

TokenizedContentHasSuffix applies the HasSuffix predicate on the "tokenized_content" field.

func TokenizedContentIn

func TokenizedContentIn(vs ...string) predicate.Document

TokenizedContentIn applies the In predicate on the "tokenized_content" field.

func TokenizedContentLT

func TokenizedContentLT(v string) predicate.Document

TokenizedContentLT applies the LT predicate on the "tokenized_content" field.

func TokenizedContentLTE

func TokenizedContentLTE(v string) predicate.Document

TokenizedContentLTE applies the LTE predicate on the "tokenized_content" field.

func TokenizedContentNEQ

func TokenizedContentNEQ(v string) predicate.Document

TokenizedContentNEQ applies the NEQ predicate on the "tokenized_content" field.

func TokenizedContentNotIn

func TokenizedContentNotIn(vs ...string) predicate.Document

TokenizedContentNotIn applies the NotIn predicate on the "tokenized_content" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.Document

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.Document

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.Document

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.Document

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.Document

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.Document

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.Document

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.Document

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.Document

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" 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