fnetdocument

package
v0.0.0-...-b3a520c Latest Latest
Warning

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

Go to latest
Published: May 2, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the fnetdocument type in the database.
	Label = "fnet_document"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldFnetID holds the string denoting the fnet_id field in the database.
	FieldFnetID = "fnet_id"
	// FieldAdditionalInformation holds the string denoting the additional_information field in the database.
	FieldAdditionalInformation = "additional_information"
	// FieldCategoryStr holds the string denoting the category_str field in the database.
	FieldCategoryStr = "category_str"
	// FieldFundDescription holds the string denoting the fund_description field in the database.
	FieldFundDescription = "fund_description"
	// FieldFundMarketName holds the string denoting the fund_market_name field in the database.
	FieldFundMarketName = "fund_market_name"
	// FieldHighPriority holds the string denoting the high_priority field in the database.
	FieldHighPriority = "high_priority"
	// FieldReferenceDate holds the string denoting the reference_date field in the database.
	FieldReferenceDate = "reference_date"
	// FieldReferenceDateFormat holds the string denoting the reference_date_format field in the database.
	FieldReferenceDateFormat = "reference_date_format"
	// FieldReferenceDateStr holds the string denoting the reference_date_str field in the database.
	FieldReferenceDateStr = "reference_date_str"
	// FieldReviewed holds the string denoting the reviewed field in the database.
	FieldReviewed = "reviewed"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldSubCategory1Str holds the string denoting the sub_category1_str field in the database.
	FieldSubCategory1Str = "sub_category1_str"
	// FieldSubCategory2Str holds the string denoting the sub_category2_str field in the database.
	FieldSubCategory2Str = "sub_category2_str"
	// FieldSubmissionDate holds the string denoting the submission_date field in the database.
	FieldSubmissionDate = "submission_date"
	// FieldSubmissionDateStr holds the string denoting the submission_date_str field in the database.
	FieldSubmissionDateStr = "submission_date_str"
	// FieldSubmissionMethod holds the string denoting the submission_method field in the database.
	FieldSubmissionMethod = "submission_method"
	// FieldSubmissionMethodDescription holds the string denoting the submission_method_description field in the database.
	FieldSubmissionMethodDescription = "submission_method_description"
	// FieldSubmissionStatus holds the string denoting the submission_status field in the database.
	FieldSubmissionStatus = "submission_status"
	// FieldSubmissionStatusDescription holds the string denoting the submission_status_description field in the database.
	FieldSubmissionStatusDescription = "submission_status_description"
	// FieldVersion holds the string denoting the version field in the database.
	FieldVersion = "version"
	// EdgeCategory holds the string denoting the category edge name in mutations.
	EdgeCategory = "category"
	// EdgeSubCategory1 holds the string denoting the sub_category1 edge name in mutations.
	EdgeSubCategory1 = "sub_category1"
	// EdgeSubCategory2 holds the string denoting the sub_category2 edge name in mutations.
	EdgeSubCategory2 = "sub_category2"
	// Table holds the table name of the fnetdocument in the database.
	Table = "fnet_documents"
	// CategoryTable is the table that holds the category relation/edge.
	CategoryTable = "fnet_documents"
	// CategoryInverseTable is the table name for the FnetCategory entity.
	// It exists in this package in order to avoid circular dependency with the "fnetcategory" package.
	CategoryInverseTable = "fnet_categories"
	// CategoryColumn is the table column denoting the category relation/edge.
	CategoryColumn = "category_id"
	// SubCategory1Table is the table that holds the sub_category1 relation/edge.
	SubCategory1Table = "fnet_documents"
	// SubCategory1InverseTable is the table name for the FnetSubCategory1 entity.
	// It exists in this package in order to avoid circular dependency with the "fnetsubcategory1" package.
	SubCategory1InverseTable = "fnet_sub_categories1"
	// SubCategory1Column is the table column denoting the sub_category1 relation/edge.
	SubCategory1Column = "sub_category1_id"
	// SubCategory2Table is the table that holds the sub_category2 relation/edge.
	SubCategory2Table = "fnet_documents"
	// SubCategory2InverseTable is the table name for the FnetSubCategory2 entity.
	// It exists in this package in order to avoid circular dependency with the "fnetsubcategory2" package.
	SubCategory2InverseTable = "fnet_sub_categories2"
	// SubCategory2Column is the table column denoting the sub_category2 relation/edge.
	SubCategory2Column = "sub_category2_id"
)

Variables

View Source
var (
	// FnetIDValidator is a validator for the "fnet_id" field. It is called by the builders before save.
	FnetIDValidator func(int) error
	// CategoryStrValidator is a validator for the "category_str" field. It is called by the builders before save.
	CategoryStrValidator func(string) error
	// FundDescriptionValidator is a validator for the "fund_description" field. It is called by the builders before save.
	FundDescriptionValidator func(string) error
	// ReferenceDateFormatValidator is a validator for the "reference_date_format" field. It is called by the builders before save.
	ReferenceDateFormatValidator func(string) error
	// ReferenceDateStrValidator is a validator for the "reference_date_str" field. It is called by the builders before save.
	ReferenceDateStrValidator func(string) error
	// ReviewedValidator is a validator for the "reviewed" field. It is called by the builders before save.
	ReviewedValidator func(string) error
	// StatusValidator is a validator for the "status" field. It is called by the builders before save.
	StatusValidator func(string) error
	// SubmissionDateStrValidator is a validator for the "submission_date_str" field. It is called by the builders before save.
	SubmissionDateStrValidator func(string) error
	// SubmissionMethodValidator is a validator for the "submission_method" field. It is called by the builders before save.
	SubmissionMethodValidator func(string) error
	// SubmissionMethodDescriptionValidator is a validator for the "submission_method_description" field. It is called by the builders before save.
	SubmissionMethodDescriptionValidator func(string) error
	// SubmissionStatusValidator is a validator for the "submission_status" field. It is called by the builders before save.
	SubmissionStatusValidator func(string) error
	// SubmissionStatusDescriptionValidator is a validator for the "submission_status_description" field. It is called by the builders before save.
	SubmissionStatusDescriptionValidator func(string) error
	// VersionValidator is a validator for the "version" field. It is called by the builders before save.
	VersionValidator func(int) error
)

Columns holds all SQL columns for fnetdocument fields.

View Source
var ForeignKeys = []string{
	"category_id",
	"sub_category1_id",
	"sub_category2_id",
}

ForeignKeys holds the SQL foreign-keys that are owned by the "fnet_documents" table and are not defined as standalone fields in the schema.

Functions

func AdditionalInformation

func AdditionalInformation(v string) predicate.FnetDocument

AdditionalInformation applies equality check predicate on the "additional_information" field. It's identical to AdditionalInformationEQ.

func AdditionalInformationContains

func AdditionalInformationContains(v string) predicate.FnetDocument

AdditionalInformationContains applies the Contains predicate on the "additional_information" field.

