itemaugment

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Sep 8, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the itemaugment type in the database.
	Label = "item_augment"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldProvider holds the string denoting the provider field in the database.
	FieldProvider = "provider"
	// FieldSourceRef holds the string denoting the source_ref field in the database.
	FieldSourceRef = "source_ref"
	// FieldMoscow holds the string denoting the moscow field in the database.
	FieldMoscow = "moscow"
	// FieldKano holds the string denoting the kano field in the database.
	FieldKano = "kano"
	// FieldRice holds the string denoting the rice field in the database.
	FieldRice = "rice"
	// FieldOkrRefs holds the string denoting the okr_refs field in the database.
	FieldOkrRefs = "okr_refs"
	// FieldNotes holds the string denoting the notes field in the database.
	FieldNotes = "notes"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// Table holds the table name of the itemaugment in the database.
	Table = "item_augments"
)

Variables

View Source
var (
	// ProviderValidator is a validator for the "provider" field. It is called by the builders before save.
	ProviderValidator func(string) error
	// SourceRefValidator is a validator for the "source_ref" field. It is called by the builders before save.
	SourceRefValidator func(string) error
	// MoscowValidator is a validator for the "moscow" field. It is called by the builders before save.
	MoscowValidator func(string) error
	// KanoValidator is a validator for the "kano" field. It is called by the builders before save.
	KanoValidator func(string) error
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Columns holds all SQL columns for itemaugment fields.

Functions

func And

func And(predicates ...predicate.ItemAugment) predicate.ItemAugment

And groups predicates with the AND operator between them.

func ID

ID filters vertices based on their ID field.

func IDContainsFold

func IDContainsFold(id string) predicate.ItemAugment

IDContainsFold applies the ContainsFold predicate on the ID field.

func IDEQ

func IDEQ(id string) predicate.ItemAugment

IDEQ applies the EQ predicate on the ID field.

func IDEqualFold

func IDEqualFold(id string) predicate.ItemAugment

IDEqualFold applies the EqualFold predicate on the ID field.

func IDGT

func IDGT(id string) predicate.ItemAugment

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.ItemAugment

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.ItemAugment

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.ItemAugment

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.ItemAugment

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Kano

Kano applies equality check predicate on the "kano" field. It's identical to KanoEQ.

func KanoContains

func KanoContains(v string) predicate.ItemAugment

KanoContains applies the Contains predicate on the "kano" field.

func KanoContainsFold

func KanoContainsFold(v string) predicate.ItemAugment

KanoContainsFold applies the ContainsFold predicate on the "kano" field.

func KanoEQ

func KanoEQ(v string) predicate.ItemAugment

KanoEQ applies the EQ predicate on the "kano" field.

func KanoEqualFold

func KanoEqualFold(v string) predicate.ItemAugment

KanoEqualFold applies the EqualFold predicate on the "kano" field.

func KanoGT

func KanoGT(v string) predicate.ItemAugment

KanoGT applies the GT predicate on the "kano" field.

func KanoGTE

func KanoGTE(v string) predicate.ItemAugment

KanoGTE applies the GTE predicate on the "kano" field.

func KanoHasPrefix

func KanoHasPrefix(v string) predicate.ItemAugment

KanoHasPrefix applies the HasPrefix predicate on the "kano" field.

func KanoHasSuffix

func KanoHasSuffix(v string) predicate.ItemAugment

KanoHasSuffix applies the HasSuffix predicate on the "kano" field.

func KanoIn

func KanoIn(vs ...string) predicate.ItemAugment

KanoIn applies the In predicate on the "kano" field.

func KanoIsNil

func KanoIsNil() predicate.ItemAugment

KanoIsNil applies the IsNil predicate on the "kano" field.

func KanoLT

func KanoLT(v string) predicate.ItemAugment

KanoLT applies the LT predicate on the "kano" field.

func KanoLTE

func KanoLTE(v string) predicate.ItemAugment

KanoLTE applies the LTE predicate on the "kano" field.

func KanoNEQ

func KanoNEQ(v string) predicate.ItemAugment

KanoNEQ applies the NEQ predicate on the "kano" field.

func KanoNotIn

func KanoNotIn(vs ...string) predicate.ItemAugment

KanoNotIn applies the NotIn predicate on the "kano" field.

func KanoNotNil

func KanoNotNil() predicate.ItemAugment

KanoNotNil applies the NotNil predicate on the "kano" field.

func MetadataIsNil

func MetadataIsNil() predicate.ItemAugment

MetadataIsNil applies the IsNil predicate on the "metadata" field.

func MetadataNotNil

func MetadataNotNil() predicate.ItemAugment

MetadataNotNil applies the NotNil predicate on the "metadata" field.

func Moscow

func Moscow(v string) predicate.ItemAugment

Moscow applies equality check predicate on the "moscow" field. It's identical to MoscowEQ.

func MoscowContains

func MoscowContains(v string) predicate.ItemAugment

MoscowContains applies the Contains predicate on the "moscow" field.

func MoscowContainsFold

func MoscowContainsFold(v string) predicate.ItemAugment

MoscowContainsFold applies the ContainsFold predicate on the "moscow" field.

func MoscowEQ

func MoscowEQ(v string) predicate.ItemAugment

MoscowEQ applies the EQ predicate on the "moscow" field.

func MoscowEqualFold

func MoscowEqualFold(v string) predicate.ItemAugment

MoscowEqualFold applies the EqualFold predicate on the "moscow" field.

func MoscowGT

func MoscowGT(v string) predicate.ItemAugment

MoscowGT applies the GT predicate on the "moscow" field.

func MoscowGTE

func MoscowGTE(v string) predicate.ItemAugment

MoscowGTE applies the GTE predicate on the "moscow" field.

func MoscowHasPrefix

func MoscowHasPrefix(v string) predicate.ItemAugment

MoscowHasPrefix applies the HasPrefix predicate on the "moscow" field.

func MoscowHasSuffix

func MoscowHasSuffix(v string) predicate.ItemAugment

MoscowHasSuffix applies the HasSuffix predicate on the "moscow" field.

func MoscowIn

func MoscowIn(vs ...string) predicate.ItemAugment

MoscowIn applies the In predicate on the "moscow" field.

func MoscowIsNil

func MoscowIsNil() predicate.ItemAugment

MoscowIsNil applies the IsNil predicate on the "moscow" field.

func MoscowLT

func MoscowLT(v string) predicate.ItemAugment

MoscowLT applies the LT predicate on the "moscow" field.

func MoscowLTE

func MoscowLTE(v string) predicate.ItemAugment

MoscowLTE applies the LTE predicate on the "moscow" field.

func MoscowNEQ

func MoscowNEQ(v string) predicate.ItemAugment

MoscowNEQ applies the NEQ predicate on the "moscow" field.

func MoscowNotIn

func MoscowNotIn(vs ...string) predicate.ItemAugment

MoscowNotIn applies the NotIn predicate on the "moscow" field.

func MoscowNotNil

func MoscowNotNil() predicate.ItemAugment

MoscowNotNil applies the NotNil predicate on the "moscow" field.

func Not

Not applies the not operator on the given predicate.

func Notes

func Notes(v string) predicate.ItemAugment

Notes applies equality check predicate on the "notes" field. It's identical to NotesEQ.

func NotesContains

func NotesContains(v string) predicate.ItemAugment

NotesContains applies the Contains predicate on the "notes" field.

func NotesContainsFold

func NotesContainsFold(v string) predicate.ItemAugment

NotesContainsFold applies the ContainsFold predicate on the "notes" field.

func NotesEQ

func NotesEQ(v string) predicate.ItemAugment

NotesEQ applies the EQ predicate on the "notes" field.

func NotesEqualFold

func NotesEqualFold(v string) predicate.ItemAugment

NotesEqualFold applies the EqualFold predicate on the "notes" field.

func NotesGT

func NotesGT(v string) predicate.ItemAugment

NotesGT applies the GT predicate on the "notes" field.

func NotesGTE

func NotesGTE(v string) predicate.ItemAugment

NotesGTE applies the GTE predicate on the "notes" field.

func NotesHasPrefix

func NotesHasPrefix(v string) predicate.ItemAugment

NotesHasPrefix applies the HasPrefix predicate on the "notes" field.

func NotesHasSuffix

func NotesHasSuffix(v string) predicate.ItemAugment

NotesHasSuffix applies the HasSuffix predicate on the "notes" field.

func NotesIn

func NotesIn(vs ...string) predicate.ItemAugment

NotesIn applies the In predicate on the "notes" field.

func NotesIsNil

func NotesIsNil() predicate.ItemAugment

NotesIsNil applies the IsNil predicate on the "notes" field.

func NotesLT

func NotesLT(v string) predicate.ItemAugment

NotesLT applies the LT predicate on the "notes" field.

func NotesLTE

func NotesLTE(v string) predicate.ItemAugment

NotesLTE applies the LTE predicate on the "notes" field.

func NotesNEQ

func NotesNEQ(v string) predicate.ItemAugment

NotesNEQ applies the NEQ predicate on the "notes" field.

func NotesNotIn

func NotesNotIn(vs ...string) predicate.ItemAugment

NotesNotIn applies the NotIn predicate on the "notes" field.

func NotesNotNil

func NotesNotNil() predicate.ItemAugment

NotesNotNil applies the NotNil predicate on the "notes" field.

func OkrRefsIsNil

func OkrRefsIsNil() predicate.ItemAugment

OkrRefsIsNil applies the IsNil predicate on the "okr_refs" field.

func OkrRefsNotNil

func OkrRefsNotNil() predicate.ItemAugment

OkrRefsNotNil applies the NotNil predicate on the "okr_refs" field.

func Or

func Or(predicates ...predicate.ItemAugment) predicate.ItemAugment

Or groups predicates with the OR operator between them.

func Provider

func Provider(v string) predicate.ItemAugment

Provider applies equality check predicate on the "provider" field. It's identical to ProviderEQ.

func ProviderContains

func ProviderContains(v string) predicate.ItemAugment

ProviderContains applies the Contains predicate on the "provider" field.

func ProviderContainsFold

func ProviderContainsFold(v string) predicate.ItemAugment

ProviderContainsFold applies the ContainsFold predicate on the "provider" field.

func ProviderEQ

func ProviderEQ(v string) predicate.ItemAugment

ProviderEQ applies the EQ predicate on the "provider" field.

func ProviderEqualFold

func ProviderEqualFold(v string) predicate.ItemAugment

ProviderEqualFold applies the EqualFold predicate on the "provider" field.

func ProviderGT

func ProviderGT(v string) predicate.ItemAugment

ProviderGT applies the GT predicate on the "provider" field.

func ProviderGTE

func ProviderGTE(v string) predicate.ItemAugment

ProviderGTE applies the GTE predicate on the "provider" field.

func ProviderHasPrefix

func ProviderHasPrefix(v string) predicate.ItemAugment

ProviderHasPrefix applies the HasPrefix predicate on the "provider" field.

func ProviderHasSuffix

func ProviderHasSuffix(v string) predicate.ItemAugment

ProviderHasSuffix applies the HasSuffix predicate on the "provider" field.

func ProviderIn

func ProviderIn(vs ...string) predicate.ItemAugment

ProviderIn applies the In predicate on the "provider" field.

func ProviderLT

func ProviderLT(v string) predicate.ItemAugment

ProviderLT applies the LT predicate on the "provider" field.

func ProviderLTE

func ProviderLTE(v string) predicate.ItemAugment

ProviderLTE applies the LTE predicate on the "provider" field.

func ProviderNEQ

func ProviderNEQ(v string) predicate.ItemAugment

ProviderNEQ applies the NEQ predicate on the "provider" field.

func ProviderNotIn

func ProviderNotIn(vs ...string) predicate.ItemAugment

ProviderNotIn applies the NotIn predicate on the "provider" field.

func RiceIsNil

func RiceIsNil() predicate.ItemAugment

RiceIsNil applies the IsNil predicate on the "rice" field.

func RiceNotNil

func RiceNotNil() predicate.ItemAugment

RiceNotNil applies the NotNil predicate on the "rice" field.

func SourceRef

func SourceRef(v string) predicate.ItemAugment

SourceRef applies equality check predicate on the "source_ref" field. It's identical to SourceRefEQ.

func SourceRefContains

func SourceRefContains(v string) predicate.ItemAugment

SourceRefContains applies the Contains predicate on the "source_ref" field.

func SourceRefContainsFold

func SourceRefContainsFold(v string) predicate.ItemAugment

SourceRefContainsFold applies the ContainsFold predicate on the "source_ref" field.

func SourceRefEQ

func SourceRefEQ(v string) predicate.ItemAugment

SourceRefEQ applies the EQ predicate on the "source_ref" field.

func SourceRefEqualFold

func SourceRefEqualFold(v string) predicate.ItemAugment

SourceRefEqualFold applies the EqualFold predicate on the "source_ref" field.

func SourceRefGT

func SourceRefGT(v string) predicate.ItemAugment

SourceRefGT applies the GT predicate on the "source_ref" field.

func SourceRefGTE

func SourceRefGTE(v string) predicate.ItemAugment

SourceRefGTE applies the GTE predicate on the "source_ref" field.

func SourceRefHasPrefix

func SourceRefHasPrefix(v string) predicate.ItemAugment

SourceRefHasPrefix applies the HasPrefix predicate on the "source_ref" field.

func SourceRefHasSuffix

func SourceRefHasSuffix(v string) predicate.ItemAugment

SourceRefHasSuffix applies the HasSuffix predicate on the "source_ref" field.

func SourceRefIn

func SourceRefIn(vs ...string) predicate.ItemAugment

SourceRefIn applies the In predicate on the "source_ref" field.

func SourceRefLT

func SourceRefLT(v string) predicate.ItemAugment

SourceRefLT applies the LT predicate on the "source_ref" field.

func SourceRefLTE

func SourceRefLTE(v string) predicate.ItemAugment

SourceRefLTE applies the LTE predicate on the "source_ref" field.

func SourceRefNEQ

func SourceRefNEQ(v string) predicate.ItemAugment

SourceRefNEQ applies the NEQ predicate on the "source_ref" field.

func SourceRefNotIn

func SourceRefNotIn(vs ...string) predicate.ItemAugment

SourceRefNotIn applies the NotIn predicate on the "source_ref" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.ItemAugment

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.ItemAugment

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.ItemAugment

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.ItemAugment

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.ItemAugment

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.ItemAugment

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.ItemAugment

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

func UpdatedAtNotIn

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

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

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the ItemAugment queries.

func ByID

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

ByID orders the results by the id field.

func ByKano

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

ByKano orders the results by the kano field.

func ByMoscow

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

ByMoscow orders the results by the moscow field.

func ByNotes

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

ByNotes orders the results by the notes field.

func ByProvider

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

ByProvider orders the results by the provider field.

func BySourceRef

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

BySourceRef orders the results by the source_ref field.

func ByUpdatedAt

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

ByUpdatedAt orders the results by the updated_at field.

Jump to

Keyboard shortcuts

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