func AdditionalInformationContainsFold

func AdditionalInformationContainsFold(v string) predicate.FnetDocument

AdditionalInformationContainsFold applies the ContainsFold predicate on the "additional_information" field.

func AdditionalInformationEQ

func AdditionalInformationEQ(v string) predicate.FnetDocument

AdditionalInformationEQ applies the EQ predicate on the "additional_information" field.

func AdditionalInformationEqualFold

func AdditionalInformationEqualFold(v string) predicate.FnetDocument

AdditionalInformationEqualFold applies the EqualFold predicate on the "additional_information" field.

func AdditionalInformationGT

func AdditionalInformationGT(v string) predicate.FnetDocument

AdditionalInformationGT applies the GT predicate on the "additional_information" field.

func AdditionalInformationGTE

func AdditionalInformationGTE(v string) predicate.FnetDocument

AdditionalInformationGTE applies the GTE predicate on the "additional_information" field.

func AdditionalInformationHasPrefix

func AdditionalInformationHasPrefix(v string) predicate.FnetDocument

AdditionalInformationHasPrefix applies the HasPrefix predicate on the "additional_information" field.

func AdditionalInformationHasSuffix

func AdditionalInformationHasSuffix(v string) predicate.FnetDocument

AdditionalInformationHasSuffix applies the HasSuffix predicate on the "additional_information" field.

func AdditionalInformationIn

func AdditionalInformationIn(vs ...string) predicate.FnetDocument

AdditionalInformationIn applies the In predicate on the "additional_information" field.

func AdditionalInformationIsNil

func AdditionalInformationIsNil() predicate.FnetDocument

AdditionalInformationIsNil applies the IsNil predicate on the "additional_information" field.

func AdditionalInformationLT

func AdditionalInformationLT(v string) predicate.FnetDocument

AdditionalInformationLT applies the LT predicate on the "additional_information" field.

func AdditionalInformationLTE

func AdditionalInformationLTE(v string) predicate.FnetDocument

AdditionalInformationLTE applies the LTE predicate on the "additional_information" field.

func AdditionalInformationNEQ

func AdditionalInformationNEQ(v string) predicate.FnetDocument

AdditionalInformationNEQ applies the NEQ predicate on the "additional_information" field.

func AdditionalInformationNotIn

func AdditionalInformationNotIn(vs ...string) predicate.FnetDocument

AdditionalInformationNotIn applies the NotIn predicate on the "additional_information" field.

func AdditionalInformationNotNil

func AdditionalInformationNotNil() predicate.FnetDocument

AdditionalInformationNotNil applies the NotNil predicate on the "additional_information" field.

func And

func And(predicates ...predicate.FnetDocument) predicate.FnetDocument

And groups predicates with the AND operator between them.

func CategoryStr

func CategoryStr(v string) predicate.FnetDocument

CategoryStr applies equality check predicate on the "category_str" field. It's identical to CategoryStrEQ.

func CategoryStrContains

func CategoryStrContains(v string) predicate.FnetDocument

CategoryStrContains applies the Contains predicate on the "category_str" field.

func CategoryStrContainsFold

func CategoryStrContainsFold(v string) predicate.FnetDocument

CategoryStrContainsFold applies the ContainsFold predicate on the "category_str" field.

func CategoryStrEQ

func CategoryStrEQ(v string) predicate.FnetDocument

CategoryStrEQ applies the EQ predicate on the "category_str" field.

func CategoryStrEqualFold

func CategoryStrEqualFold(v string) predicate.FnetDocument

CategoryStrEqualFold applies the EqualFold predicate on the "category_str" field.

func CategoryStrGT

func CategoryStrGT(v string) predicate.FnetDocument

CategoryStrGT applies the GT predicate on the "category_str" field.

func CategoryStrGTE

func CategoryStrGTE(v string) predicate.FnetDocument

CategoryStrGTE applies the GTE predicate on the "category_str" field.

func CategoryStrHasPrefix

func CategoryStrHasPrefix(v string) predicate.FnetDocument

CategoryStrHasPrefix applies the HasPrefix predicate on the "category_str" field.

func CategoryStrHasSuffix

func CategoryStrHasSuffix(v string) predicate.FnetDocument

CategoryStrHasSuffix applies the HasSuffix predicate on the "category_str" field.

func CategoryStrIn

func CategoryStrIn(vs ...string) predicate.FnetDocument

CategoryStrIn applies the In predicate on the "category_str" field.

func CategoryStrLT

func CategoryStrLT(v string) predicate.FnetDocument

CategoryStrLT applies the LT predicate on the "category_str" field.

func CategoryStrLTE

func CategoryStrLTE(v string) predicate.FnetDocument

CategoryStrLTE applies the LTE predicate on the "category_str" field.

func CategoryStrNEQ

func CategoryStrNEQ(v string) predicate.FnetDocument

CategoryStrNEQ applies the NEQ predicate on the "category_str" field.

func CategoryStrNotIn

func CategoryStrNotIn(vs ...string) predicate.FnetDocument

CategoryStrNotIn applies the NotIn predicate on the "category_str" field.

func FnetID

func FnetID(v int) predicate.FnetDocument

FnetID applies equality check predicate on the "fnet_id" field. It's identical to FnetIDEQ.

func FnetIDEQ

func FnetIDEQ(v int) predicate.FnetDocument

FnetIDEQ applies the EQ predicate on the "fnet_id" field.

func FnetIDGT

func FnetIDGT(v int) predicate.FnetDocument

FnetIDGT applies the GT predicate on the "fnet_id" field.

func FnetIDGTE

func FnetIDGTE(v int) predicate.FnetDocument

FnetIDGTE applies the GTE predicate on the "fnet_id" field.

func FnetIDIn

func FnetIDIn(vs ...int) predicate.FnetDocument

FnetIDIn applies the In predicate on the "fnet_id" field.

func FnetIDLT

func FnetIDLT(v int) predicate.FnetDocument

FnetIDLT applies the LT predicate on the "fnet_id" field.

func FnetIDLTE

func FnetIDLTE(v int) predicate.FnetDocument

FnetIDLTE applies the LTE predicate on the "fnet_id" field.

func FnetIDNEQ

func FnetIDNEQ(v int) predicate.FnetDocument

FnetIDNEQ applies the NEQ predicate on the "fnet_id" field.

func FnetIDNotIn

func FnetIDNotIn(vs ...int) predicate.FnetDocument

FnetIDNotIn applies the NotIn predicate on the "fnet_id" field.

func FundDescription

func FundDescription(v string) predicate.FnetDocument

FundDescription applies equality check predicate on the "fund_description" field. It's identical to FundDescriptionEQ.

func FundDescriptionContains

func FundDescriptionContains(v string) predicate.FnetDocument

FundDescriptionContains applies the Contains predicate on the "fund_description" field.

func FundDescriptionContainsFold

func FundDescriptionContainsFold(v string) predicate.FnetDocument

FundDescriptionContainsFold applies the ContainsFold predicate on the "fund_description" field.

func FundDescriptionEQ

func FundDescriptionEQ(v string) predicate.FnetDocument

FundDescriptionEQ applies the EQ predicate on the "fund_description" field.

func FundDescriptionEqualFold

func FundDescriptionEqualFold(v string) predicate.FnetDocument

FundDescriptionEqualFold applies the EqualFold predicate on the "fund_description" field.

func FundDescriptionGT

func FundDescriptionGT(v string) predicate.FnetDocument

FundDescriptionGT applies the GT predicate on the "fund_description" field.

func FundDescriptionGTE

func FundDescriptionGTE(v string) predicate.FnetDocument

FundDescriptionGTE applies the GTE predicate on the "fund_description" field.

func FundDescriptionHasPrefix

func FundDescriptionHasPrefix(v string) predicate.FnetDocument

FundDescriptionHasPrefix applies the HasPrefix predicate on the "fund_description" field.

func FundDescriptionHasSuffix

func FundDescriptionHasSuffix(v string) predicate.FnetDocument

FundDescriptionHasSuffix applies the HasSuffix predicate on the "fund_description" field.

func FundDescriptionIn

func FundDescriptionIn(vs ...string) predicate.FnetDocument

FundDescriptionIn applies the In predicate on the "fund_description" field.

func FundDescriptionLT

func FundDescriptionLT(v string) predicate.FnetDocument

FundDescriptionLT applies the LT predicate on the "fund_description" field.

func FundDescriptionLTE

func FundDescriptionLTE(v string) predicate.FnetDocument

FundDescriptionLTE applies the LTE predicate on the "fund_description" field.

func FundDescriptionNEQ

func FundDescriptionNEQ(v string) predicate.FnetDocument

FundDescriptionNEQ applies the NEQ predicate on the "fund_description" field.

func FundDescriptionNotIn

func FundDescriptionNotIn(vs ...string) predicate.FnetDocument

FundDescriptionNotIn applies the NotIn predicate on the "fund_description" field.

func FundMarketName

func FundMarketName(v string) predicate.FnetDocument

FundMarketName applies equality check predicate on the "fund_market_name" field. It's identical to FundMarketNameEQ.

func FundMarketNameContains

func FundMarketNameContains(v string) predicate.FnetDocument

FundMarketNameContains applies the Contains predicate on the "fund_market_name" field.

func FundMarketNameContainsFold

func FundMarketNameContainsFold(v string) predicate.FnetDocument

FundMarketNameContainsFold applies the ContainsFold predicate on the "fund_market_name" field.

func FundMarketNameEQ

func FundMarketNameEQ(v string) predicate.FnetDocument

FundMarketNameEQ applies the EQ predicate on the "fund_market_name" field.

func FundMarketNameEqualFold

func FundMarketNameEqualFold(v string) predicate.FnetDocument

FundMarketNameEqualFold applies the EqualFold predicate on the "fund_market_name" field.

func FundMarketNameGT

func FundMarketNameGT(v string) predicate.FnetDocument

FundMarketNameGT applies the GT predicate on the "fund_market_name" field.

func FundMarketNameGTE

func FundMarketNameGTE(v string) predicate.FnetDocument

FundMarketNameGTE applies the GTE predicate on the "fund_market_name" field.

func FundMarketNameHasPrefix

func FundMarketNameHasPrefix(v string) predicate.FnetDocument

FundMarketNameHasPrefix applies the HasPrefix predicate on the "fund_market_name" field.

func FundMarketNameHasSuffix

func FundMarketNameHasSuffix(v string) predicate.FnetDocument

FundMarketNameHasSuffix applies the HasSuffix predicate on the "fund_market_name" field.

func FundMarketNameIn

func FundMarketNameIn(vs ...string) predicate.FnetDocument

FundMarketNameIn applies the In predicate on the "fund_market_name" field.

func FundMarketNameIsNil

func FundMarketNameIsNil() predicate.FnetDocument

FundMarketNameIsNil applies the IsNil predicate on the "fund_market_name" field.

func FundMarketNameLT

func FundMarketNameLT(v string) predicate.FnetDocument

FundMarketNameLT applies the LT predicate on the "fund_market_name" field.

func FundMarketNameLTE

func FundMarketNameLTE(v string) predicate.FnetDocument

FundMarketNameLTE applies the LTE predicate on the "fund_market_name" field.

func FundMarketNameNEQ

func FundMarketNameNEQ(v string) predicate.FnetDocument

FundMarketNameNEQ applies the NEQ predicate on the "fund_market_name" field.

func FundMarketNameNotIn

func FundMarketNameNotIn(vs ...string) predicate.FnetDocument

FundMarketNameNotIn applies the NotIn predicate on the "fund_market_name" field.

func FundMarketNameNotNil

func FundMarketNameNotNil() predicate.FnetDocument

FundMarketNameNotNil applies the NotNil predicate on the "fund_market_name" field.

func HasCategory

func HasCategory() predicate.FnetDocument

HasCategory applies the HasEdge predicate on the "category" edge.

func HasCategoryWith

func HasCategoryWith(preds ...predicate.FnetCategory) predicate.FnetDocument

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

func HasSubCategory1

func HasSubCategory1() predicate.FnetDocument

HasSubCategory1 applies the HasEdge predicate on the "sub_category1" edge.

func HasSubCategory1With

func HasSubCategory1With(preds ...predicate.FnetSubCategory1) predicate.FnetDocument

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

func HasSubCategory2

func HasSubCategory2() predicate.FnetDocument

HasSubCategory2 applies the HasEdge predicate on the "sub_category2" edge.

func HasSubCategory2With

func HasSubCategory2With(preds ...predicate.FnetSubCategory2) predicate.FnetDocument

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

func HighPriority

func HighPriority(v bool) predicate.FnetDocument

HighPriority applies equality check predicate on the "high_priority" field. It's identical to HighPriorityEQ.

func HighPriorityEQ

func HighPriorityEQ(v bool) predicate.FnetDocument

HighPriorityEQ applies the EQ predicate on the "high_priority" field.

func HighPriorityNEQ

func HighPriorityNEQ(v bool) predicate.FnetDocument

HighPriorityNEQ applies the NEQ predicate on the "high_priority" field.

func ID

func ID(id int) predicate.FnetDocument

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id int) predicate.FnetDocument

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id int) predicate.FnetDocument

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id int) predicate.FnetDocument

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id int) predicate.FnetDocument

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id int) predicate.FnetDocument

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id int) predicate.FnetDocument

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

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

Or groups predicates with the OR operator between them.

func ReferenceDate

func ReferenceDate(v time.Time) predicate.FnetDocument

ReferenceDate applies equality check predicate on the "reference_date" field. It's identical to ReferenceDateEQ.

func ReferenceDateEQ

func ReferenceDateEQ(v time.Time) predicate.FnetDocument

ReferenceDateEQ applies the EQ predicate on the "reference_date" field.

func ReferenceDateFormat

func ReferenceDateFormat(v string) predicate.FnetDocument

ReferenceDateFormat applies equality check predicate on the "reference_date_format" field. It's identical to ReferenceDateFormatEQ.

func ReferenceDateFormatContains

func ReferenceDateFormatContains(v string) predicate.FnetDocument

ReferenceDateFormatContains applies the Contains predicate on the "reference_date_format" field.

func ReferenceDateFormatContainsFold

func ReferenceDateFormatContainsFold(v string) predicate.FnetDocument

ReferenceDateFormatContainsFold applies the ContainsFold predicate on the "reference_date_format" field.

func ReferenceDateFormatEQ

func ReferenceDateFormatEQ(v string) predicate.FnetDocument

ReferenceDateFormatEQ applies the EQ predicate on the "reference_date_format" field.

func ReferenceDateFormatEqualFold

func ReferenceDateFormatEqualFold(v string) predicate.FnetDocument

ReferenceDateFormatEqualFold applies the EqualFold predicate on the "reference_date_format" field.

func ReferenceDateFormatGT

func ReferenceDateFormatGT(v string) predicate.FnetDocument

ReferenceDateFormatGT applies the GT predicate on the "reference_date_format" field.

func ReferenceDateFormatGTE

func ReferenceDateFormatGTE(v string) predicate.FnetDocument

ReferenceDateFormatGTE applies the GTE predicate on the "reference_date_format" field.

func ReferenceDateFormatHasPrefix

func ReferenceDateFormatHasPrefix(v string) predicate.FnetDocument

ReferenceDateFormatHasPrefix applies the HasPrefix predicate on the "reference_date_format" field.

func ReferenceDateFormatHasSuffix

func ReferenceDateFormatHasSuffix(v string) predicate.FnetDocument

ReferenceDateFormatHasSuffix applies the HasSuffix predicate on the "reference_date_format" field.

func ReferenceDateFormatIn

func ReferenceDateFormatIn(vs ...string) predicate.FnetDocument

ReferenceDateFormatIn applies the In predicate on the "reference_date_format" field.

func ReferenceDateFormatLT

func ReferenceDateFormatLT(v string) predicate.FnetDocument

ReferenceDateFormatLT applies the LT predicate on the "reference_date_format" field.

func ReferenceDateFormatLTE

func ReferenceDateFormatLTE(v string) predicate.FnetDocument

ReferenceDateFormatLTE applies the LTE predicate on the "reference_date_format" field.

func ReferenceDateFormatNEQ

func ReferenceDateFormatNEQ(v string) predicate.FnetDocument

ReferenceDateFormatNEQ applies the NEQ predicate on the "reference_date_format" field.

func ReferenceDateFormatNotIn

func ReferenceDateFormatNotIn(vs ...string) predicate.FnetDocument

ReferenceDateFormatNotIn applies the NotIn predicate on the "reference_date_format" field.

func ReferenceDateGT

func ReferenceDateGT(v time.Time) predicate.FnetDocument

ReferenceDateGT applies the GT predicate on the "reference_date" field.

func ReferenceDateGTE

func ReferenceDateGTE(v time.Time) predicate.FnetDocument

ReferenceDateGTE applies the GTE predicate on the "reference_date" field.

func ReferenceDateIn

func ReferenceDateIn(vs ...time.Time) predicate.FnetDocument

ReferenceDateIn applies the In predicate on the "reference_date" field.

func ReferenceDateLT

func ReferenceDateLT(v time.Time) predicate.FnetDocument

ReferenceDateLT applies the LT predicate on the "reference_date" field.

func ReferenceDateLTE

func ReferenceDateLTE(v time.Time) predicate.FnetDocument

ReferenceDateLTE applies the LTE predicate on the "reference_date" field.

func ReferenceDateNEQ

func ReferenceDateNEQ(v time.Time) predicate.FnetDocument

ReferenceDateNEQ applies the NEQ predicate on the "reference_date" field.

func ReferenceDateNotIn

func ReferenceDateNotIn(vs ...time.Time) predicate.FnetDocument

ReferenceDateNotIn applies the NotIn predicate on the "reference_date" field.

func ReferenceDateStr

func ReferenceDateStr(v string) predicate.FnetDocument

ReferenceDateStr applies equality check predicate on the "reference_date_str" field. It's identical to ReferenceDateStrEQ.

func ReferenceDateStrContains

func ReferenceDateStrContains(v string) predicate.FnetDocument

ReferenceDateStrContains applies the Contains predicate on the "reference_date_str" field.

func ReferenceDateStrContainsFold

func ReferenceDateStrContainsFold(v string) predicate.FnetDocument

ReferenceDateStrContainsFold applies the ContainsFold predicate on the "reference_date_str" field.

func ReferenceDateStrEQ

func ReferenceDateStrEQ(v string) predicate.FnetDocument

ReferenceDateStrEQ applies the EQ predicate on the "reference_date_str" field.

func ReferenceDateStrEqualFold

func ReferenceDateStrEqualFold(v string) predicate.FnetDocument

ReferenceDateStrEqualFold applies the EqualFold predicate on the "reference_date_str" field.

func ReferenceDateStrGT

func ReferenceDateStrGT(v string) predicate.FnetDocument

ReferenceDateStrGT applies the GT predicate on the "reference_date_str" field.

func ReferenceDateStrGTE

func ReferenceDateStrGTE(v string) predicate.FnetDocument

ReferenceDateStrGTE applies the GTE predicate on the "reference_date_str" field.

func ReferenceDateStrHasPrefix

func ReferenceDateStrHasPrefix(v string) predicate.FnetDocument

ReferenceDateStrHasPrefix applies the HasPrefix predicate on the "reference_date_str" field.

func ReferenceDateStrHasSuffix

func ReferenceDateStrHasSuffix(v string) predicate.FnetDocument

ReferenceDateStrHasSuffix applies the HasSuffix predicate on the "reference_date_str" field.

func ReferenceDateStrIn

func ReferenceDateStrIn(vs ...string) predicate.FnetDocument

ReferenceDateStrIn applies the In predicate on the "reference_date_str" field.

func ReferenceDateStrLT

func ReferenceDateStrLT(v string) predicate.FnetDocument

ReferenceDateStrLT applies the LT predicate on the "reference_date_str" field.

func ReferenceDateStrLTE

func ReferenceDateStrLTE(v string) predicate.FnetDocument

ReferenceDateStrLTE applies the LTE predicate on the "reference_date_str" field.

func ReferenceDateStrNEQ

func ReferenceDateStrNEQ(v string) predicate.FnetDocument

ReferenceDateStrNEQ applies the NEQ predicate on the "reference_date_str" field.

func ReferenceDateStrNotIn

func ReferenceDateStrNotIn(vs ...string) predicate.FnetDocument

ReferenceDateStrNotIn applies the NotIn predicate on the "reference_date_str" field.

func Reviewed

func Reviewed(v string) predicate.FnetDocument

Reviewed applies equality check predicate on the "reviewed" field. It's identical to ReviewedEQ.

func ReviewedContains

func ReviewedContains(v string) predicate.FnetDocument

ReviewedContains applies the Contains predicate on the "reviewed" field.

func ReviewedContainsFold

func ReviewedContainsFold(v string) predicate.FnetDocument

ReviewedContainsFold applies the ContainsFold predicate on the "reviewed" field.

func ReviewedEQ

func ReviewedEQ(v string) predicate.FnetDocument

ReviewedEQ applies the EQ predicate on the "reviewed" field.

func ReviewedEqualFold

func ReviewedEqualFold(v string) predicate.FnetDocument

ReviewedEqualFold applies the EqualFold predicate on the "reviewed" field.

func ReviewedGT

func ReviewedGT(v string) predicate.FnetDocument

ReviewedGT applies the GT predicate on the "reviewed" field.

func ReviewedGTE

func ReviewedGTE(v string) predicate.FnetDocument

ReviewedGTE applies the GTE predicate on the "reviewed" field.

func ReviewedHasPrefix

func ReviewedHasPrefix(v string) predicate.FnetDocument

ReviewedHasPrefix applies the HasPrefix predicate on the "reviewed" field.

func ReviewedHasSuffix

func ReviewedHasSuffix(v string) predicate.FnetDocument

ReviewedHasSuffix applies the HasSuffix predicate on the "reviewed" field.

func ReviewedIn

func ReviewedIn(vs ...string) predicate.FnetDocument

ReviewedIn applies the In predicate on the "reviewed" field.

func ReviewedLT

func ReviewedLT(v string) predicate.FnetDocument

ReviewedLT applies the LT predicate on the "reviewed" field.

func ReviewedLTE

func ReviewedLTE(v string) predicate.FnetDocument

ReviewedLTE applies the LTE predicate on the "reviewed" field.

func ReviewedNEQ

func ReviewedNEQ(v string) predicate.FnetDocument

ReviewedNEQ applies the NEQ predicate on the "reviewed" field.

func ReviewedNotIn

func ReviewedNotIn(vs ...string) predicate.FnetDocument

ReviewedNotIn applies the NotIn predicate on the "reviewed" field.

func Status

func Status(v string) predicate.FnetDocument

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusContains

func StatusContains(v string) predicate.FnetDocument

StatusContains applies the Contains predicate on the "status" field.

func StatusContainsFold

func StatusContainsFold(v string) predicate.FnetDocument

StatusContainsFold applies the ContainsFold predicate on the "status" field.

func StatusEQ

func StatusEQ(v string) predicate.FnetDocument

StatusEQ applies the EQ predicate on the "status" field.

func StatusEqualFold

func StatusEqualFold(v string) predicate.FnetDocument

StatusEqualFold applies the EqualFold predicate on the "status" field.

func StatusGT

func StatusGT(v string) predicate.FnetDocument

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

func StatusGTE(v string) predicate.FnetDocument

StatusGTE applies the GTE predicate on the "status" field.

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.FnetDocument

StatusHasPrefix applies the HasPrefix predicate on the "status" field.

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.FnetDocument

StatusHasSuffix applies the HasSuffix predicate on the "status" field.

func StatusIn

func StatusIn(vs ...string) predicate.FnetDocument

StatusIn applies the In predicate on the "status" field.

func StatusLT

func StatusLT(v string) predicate.FnetDocument

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

func StatusLTE(v string) predicate.FnetDocument

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v string) predicate.FnetDocument

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...string) predicate.FnetDocument

StatusNotIn applies the NotIn predicate on the "status" field.

func SubCategory1Str

func SubCategory1Str(v string) predicate.FnetDocument

SubCategory1Str applies equality check predicate on the "sub_category1_str" field. It's identical to SubCategory1StrEQ.

func SubCategory1StrContains

func SubCategory1StrContains(v string) predicate.FnetDocument

SubCategory1StrContains applies the Contains predicate on the "sub_category1_str" field.

func SubCategory1StrContainsFold

func SubCategory1StrContainsFold(v string) predicate.FnetDocument

SubCategory1StrContainsFold applies the ContainsFold predicate on the "sub_category1_str" field.

func SubCategory1StrEQ

func SubCategory1StrEQ(v string) predicate.FnetDocument

SubCategory1StrEQ applies the EQ predicate on the "sub_category1_str" field.

func SubCategory1StrEqualFold

func SubCategory1StrEqualFold(v string) predicate.FnetDocument

SubCategory1StrEqualFold applies the EqualFold predicate on the "sub_category1_str" field.

func SubCategory1StrGT

func SubCategory1StrGT(v string) predicate.FnetDocument

SubCategory1StrGT applies the GT predicate on the "sub_category1_str" field.

func SubCategory1StrGTE

func SubCategory1StrGTE(v string) predicate.FnetDocument

SubCategory1StrGTE applies the GTE predicate on the "sub_category1_str" field.

func SubCategory1StrHasPrefix

func SubCategory1StrHasPrefix(v string) predicate.FnetDocument

SubCategory1StrHasPrefix applies the HasPrefix predicate on the "sub_category1_str" field.

func SubCategory1StrHasSuffix

func SubCategory1StrHasSuffix(v string) predicate.FnetDocument

SubCategory1StrHasSuffix applies the HasSuffix predicate on the "sub_category1_str" field.

func SubCategory1StrIn

func SubCategory1StrIn(vs ...string) predicate.FnetDocument

SubCategory1StrIn applies the In predicate on the "sub_category1_str" field.

func SubCategory1StrIsNil

func SubCategory1StrIsNil() predicate.FnetDocument

SubCategory1StrIsNil applies the IsNil predicate on the "sub_category1_str" field.

func SubCategory1StrLT

func SubCategory1StrLT(v string) predicate.FnetDocument

SubCategory1StrLT applies the LT predicate on the "sub_category1_str" field.

func SubCategory1StrLTE

func SubCategory1StrLTE(v string) predicate.FnetDocument

SubCategory1StrLTE applies the LTE predicate on the "sub_category1_str" field.

func SubCategory1StrNEQ

func SubCategory1StrNEQ(v string) predicate.FnetDocument

SubCategory1StrNEQ applies the NEQ predicate on the "sub_category1_str" field.

func SubCategory1StrNotIn

func SubCategory1StrNotIn(vs ...string) predicate.FnetDocument

SubCategory1StrNotIn applies the NotIn predicate on the "sub_category1_str" field.

func SubCategory1StrNotNil

func SubCategory1StrNotNil() predicate.FnetDocument

SubCategory1StrNotNil applies the NotNil predicate on the "sub_category1_str" field.

func SubCategory2Str

func SubCategory2Str(v string) predicate.FnetDocument

SubCategory2Str applies equality check predicate on the "sub_category2_str" field. It's identical to SubCategory2StrEQ.

func SubCategory2StrContains

func SubCategory2StrContains(v string) predicate.FnetDocument

SubCategory2StrContains applies the Contains predicate on the "sub_category2_str" field.

func SubCategory2StrContainsFold

func SubCategory2StrContainsFold(v string) predicate.FnetDocument

SubCategory2StrContainsFold applies the ContainsFold predicate on the "sub_category2_str" field.

func SubCategory2StrEQ

func SubCategory2StrEQ(v string) predicate.FnetDocument

SubCategory2StrEQ applies the EQ predicate on the "sub_category2_str" field.

func SubCategory2StrEqualFold

func SubCategory2StrEqualFold(v string) predicate.FnetDocument

SubCategory2StrEqualFold applies the EqualFold predicate on the "sub_category2_str" field.

func SubCategory2StrGT

func SubCategory2StrGT(v string) predicate.FnetDocument

SubCategory2StrGT applies the GT predicate on the "sub_category2_str" field.

func SubCategory2StrGTE

func SubCategory2StrGTE(v string) predicate.FnetDocument

SubCategory2StrGTE applies the GTE predicate on the "sub_category2_str" field.

func SubCategory2StrHasPrefix

func SubCategory2StrHasPrefix(v string) predicate.FnetDocument

SubCategory2StrHasPrefix applies the HasPrefix predicate on the "sub_category2_str" field.

func SubCategory2StrHasSuffix

func SubCategory2StrHasSuffix(v string) predicate.FnetDocument

SubCategory2StrHasSuffix applies the HasSuffix predicate on the "sub_category2_str" field.

func SubCategory2StrIn

func SubCategory2StrIn(vs ...string) predicate.FnetDocument

SubCategory2StrIn applies the In predicate on the "sub_category2_str" field.

func SubCategory2StrIsNil

func SubCategory2StrIsNil() predicate.FnetDocument

SubCategory2StrIsNil applies the IsNil predicate on the "sub_category2_str" field.

func SubCategory2StrLT

func SubCategory2StrLT(v string) predicate.FnetDocument

SubCategory2StrLT applies the LT predicate on the "sub_category2_str" field.

func SubCategory2StrLTE

func SubCategory2StrLTE(v string) predicate.FnetDocument

SubCategory2StrLTE applies the LTE predicate on the "sub_category2_str" field.

func SubCategory2StrNEQ

func SubCategory2StrNEQ(v string) predicate.FnetDocument

SubCategory2StrNEQ applies the NEQ predicate on the "sub_category2_str" field.

func SubCategory2StrNotIn

func SubCategory2StrNotIn(vs ...string) predicate.FnetDocument

SubCategory2StrNotIn applies the NotIn predicate on the "sub_category2_str" field.

func SubCategory2StrNotNil

func SubCategory2StrNotNil() predicate.FnetDocument

SubCategory2StrNotNil applies the NotNil predicate on the "sub_category2_str" field.

func SubmissionDate

func SubmissionDate(v time.Time) predicate.FnetDocument

SubmissionDate applies equality check predicate on the "submission_date" field. It's identical to SubmissionDateEQ.

func SubmissionDateEQ

func SubmissionDateEQ(v time.Time) predicate.FnetDocument

SubmissionDateEQ applies the EQ predicate on the "submission_date" field.

func SubmissionDateGT

func SubmissionDateGT(v time.Time) predicate.FnetDocument

SubmissionDateGT applies the GT predicate on the "submission_date" field.

func SubmissionDateGTE

func SubmissionDateGTE(v time.Time) predicate.FnetDocument

SubmissionDateGTE applies the GTE predicate on the "submission_date" field.

func SubmissionDateIn

func SubmissionDateIn(vs ...time.Time) predicate.FnetDocument

SubmissionDateIn applies the In predicate on the "submission_date" field.

func SubmissionDateLT

func SubmissionDateLT(v time.Time) predicate.FnetDocument

SubmissionDateLT applies the LT predicate on the "submission_date" field.

func SubmissionDateLTE

func SubmissionDateLTE(v time.Time) predicate.FnetDocument

SubmissionDateLTE applies the LTE predicate on the "submission_date" field.

func SubmissionDateNEQ

func SubmissionDateNEQ(v time.Time) predicate.FnetDocument

SubmissionDateNEQ applies the NEQ predicate on the "submission_date" field.

func SubmissionDateNotIn

func SubmissionDateNotIn(vs ...time.Time) predicate.FnetDocument

SubmissionDateNotIn applies the NotIn predicate on the "submission_date" field.

func SubmissionDateStr

func SubmissionDateStr(v string) predicate.FnetDocument

SubmissionDateStr applies equality check predicate on the "submission_date_str" field. It's identical to SubmissionDateStrEQ.

func SubmissionDateStrContains

func SubmissionDateStrContains(v string) predicate.FnetDocument

SubmissionDateStrContains applies the Contains predicate on the "submission_date_str" field.

func SubmissionDateStrContainsFold

func SubmissionDateStrContainsFold(v string) predicate.FnetDocument

SubmissionDateStrContainsFold applies the ContainsFold predicate on the "submission_date_str" field.

func SubmissionDateStrEQ

func SubmissionDateStrEQ(v string) predicate.FnetDocument

SubmissionDateStrEQ applies the EQ predicate on the "submission_date_str" field.

func SubmissionDateStrEqualFold

func SubmissionDateStrEqualFold(v string) predicate.FnetDocument

SubmissionDateStrEqualFold applies the EqualFold predicate on the "submission_date_str" field.

func SubmissionDateStrGT

func SubmissionDateStrGT(v string) predicate.FnetDocument

SubmissionDateStrGT applies the GT predicate on the "submission_date_str" field.

func SubmissionDateStrGTE

func SubmissionDateStrGTE(v string) predicate.FnetDocument

SubmissionDateStrGTE applies the GTE predicate on the "submission_date_str" field.

func SubmissionDateStrHasPrefix

func SubmissionDateStrHasPrefix(v string) predicate.FnetDocument

SubmissionDateStrHasPrefix applies the HasPrefix predicate on the "submission_date_str" field.

func SubmissionDateStrHasSuffix

func SubmissionDateStrHasSuffix(v string) predicate.FnetDocument

SubmissionDateStrHasSuffix applies the HasSuffix predicate on the "submission_date_str" field.

func SubmissionDateStrIn

func SubmissionDateStrIn(vs ...string) predicate.FnetDocument

SubmissionDateStrIn applies the In predicate on the "submission_date_str" field.

func SubmissionDateStrLT

func SubmissionDateStrLT(v string) predicate.FnetDocument

SubmissionDateStrLT applies the LT predicate on the "submission_date_str" field.

func SubmissionDateStrLTE

func SubmissionDateStrLTE(v string) predicate.FnetDocument

SubmissionDateStrLTE applies the LTE predicate on the "submission_date_str" field.

func SubmissionDateStrNEQ

func SubmissionDateStrNEQ(v string) predicate.FnetDocument

SubmissionDateStrNEQ applies the NEQ predicate on the "submission_date_str" field.

func SubmissionDateStrNotIn

func SubmissionDateStrNotIn(vs ...string) predicate.FnetDocument

SubmissionDateStrNotIn applies the NotIn predicate on the "submission_date_str" field.

func SubmissionMethod

func SubmissionMethod(v string) predicate.FnetDocument

SubmissionMethod applies equality check predicate on the "submission_method" field. It's identical to SubmissionMethodEQ.

func SubmissionMethodContains

func SubmissionMethodContains(v string) predicate.FnetDocument

SubmissionMethodContains applies the Contains predicate on the "submission_method" field.

func SubmissionMethodContainsFold

func SubmissionMethodContainsFold(v string) predicate.FnetDocument

SubmissionMethodContainsFold applies the ContainsFold predicate on the "submission_method" field.

func SubmissionMethodDescription

func SubmissionMethodDescription(v string) predicate.FnetDocument

SubmissionMethodDescription applies equality check predicate on the "submission_method_description" field. It's identical to SubmissionMethodDescriptionEQ.

func SubmissionMethodDescriptionContains

func SubmissionMethodDescriptionContains(v string) predicate.FnetDocument

SubmissionMethodDescriptionContains applies the Contains predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionContainsFold

func SubmissionMethodDescriptionContainsFold(v string) predicate.FnetDocument

SubmissionMethodDescriptionContainsFold applies the ContainsFold predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionEQ

func SubmissionMethodDescriptionEQ(v string) predicate.FnetDocument

SubmissionMethodDescriptionEQ applies the EQ predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionEqualFold

func SubmissionMethodDescriptionEqualFold(v string) predicate.FnetDocument

SubmissionMethodDescriptionEqualFold applies the EqualFold predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionGT

func SubmissionMethodDescriptionGT(v string) predicate.FnetDocument

SubmissionMethodDescriptionGT applies the GT predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionGTE

func SubmissionMethodDescriptionGTE(v string) predicate.FnetDocument

SubmissionMethodDescriptionGTE applies the GTE predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionHasPrefix

func SubmissionMethodDescriptionHasPrefix(v string) predicate.FnetDocument

SubmissionMethodDescriptionHasPrefix applies the HasPrefix predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionHasSuffix

func SubmissionMethodDescriptionHasSuffix(v string) predicate.FnetDocument

SubmissionMethodDescriptionHasSuffix applies the HasSuffix predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionIn

func SubmissionMethodDescriptionIn(vs ...string) predicate.FnetDocument

SubmissionMethodDescriptionIn applies the In predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionLT

func SubmissionMethodDescriptionLT(v string) predicate.FnetDocument

SubmissionMethodDescriptionLT applies the LT predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionLTE

func SubmissionMethodDescriptionLTE(v string) predicate.FnetDocument

SubmissionMethodDescriptionLTE applies the LTE predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionNEQ

func SubmissionMethodDescriptionNEQ(v string) predicate.FnetDocument

SubmissionMethodDescriptionNEQ applies the NEQ predicate on the "submission_method_description" field.

func SubmissionMethodDescriptionNotIn

func SubmissionMethodDescriptionNotIn(vs ...string) predicate.FnetDocument

SubmissionMethodDescriptionNotIn applies the NotIn predicate on the "submission_method_description" field.

func SubmissionMethodEQ

func SubmissionMethodEQ(v string) predicate.FnetDocument

SubmissionMethodEQ applies the EQ predicate on the "submission_method" field.

func SubmissionMethodEqualFold

func SubmissionMethodEqualFold(v string) predicate.FnetDocument

SubmissionMethodEqualFold applies the EqualFold predicate on the "submission_method" field.

func SubmissionMethodGT

func SubmissionMethodGT(v string) predicate.FnetDocument

SubmissionMethodGT applies the GT predicate on the "submission_method" field.

func SubmissionMethodGTE

func SubmissionMethodGTE(v string) predicate.FnetDocument

SubmissionMethodGTE applies the GTE predicate on the "submission_method" field.

func SubmissionMethodHasPrefix

func SubmissionMethodHasPrefix(v string) predicate.FnetDocument

SubmissionMethodHasPrefix applies the HasPrefix predicate on the "submission_method" field.

func SubmissionMethodHasSuffix

func SubmissionMethodHasSuffix(v string) predicate.FnetDocument

SubmissionMethodHasSuffix applies the HasSuffix predicate on the "submission_method" field.

func SubmissionMethodIn

func SubmissionMethodIn(vs ...string) predicate.FnetDocument

SubmissionMethodIn applies the In predicate on the "submission_method" field.

func SubmissionMethodLT

func SubmissionMethodLT(v string) predicate.FnetDocument

SubmissionMethodLT applies the LT predicate on the "submission_method" field.

func SubmissionMethodLTE

func SubmissionMethodLTE(v string) predicate.FnetDocument

SubmissionMethodLTE applies the LTE predicate on the "submission_method" field.

func SubmissionMethodNEQ

func SubmissionMethodNEQ(v string) predicate.FnetDocument

SubmissionMethodNEQ applies the NEQ predicate on the "submission_method" field.

func SubmissionMethodNotIn

func SubmissionMethodNotIn(vs ...string) predicate.FnetDocument

SubmissionMethodNotIn applies the NotIn predicate on the "submission_method" field.

func SubmissionStatus

func SubmissionStatus(v string) predicate.FnetDocument

SubmissionStatus applies equality check predicate on the "submission_status" field. It's identical to SubmissionStatusEQ.

func SubmissionStatusContains

func SubmissionStatusContains(v string) predicate.FnetDocument

SubmissionStatusContains applies the Contains predicate on the "submission_status" field.

func SubmissionStatusContainsFold

func SubmissionStatusContainsFold(v string) predicate.FnetDocument

SubmissionStatusContainsFold applies the ContainsFold predicate on the "submission_status" field.

func SubmissionStatusDescription

func SubmissionStatusDescription(v string) predicate.FnetDocument

SubmissionStatusDescription applies equality check predicate on the "submission_status_description" field. It's identical to SubmissionStatusDescriptionEQ.

func SubmissionStatusDescriptionContains

func SubmissionStatusDescriptionContains(v string) predicate.FnetDocument

SubmissionStatusDescriptionContains applies the Contains predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionContainsFold

func SubmissionStatusDescriptionContainsFold(v string) predicate.FnetDocument

SubmissionStatusDescriptionContainsFold applies the ContainsFold predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionEQ

func SubmissionStatusDescriptionEQ(v string) predicate.FnetDocument

SubmissionStatusDescriptionEQ applies the EQ predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionEqualFold

func SubmissionStatusDescriptionEqualFold(v string) predicate.FnetDocument

SubmissionStatusDescriptionEqualFold applies the EqualFold predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionGT

func SubmissionStatusDescriptionGT(v string) predicate.FnetDocument

SubmissionStatusDescriptionGT applies the GT predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionGTE

func SubmissionStatusDescriptionGTE(v string) predicate.FnetDocument

SubmissionStatusDescriptionGTE applies the GTE predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionHasPrefix

func SubmissionStatusDescriptionHasPrefix(v string) predicate.FnetDocument

SubmissionStatusDescriptionHasPrefix applies the HasPrefix predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionHasSuffix

func SubmissionStatusDescriptionHasSuffix(v string) predicate.FnetDocument

SubmissionStatusDescriptionHasSuffix applies the HasSuffix predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionIn

func SubmissionStatusDescriptionIn(vs ...string) predicate.FnetDocument

SubmissionStatusDescriptionIn applies the In predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionLT

func SubmissionStatusDescriptionLT(v string) predicate.FnetDocument

SubmissionStatusDescriptionLT applies the LT predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionLTE

func SubmissionStatusDescriptionLTE(v string) predicate.FnetDocument

SubmissionStatusDescriptionLTE applies the LTE predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionNEQ

func SubmissionStatusDescriptionNEQ(v string) predicate.FnetDocument

SubmissionStatusDescriptionNEQ applies the NEQ predicate on the "submission_status_description" field.

func SubmissionStatusDescriptionNotIn

func SubmissionStatusDescriptionNotIn(vs ...string) predicate.FnetDocument

SubmissionStatusDescriptionNotIn applies the NotIn predicate on the "submission_status_description" field.

func SubmissionStatusEQ

func SubmissionStatusEQ(v string) predicate.FnetDocument

SubmissionStatusEQ applies the EQ predicate on the "submission_status" field.

func SubmissionStatusEqualFold

func SubmissionStatusEqualFold(v string) predicate.FnetDocument

SubmissionStatusEqualFold applies the EqualFold predicate on the "submission_status" field.

func SubmissionStatusGT

func SubmissionStatusGT(v string) predicate.FnetDocument

SubmissionStatusGT applies the GT predicate on the "submission_status" field.

func SubmissionStatusGTE

func SubmissionStatusGTE(v string) predicate.FnetDocument

SubmissionStatusGTE applies the GTE predicate on the "submission_status" field.

func SubmissionStatusHasPrefix

func SubmissionStatusHasPrefix(v string) predicate.FnetDocument

SubmissionStatusHasPrefix applies the HasPrefix predicate on the "submission_status" field.

func SubmissionStatusHasSuffix

func SubmissionStatusHasSuffix(v string) predicate.FnetDocument

SubmissionStatusHasSuffix applies the HasSuffix predicate on the "submission_status" field.

func SubmissionStatusIn

func SubmissionStatusIn(vs ...string) predicate.FnetDocument

SubmissionStatusIn applies the In predicate on the "submission_status" field.

func SubmissionStatusLT

func SubmissionStatusLT(v string) predicate.FnetDocument

SubmissionStatusLT applies the LT predicate on the "submission_status" field.

func SubmissionStatusLTE

func SubmissionStatusLTE(v string) predicate.FnetDocument

SubmissionStatusLTE applies the LTE predicate on the "submission_status" field.

func SubmissionStatusNEQ

func SubmissionStatusNEQ(v string) predicate.FnetDocument

SubmissionStatusNEQ applies the NEQ predicate on the "submission_status" field.

func SubmissionStatusNotIn

func SubmissionStatusNotIn(vs ...string) predicate.FnetDocument

SubmissionStatusNotIn applies the NotIn predicate on the "submission_status" field.

func ValidColumn

func ValidColumn(column string) bool

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

func Version

func Version(v int) predicate.FnetDocument

Version applies equality check predicate on the "version" field. It's identical to VersionEQ.

func VersionEQ

func VersionEQ(v int) predicate.FnetDocument

VersionEQ applies the EQ predicate on the "version" field.

func VersionGT

func VersionGT(v int) predicate.FnetDocument

VersionGT applies the GT predicate on the "version" field.

func VersionGTE

func VersionGTE(v int) predicate.FnetDocument

VersionGTE applies the GTE predicate on the "version" field.

func VersionIn

func VersionIn(vs ...int) predicate.FnetDocument

VersionIn applies the In predicate on the "version" field.

func VersionLT

func VersionLT(v int) predicate.FnetDocument

VersionLT applies the LT predicate on the "version" field.

func VersionLTE

func VersionLTE(v int) predicate.FnetDocument

VersionLTE applies the LTE predicate on the "version" field.

func VersionNEQ

func VersionNEQ(v int) predicate.FnetDocument

VersionNEQ applies the NEQ predicate on the "version" field.

func VersionNotIn

func VersionNotIn(vs ...int) predicate.FnetDocument

VersionNotIn applies the NotIn predicate on the "version" field.

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the FnetDocument queries.

func ByAdditionalInformation

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

ByAdditionalInformation orders the results by the additional_information field.

func ByCategoryField

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

ByCategoryField orders the results by category field.

func ByCategoryStr

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

ByCategoryStr orders the results by the category_str field.

func ByFnetID

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

ByFnetID orders the results by the fnet_id field.

func ByFundDescription

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

ByFundDescription orders the results by the fund_description field.

func ByFundMarketName

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

ByFundMarketName orders the results by the fund_market_name field.

func ByHighPriority

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

ByHighPriority orders the results by the high_priority field.

func ByID

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

ByID orders the results by the id field.

func ByReferenceDate

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

ByReferenceDate orders the results by the reference_date field.

func ByReferenceDateFormat

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

ByReferenceDateFormat orders the results by the reference_date_format field.

func ByReferenceDateStr

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

ByReferenceDateStr orders the results by the reference_date_str field.

func ByReviewed

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

ByReviewed orders the results by the reviewed field.

func ByStatus

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

ByStatus orders the results by the status field.

func BySubCategory1Field

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

BySubCategory1Field orders the results by sub_category1 field.

func BySubCategory1Str

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

BySubCategory1Str orders the results by the sub_category1_str field.

func BySubCategory2Field

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

BySubCategory2Field orders the results by sub_category2 field.

func BySubCategory2Str

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

BySubCategory2Str orders the results by the sub_category2_str field.

func BySubmissionDate

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

BySubmissionDate orders the results by the submission_date field.

func BySubmissionDateStr

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

BySubmissionDateStr orders the results by the submission_date_str field.

func BySubmissionMethod

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

BySubmissionMethod orders the results by the submission_method field.

func BySubmissionMethodDescription

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

BySubmissionMethodDescription orders the results by the submission_method_description field.

func BySubmissionStatus

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

BySubmissionStatus orders the results by the submission_status field.

func BySubmissionStatusDescription

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

BySubmissionStatusDescription orders the results by the submission_status_description field.

func ByVersion

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

ByVersion orders the results by the version field.

Jump to

Keyboard shortcuts

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