event

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Apr 27, 2026 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the event type in the database.
	Label = "event"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldOrgID holds the string denoting the org_id field in the database.
	FieldOrgID = "org_id"
	// FieldProjectID holds the string denoting the project_id field in the database.
	FieldProjectID = "project_id"
	// FieldEventID holds the string denoting the event_id field in the database.
	FieldEventID = "event_id"
	// FieldSessionID holds the string denoting the session_id field in the database.
	FieldSessionID = "session_id"
	// FieldUserID holds the string denoting the user_id field in the database.
	FieldUserID = "user_id"
	// FieldEventType holds the string denoting the event_type field in the database.
	FieldEventType = "event_type"
	// FieldEventName holds the string denoting the event_name field in the database.
	FieldEventName = "event_name"
	// FieldTimestamp holds the string denoting the timestamp field in the database.
	FieldTimestamp = "timestamp"
	// FieldSequence holds the string denoting the sequence field in the database.
	FieldSequence = "sequence"
	// FieldPagePath holds the string denoting the page_path field in the database.
	FieldPagePath = "page_path"
	// FieldPageTitle holds the string denoting the page_title field in the database.
	FieldPageTitle = "page_title"
	// FieldPageURL holds the string denoting the page_url field in the database.
	FieldPageURL = "page_url"
	// FieldPageReferrer holds the string denoting the page_referrer field in the database.
	FieldPageReferrer = "page_referrer"
	// FieldUIComponentName holds the string denoting the ui_component_name field in the database.
	FieldUIComponentName = "ui_component_name"
	// FieldUIComponentPath holds the string denoting the ui_component_path field in the database.
	FieldUIComponentPath = "ui_component_path"
	// FieldUIComponentType holds the string denoting the ui_component_type field in the database.
	FieldUIComponentType = "ui_component_type"
	// FieldUIAction holds the string denoting the ui_action field in the database.
	FieldUIAction = "ui_action"
	// FieldUIElement holds the string denoting the ui_element field in the database.
	FieldUIElement = "ui_element"
	// FieldUIElementText holds the string denoting the ui_element_text field in the database.
	FieldUIElementText = "ui_element_text"
	// FieldUIViewport holds the string denoting the ui_viewport field in the database.
	FieldUIViewport = "ui_viewport"
	// FieldUIScrollPosition holds the string denoting the ui_scroll_position field in the database.
	FieldUIScrollPosition = "ui_scroll_position"
	// FieldUIStateKey holds the string denoting the ui_state_key field in the database.
	FieldUIStateKey = "ui_state_key"
	// FieldUIStateBefore holds the string denoting the ui_state_before field in the database.
	FieldUIStateBefore = "ui_state_before"
	// FieldUIStateAfter holds the string denoting the ui_state_after field in the database.
	FieldUIStateAfter = "ui_state_after"
	// FieldUIStateChangeType holds the string denoting the ui_state_change_type field in the database.
	FieldUIStateChangeType = "ui_state_change_type"
	// FieldJourneyID holds the string denoting the journey_id field in the database.
	FieldJourneyID = "journey_id"
	// FieldJourneyStepID holds the string denoting the journey_step_id field in the database.
	FieldJourneyStepID = "journey_step_id"
	// FieldJourneyStepName holds the string denoting the journey_step_name field in the database.
	FieldJourneyStepName = "journey_step_name"
	// FieldConversionStatus holds the string denoting the conversion_status field in the database.
	FieldConversionStatus = "conversion_status"
	// FieldAPIMethod holds the string denoting the api_method field in the database.
	FieldAPIMethod = "api_method"
	// FieldAPIPath holds the string denoting the api_path field in the database.
	FieldAPIPath = "api_path"
	// FieldAPIStatusCode holds the string denoting the api_status_code field in the database.
	FieldAPIStatusCode = "api_status_code"
	// FieldAPIDurationMs holds the string denoting the api_duration_ms field in the database.
	FieldAPIDurationMs = "api_duration_ms"
	// FieldErrorType holds the string denoting the error_type field in the database.
	FieldErrorType = "error_type"
	// FieldErrorMessage holds the string denoting the error_message field in the database.
	FieldErrorMessage = "error_message"
	// FieldErrorStack holds the string denoting the error_stack field in the database.
	FieldErrorStack = "error_stack"
	// FieldErrorComponent holds the string denoting the error_component field in the database.
	FieldErrorComponent = "error_component"
	// FieldPerformanceLcpMs holds the string denoting the performance_lcp_ms field in the database.
	FieldPerformanceLcpMs = "performance_lcp_ms"
	// FieldPerformanceFidMs holds the string denoting the performance_fid_ms field in the database.
	FieldPerformanceFidMs = "performance_fid_ms"
	// FieldPerformanceCls holds the string denoting the performance_cls field in the database.
	FieldPerformanceCls = "performance_cls"
	// FieldPerformanceTtfbMs holds the string denoting the performance_ttfb_ms field in the database.
	FieldPerformanceTtfbMs = "performance_ttfb_ms"
	// FieldSnapshotURL holds the string denoting the snapshot_url field in the database.
	FieldSnapshotURL = "snapshot_url"
	// FieldSnapshotViewport holds the string denoting the snapshot_viewport field in the database.
	FieldSnapshotViewport = "snapshot_viewport"
	// FieldDurationMs holds the string denoting the duration_ms field in the database.
	FieldDurationMs = "duration_ms"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeProject holds the string denoting the project edge name in mutations.
	EdgeProject = "project"
	// EdgeJourney holds the string denoting the journey edge name in mutations.
	EdgeJourney = "journey"
	// Table holds the table name of the event in the database.
	Table = "events"
	// ProjectTable is the table that holds the project relation/edge.
	ProjectTable = "events"
	// ProjectInverseTable is the table name for the Project entity.
	// It exists in this package in order to avoid circular dependency with the "project" package.
	ProjectInverseTable = "projects"
	// ProjectColumn is the table column denoting the project relation/edge.
	ProjectColumn = "project_id"
	// JourneyTable is the table that holds the journey relation/edge.
	JourneyTable = "events"
	// JourneyInverseTable is the table name for the Journey entity.
	// It exists in this package in order to avoid circular dependency with the "journey" package.
	JourneyInverseTable = "journeys"
	// JourneyColumn is the table column denoting the journey relation/edge.
	JourneyColumn = "journey_id"
)

Variables

View Source
var (
	// EventIDValidator is a validator for the "event_id" field. It is called by the builders before save.
	EventIDValidator func(string) error
	// SessionIDValidator is a validator for the "session_id" field. It is called by the builders before save.
	SessionIDValidator func(string) error
	// UserIDValidator is a validator for the "user_id" field. It is called by the builders before save.
	UserIDValidator func(string) error
	// EventNameValidator is a validator for the "event_name" field. It is called by the builders before save.
	EventNameValidator func(string) error
	// DefaultSequence holds the default value on creation for the "sequence" field.
	DefaultSequence int64
	// PagePathValidator is a validator for the "page_path" field. It is called by the builders before save.
	PagePathValidator func(string) error
	// PageTitleValidator is a validator for the "page_title" field. It is called by the builders before save.
	PageTitleValidator func(string) error
	// PageURLValidator is a validator for the "page_url" field. It is called by the builders before save.
	PageURLValidator func(string) error
	// PageReferrerValidator is a validator for the "page_referrer" field. It is called by the builders before save.
	PageReferrerValidator func(string) error
	// UIComponentNameValidator is a validator for the "ui_component_name" field. It is called by the builders before save.
	UIComponentNameValidator func(string) error
	// UIComponentPathValidator is a validator for the "ui_component_path" field. It is called by the builders before save.
	UIComponentPathValidator func(string) error
	// UIComponentTypeValidator is a validator for the "ui_component_type" field. It is called by the builders before save.
	UIComponentTypeValidator func(string) error
	// UIActionValidator is a validator for the "ui_action" field. It is called by the builders before save.
	UIActionValidator func(string) error
	// UIElementValidator is a validator for the "ui_element" field. It is called by the builders before save.
	UIElementValidator func(string) error
	// UIElementTextValidator is a validator for the "ui_element_text" field. It is called by the builders before save.
	UIElementTextValidator func(string) error
	// UIViewportValidator is a validator for the "ui_viewport" field. It is called by the builders before save.
	UIViewportValidator func(string) error
	// UIStateKeyValidator is a validator for the "ui_state_key" field. It is called by the builders before save.
	UIStateKeyValidator func(string) error
	// UIStateChangeTypeValidator is a validator for the "ui_state_change_type" field. It is called by the builders before save.
	UIStateChangeTypeValidator func(string) error
	// JourneyStepIDValidator is a validator for the "journey_step_id" field. It is called by the builders before save.
	JourneyStepIDValidator func(string) error
	// JourneyStepNameValidator is a validator for the "journey_step_name" field. It is called by the builders before save.
	JourneyStepNameValidator func(string) error
	// ConversionStatusValidator is a validator for the "conversion_status" field. It is called by the builders before save.
	ConversionStatusValidator func(string) error
	// APIMethodValidator is a validator for the "api_method" field. It is called by the builders before save.
	APIMethodValidator func(string) error
	// APIPathValidator is a validator for the "api_path" field. It is called by the builders before save.
	APIPathValidator func(string) error
	// ErrorTypeValidator is a validator for the "error_type" field. It is called by the builders before save.
	ErrorTypeValidator func(string) error
	// ErrorComponentValidator is a validator for the "error_component" field. It is called by the builders before save.
	ErrorComponentValidator func(string) error
	// SnapshotURLValidator is a validator for the "snapshot_url" field. It is called by the builders before save.
	SnapshotURLValidator func(string) error
	// SnapshotViewportValidator is a validator for the "snapshot_viewport" field. It is called by the builders before save.
	SnapshotViewportValidator func(string) error
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for event fields.

Functions

func APIDurationMs

func APIDurationMs(v int64) predicate.Event

APIDurationMs applies equality check predicate on the "api_duration_ms" field. It's identical to APIDurationMsEQ.

func APIDurationMsEQ

func APIDurationMsEQ(v int64) predicate.Event

APIDurationMsEQ applies the EQ predicate on the "api_duration_ms" field.

func APIDurationMsGT

func APIDurationMsGT(v int64) predicate.Event

APIDurationMsGT applies the GT predicate on the "api_duration_ms" field.

func APIDurationMsGTE

func APIDurationMsGTE(v int64) predicate.Event

APIDurationMsGTE applies the GTE predicate on the "api_duration_ms" field.

func APIDurationMsIn

func APIDurationMsIn(vs ...int64) predicate.Event

APIDurationMsIn applies the In predicate on the "api_duration_ms" field.

func APIDurationMsIsNil

func APIDurationMsIsNil() predicate.Event

APIDurationMsIsNil applies the IsNil predicate on the "api_duration_ms" field.

func APIDurationMsLT

func APIDurationMsLT(v int64) predicate.Event

APIDurationMsLT applies the LT predicate on the "api_duration_ms" field.

func APIDurationMsLTE

func APIDurationMsLTE(v int64) predicate.Event

APIDurationMsLTE applies the LTE predicate on the "api_duration_ms" field.

func APIDurationMsNEQ

func APIDurationMsNEQ(v int64) predicate.Event

APIDurationMsNEQ applies the NEQ predicate on the "api_duration_ms" field.

func APIDurationMsNotIn

func APIDurationMsNotIn(vs ...int64) predicate.Event

APIDurationMsNotIn applies the NotIn predicate on the "api_duration_ms" field.

func APIDurationMsNotNil

func APIDurationMsNotNil() predicate.Event

APIDurationMsNotNil applies the NotNil predicate on the "api_duration_ms" field.

func APIMethod

func APIMethod(v string) predicate.Event

APIMethod applies equality check predicate on the "api_method" field. It's identical to APIMethodEQ.

func APIMethodContains

func APIMethodContains(v string) predicate.Event

APIMethodContains applies the Contains predicate on the "api_method" field.

func APIMethodContainsFold

func APIMethodContainsFold(v string) predicate.Event

APIMethodContainsFold applies the ContainsFold predicate on the "api_method" field.

func APIMethodEQ

func APIMethodEQ(v string) predicate.Event

APIMethodEQ applies the EQ predicate on the "api_method" field.

func APIMethodEqualFold

func APIMethodEqualFold(v string) predicate.Event

APIMethodEqualFold applies the EqualFold predicate on the "api_method" field.

func APIMethodGT

func APIMethodGT(v string) predicate.Event

APIMethodGT applies the GT predicate on the "api_method" field.

func APIMethodGTE

func APIMethodGTE(v string) predicate.Event

APIMethodGTE applies the GTE predicate on the "api_method" field.

func APIMethodHasPrefix

func APIMethodHasPrefix(v string) predicate.Event

APIMethodHasPrefix applies the HasPrefix predicate on the "api_method" field.

func APIMethodHasSuffix

func APIMethodHasSuffix(v string) predicate.Event

APIMethodHasSuffix applies the HasSuffix predicate on the "api_method" field.

func APIMethodIn

func APIMethodIn(vs ...string) predicate.Event

APIMethodIn applies the In predicate on the "api_method" field.

func APIMethodIsNil

func APIMethodIsNil() predicate.Event

APIMethodIsNil applies the IsNil predicate on the "api_method" field.

func APIMethodLT

func APIMethodLT(v string) predicate.Event

APIMethodLT applies the LT predicate on the "api_method" field.

func APIMethodLTE

func APIMethodLTE(v string) predicate.Event

APIMethodLTE applies the LTE predicate on the "api_method" field.

func APIMethodNEQ

func APIMethodNEQ(v string) predicate.Event

APIMethodNEQ applies the NEQ predicate on the "api_method" field.

func APIMethodNotIn

func APIMethodNotIn(vs ...string) predicate.Event

APIMethodNotIn applies the NotIn predicate on the "api_method" field.

func APIMethodNotNil

func APIMethodNotNil() predicate.Event

APIMethodNotNil applies the NotNil predicate on the "api_method" field.

func APIPath

func APIPath(v string) predicate.Event

APIPath applies equality check predicate on the "api_path" field. It's identical to APIPathEQ.

func APIPathContains

func APIPathContains(v string) predicate.Event

APIPathContains applies the Contains predicate on the "api_path" field.

func APIPathContainsFold

func APIPathContainsFold(v string) predicate.Event

APIPathContainsFold applies the ContainsFold predicate on the "api_path" field.

func APIPathEQ

func APIPathEQ(v string) predicate.Event

APIPathEQ applies the EQ predicate on the "api_path" field.

func APIPathEqualFold

func APIPathEqualFold(v string) predicate.Event

APIPathEqualFold applies the EqualFold predicate on the "api_path" field.

func APIPathGT

func APIPathGT(v string) predicate.Event

APIPathGT applies the GT predicate on the "api_path" field.

func APIPathGTE

func APIPathGTE(v string) predicate.Event

APIPathGTE applies the GTE predicate on the "api_path" field.

func APIPathHasPrefix

func APIPathHasPrefix(v string) predicate.Event

APIPathHasPrefix applies the HasPrefix predicate on the "api_path" field.

func APIPathHasSuffix

func APIPathHasSuffix(v string) predicate.Event

APIPathHasSuffix applies the HasSuffix predicate on the "api_path" field.

func APIPathIn

func APIPathIn(vs ...string) predicate.Event

APIPathIn applies the In predicate on the "api_path" field.

func APIPathIsNil

func APIPathIsNil() predicate.Event

APIPathIsNil applies the IsNil predicate on the "api_path" field.

func APIPathLT

func APIPathLT(v string) predicate.Event

APIPathLT applies the LT predicate on the "api_path" field.

func APIPathLTE

func APIPathLTE(v string) predicate.Event

APIPathLTE applies the LTE predicate on the "api_path" field.

func APIPathNEQ

func APIPathNEQ(v string) predicate.Event

APIPathNEQ applies the NEQ predicate on the "api_path" field.

func APIPathNotIn

func APIPathNotIn(vs ...string) predicate.Event

APIPathNotIn applies the NotIn predicate on the "api_path" field.

func APIPathNotNil

func APIPathNotNil() predicate.Event

APIPathNotNil applies the NotNil predicate on the "api_path" field.

func APIStatusCode

func APIStatusCode(v int) predicate.Event

APIStatusCode applies equality check predicate on the "api_status_code" field. It's identical to APIStatusCodeEQ.

func APIStatusCodeEQ

func APIStatusCodeEQ(v int) predicate.Event

APIStatusCodeEQ applies the EQ predicate on the "api_status_code" field.

func APIStatusCodeGT

func APIStatusCodeGT(v int) predicate.Event

APIStatusCodeGT applies the GT predicate on the "api_status_code" field.

func APIStatusCodeGTE

func APIStatusCodeGTE(v int) predicate.Event

APIStatusCodeGTE applies the GTE predicate on the "api_status_code" field.

func APIStatusCodeIn

func APIStatusCodeIn(vs ...int) predicate.Event

APIStatusCodeIn applies the In predicate on the "api_status_code" field.

func APIStatusCodeIsNil

func APIStatusCodeIsNil() predicate.Event

APIStatusCodeIsNil applies the IsNil predicate on the "api_status_code" field.

func APIStatusCodeLT

func APIStatusCodeLT(v int) predicate.Event

APIStatusCodeLT applies the LT predicate on the "api_status_code" field.

func APIStatusCodeLTE

func APIStatusCodeLTE(v int) predicate.Event

APIStatusCodeLTE applies the LTE predicate on the "api_status_code" field.

func APIStatusCodeNEQ

func APIStatusCodeNEQ(v int) predicate.Event

APIStatusCodeNEQ applies the NEQ predicate on the "api_status_code" field.

func APIStatusCodeNotIn

func APIStatusCodeNotIn(vs ...int) predicate.Event

APIStatusCodeNotIn applies the NotIn predicate on the "api_status_code" field.

func APIStatusCodeNotNil

func APIStatusCodeNotNil() predicate.Event

APIStatusCodeNotNil applies the NotNil predicate on the "api_status_code" field.

func And

func And(predicates ...predicate.Event) predicate.Event

And groups predicates with the AND operator between them.

func ConversionStatus

func ConversionStatus(v string) predicate.Event

ConversionStatus applies equality check predicate on the "conversion_status" field. It's identical to ConversionStatusEQ.

func ConversionStatusContains

func ConversionStatusContains(v string) predicate.Event

ConversionStatusContains applies the Contains predicate on the "conversion_status" field.

func ConversionStatusContainsFold

func ConversionStatusContainsFold(v string) predicate.Event

ConversionStatusContainsFold applies the ContainsFold predicate on the "conversion_status" field.

func ConversionStatusEQ

func ConversionStatusEQ(v string) predicate.Event

ConversionStatusEQ applies the EQ predicate on the "conversion_status" field.

func ConversionStatusEqualFold

func ConversionStatusEqualFold(v string) predicate.Event

ConversionStatusEqualFold applies the EqualFold predicate on the "conversion_status" field.

func ConversionStatusGT

func ConversionStatusGT(v string) predicate.Event

ConversionStatusGT applies the GT predicate on the "conversion_status" field.

func ConversionStatusGTE

func ConversionStatusGTE(v string) predicate.Event

ConversionStatusGTE applies the GTE predicate on the "conversion_status" field.

func ConversionStatusHasPrefix

func ConversionStatusHasPrefix(v string) predicate.Event

ConversionStatusHasPrefix applies the HasPrefix predicate on the "conversion_status" field.

func ConversionStatusHasSuffix

func ConversionStatusHasSuffix(v string) predicate.Event

ConversionStatusHasSuffix applies the HasSuffix predicate on the "conversion_status" field.

func ConversionStatusIn

func ConversionStatusIn(vs ...string) predicate.Event

ConversionStatusIn applies the In predicate on the "conversion_status" field.

func ConversionStatusIsNil

func ConversionStatusIsNil() predicate.Event

ConversionStatusIsNil applies the IsNil predicate on the "conversion_status" field.

func ConversionStatusLT

func ConversionStatusLT(v string) predicate.Event

ConversionStatusLT applies the LT predicate on the "conversion_status" field.

func ConversionStatusLTE

func ConversionStatusLTE(v string) predicate.Event

ConversionStatusLTE applies the LTE predicate on the "conversion_status" field.

func ConversionStatusNEQ

func ConversionStatusNEQ(v string) predicate.Event

ConversionStatusNEQ applies the NEQ predicate on the "conversion_status" field.

func ConversionStatusNotIn

func ConversionStatusNotIn(vs ...string) predicate.Event

ConversionStatusNotIn applies the NotIn predicate on the "conversion_status" field.

func ConversionStatusNotNil

func ConversionStatusNotNil() predicate.Event

ConversionStatusNotNil applies the NotNil predicate on the "conversion_status" field.

func CreatedAt

func CreatedAt(v time.Time) predicate.Event

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.Event

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.Event

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.Event

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.Event

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.Event

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.Event

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

func CreatedAtNotIn

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

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

func DurationMs

func DurationMs(v int64) predicate.Event

DurationMs applies equality check predicate on the "duration_ms" field. It's identical to DurationMsEQ.

func DurationMsEQ

func DurationMsEQ(v int64) predicate.Event

DurationMsEQ applies the EQ predicate on the "duration_ms" field.

func DurationMsGT

func DurationMsGT(v int64) predicate.Event

DurationMsGT applies the GT predicate on the "duration_ms" field.

func DurationMsGTE

func DurationMsGTE(v int64) predicate.Event

DurationMsGTE applies the GTE predicate on the "duration_ms" field.

func DurationMsIn

func DurationMsIn(vs ...int64) predicate.Event

DurationMsIn applies the In predicate on the "duration_ms" field.

func DurationMsIsNil

func DurationMsIsNil() predicate.Event

DurationMsIsNil applies the IsNil predicate on the "duration_ms" field.

func DurationMsLT

func DurationMsLT(v int64) predicate.Event

DurationMsLT applies the LT predicate on the "duration_ms" field.

func DurationMsLTE

func DurationMsLTE(v int64) predicate.Event

DurationMsLTE applies the LTE predicate on the "duration_ms" field.

func DurationMsNEQ

func DurationMsNEQ(v int64) predicate.Event

DurationMsNEQ applies the NEQ predicate on the "duration_ms" field.

func DurationMsNotIn

func DurationMsNotIn(vs ...int64) predicate.Event

DurationMsNotIn applies the NotIn predicate on the "duration_ms" field.

func DurationMsNotNil

func DurationMsNotNil() predicate.Event

DurationMsNotNil applies the NotNil predicate on the "duration_ms" field.

func ErrorComponent

func ErrorComponent(v string) predicate.Event

ErrorComponent applies equality check predicate on the "error_component" field. It's identical to ErrorComponentEQ.

func ErrorComponentContains

func ErrorComponentContains(v string) predicate.Event

ErrorComponentContains applies the Contains predicate on the "error_component" field.

func ErrorComponentContainsFold

func ErrorComponentContainsFold(v string) predicate.Event

ErrorComponentContainsFold applies the ContainsFold predicate on the "error_component" field.

func ErrorComponentEQ

func ErrorComponentEQ(v string) predicate.Event

ErrorComponentEQ applies the EQ predicate on the "error_component" field.

func ErrorComponentEqualFold

func ErrorComponentEqualFold(v string) predicate.Event

ErrorComponentEqualFold applies the EqualFold predicate on the "error_component" field.

func ErrorComponentGT

func ErrorComponentGT(v string) predicate.Event

ErrorComponentGT applies the GT predicate on the "error_component" field.

func ErrorComponentGTE

func ErrorComponentGTE(v string) predicate.Event

ErrorComponentGTE applies the GTE predicate on the "error_component" field.

func ErrorComponentHasPrefix

func ErrorComponentHasPrefix(v string) predicate.Event

ErrorComponentHasPrefix applies the HasPrefix predicate on the "error_component" field.

func ErrorComponentHasSuffix

func ErrorComponentHasSuffix(v string) predicate.Event

ErrorComponentHasSuffix applies the HasSuffix predicate on the "error_component" field.

func ErrorComponentIn

func ErrorComponentIn(vs ...string) predicate.Event

ErrorComponentIn applies the In predicate on the "error_component" field.

func ErrorComponentIsNil

func ErrorComponentIsNil() predicate.Event

ErrorComponentIsNil applies the IsNil predicate on the "error_component" field.

func ErrorComponentLT

func ErrorComponentLT(v string) predicate.Event

ErrorComponentLT applies the LT predicate on the "error_component" field.

func ErrorComponentLTE

func ErrorComponentLTE(v string) predicate.Event

ErrorComponentLTE applies the LTE predicate on the "error_component" field.

func ErrorComponentNEQ

func ErrorComponentNEQ(v string) predicate.Event

ErrorComponentNEQ applies the NEQ predicate on the "error_component" field.

func ErrorComponentNotIn

func ErrorComponentNotIn(vs ...string) predicate.Event

ErrorComponentNotIn applies the NotIn predicate on the "error_component" field.

func ErrorComponentNotNil

func ErrorComponentNotNil() predicate.Event

ErrorComponentNotNil applies the NotNil predicate on the "error_component" field.

func ErrorMessage

func ErrorMessage(v string) predicate.Event

ErrorMessage applies equality check predicate on the "error_message" field. It's identical to ErrorMessageEQ.

func ErrorMessageContains

func ErrorMessageContains(v string) predicate.Event

ErrorMessageContains applies the Contains predicate on the "error_message" field.

func ErrorMessageContainsFold

func ErrorMessageContainsFold(v string) predicate.Event

ErrorMessageContainsFold applies the ContainsFold predicate on the "error_message" field.

func ErrorMessageEQ

func ErrorMessageEQ(v string) predicate.Event

ErrorMessageEQ applies the EQ predicate on the "error_message" field.

func ErrorMessageEqualFold

func ErrorMessageEqualFold(v string) predicate.Event

ErrorMessageEqualFold applies the EqualFold predicate on the "error_message" field.

func ErrorMessageGT

func ErrorMessageGT(v string) predicate.Event

ErrorMessageGT applies the GT predicate on the "error_message" field.

func ErrorMessageGTE

func ErrorMessageGTE(v string) predicate.Event

ErrorMessageGTE applies the GTE predicate on the "error_message" field.

func ErrorMessageHasPrefix

func ErrorMessageHasPrefix(v string) predicate.Event

ErrorMessageHasPrefix applies the HasPrefix predicate on the "error_message" field.

func ErrorMessageHasSuffix

func ErrorMessageHasSuffix(v string) predicate.Event

ErrorMessageHasSuffix applies the HasSuffix predicate on the "error_message" field.

func ErrorMessageIn

func ErrorMessageIn(vs ...string) predicate.Event

ErrorMessageIn applies the In predicate on the "error_message" field.

func ErrorMessageIsNil

func ErrorMessageIsNil() predicate.Event

ErrorMessageIsNil applies the IsNil predicate on the "error_message" field.

func ErrorMessageLT

func ErrorMessageLT(v string) predicate.Event

ErrorMessageLT applies the LT predicate on the "error_message" field.

func ErrorMessageLTE

func ErrorMessageLTE(v string) predicate.Event

ErrorMessageLTE applies the LTE predicate on the "error_message" field.

func ErrorMessageNEQ

func ErrorMessageNEQ(v string) predicate.Event

ErrorMessageNEQ applies the NEQ predicate on the "error_message" field.

func ErrorMessageNotIn

func ErrorMessageNotIn(vs ...string) predicate.Event

ErrorMessageNotIn applies the NotIn predicate on the "error_message" field.

func ErrorMessageNotNil

func ErrorMessageNotNil() predicate.Event

ErrorMessageNotNil applies the NotNil predicate on the "error_message" field.

func ErrorStack

func ErrorStack(v string) predicate.Event

ErrorStack applies equality check predicate on the "error_stack" field. It's identical to ErrorStackEQ.

func ErrorStackContains

func ErrorStackContains(v string) predicate.Event

ErrorStackContains applies the Contains predicate on the "error_stack" field.

func ErrorStackContainsFold

func ErrorStackContainsFold(v string) predicate.Event

ErrorStackContainsFold applies the ContainsFold predicate on the "error_stack" field.

func ErrorStackEQ

func ErrorStackEQ(v string) predicate.Event

ErrorStackEQ applies the EQ predicate on the "error_stack" field.

func ErrorStackEqualFold

func ErrorStackEqualFold(v string) predicate.Event

ErrorStackEqualFold applies the EqualFold predicate on the "error_stack" field.

func ErrorStackGT

func ErrorStackGT(v string) predicate.Event

ErrorStackGT applies the GT predicate on the "error_stack" field.

func ErrorStackGTE

func ErrorStackGTE(v string) predicate.Event

ErrorStackGTE applies the GTE predicate on the "error_stack" field.

func ErrorStackHasPrefix

func ErrorStackHasPrefix(v string) predicate.Event

ErrorStackHasPrefix applies the HasPrefix predicate on the "error_stack" field.

func ErrorStackHasSuffix

func ErrorStackHasSuffix(v string) predicate.Event

ErrorStackHasSuffix applies the HasSuffix predicate on the "error_stack" field.

func ErrorStackIn

func ErrorStackIn(vs ...string) predicate.Event

ErrorStackIn applies the In predicate on the "error_stack" field.

func ErrorStackIsNil

func ErrorStackIsNil() predicate.Event

ErrorStackIsNil applies the IsNil predicate on the "error_stack" field.

func ErrorStackLT

func ErrorStackLT(v string) predicate.Event

ErrorStackLT applies the LT predicate on the "error_stack" field.

func ErrorStackLTE

func ErrorStackLTE(v string) predicate.Event

ErrorStackLTE applies the LTE predicate on the "error_stack" field.

func ErrorStackNEQ

func ErrorStackNEQ(v string) predicate.Event

ErrorStackNEQ applies the NEQ predicate on the "error_stack" field.

func ErrorStackNotIn

func ErrorStackNotIn(vs ...string) predicate.Event

ErrorStackNotIn applies the NotIn predicate on the "error_stack" field.

func ErrorStackNotNil

func ErrorStackNotNil() predicate.Event

ErrorStackNotNil applies the NotNil predicate on the "error_stack" field.

func ErrorType

func ErrorType(v string) predicate.Event

ErrorType applies equality check predicate on the "error_type" field. It's identical to ErrorTypeEQ.

func ErrorTypeContains

func ErrorTypeContains(v string) predicate.Event

ErrorTypeContains applies the Contains predicate on the "error_type" field.

func ErrorTypeContainsFold

func ErrorTypeContainsFold(v string) predicate.Event

ErrorTypeContainsFold applies the ContainsFold predicate on the "error_type" field.

func ErrorTypeEQ

func ErrorTypeEQ(v string) predicate.Event

ErrorTypeEQ applies the EQ predicate on the "error_type" field.

func ErrorTypeEqualFold

func ErrorTypeEqualFold(v string) predicate.Event

ErrorTypeEqualFold applies the EqualFold predicate on the "error_type" field.

func ErrorTypeGT

func ErrorTypeGT(v string) predicate.Event

ErrorTypeGT applies the GT predicate on the "error_type" field.

func ErrorTypeGTE

func ErrorTypeGTE(v string) predicate.Event

ErrorTypeGTE applies the GTE predicate on the "error_type" field.

func ErrorTypeHasPrefix

func ErrorTypeHasPrefix(v string) predicate.Event

ErrorTypeHasPrefix applies the HasPrefix predicate on the "error_type" field.

func ErrorTypeHasSuffix

func ErrorTypeHasSuffix(v string) predicate.Event

ErrorTypeHasSuffix applies the HasSuffix predicate on the "error_type" field.

func ErrorTypeIn

func ErrorTypeIn(vs ...string) predicate.Event

ErrorTypeIn applies the In predicate on the "error_type" field.

func ErrorTypeIsNil

func ErrorTypeIsNil() predicate.Event

ErrorTypeIsNil applies the IsNil predicate on the "error_type" field.

func ErrorTypeLT

func ErrorTypeLT(v string) predicate.Event

ErrorTypeLT applies the LT predicate on the "error_type" field.

func ErrorTypeLTE

func ErrorTypeLTE(v string) predicate.Event

ErrorTypeLTE applies the LTE predicate on the "error_type" field.

func ErrorTypeNEQ

func ErrorTypeNEQ(v string) predicate.Event

ErrorTypeNEQ applies the NEQ predicate on the "error_type" field.

func ErrorTypeNotIn

func ErrorTypeNotIn(vs ...string) predicate.Event

ErrorTypeNotIn applies the NotIn predicate on the "error_type" field.

func ErrorTypeNotNil

func ErrorTypeNotNil() predicate.Event

ErrorTypeNotNil applies the NotNil predicate on the "error_type" field.

func EventID

func EventID(v string) predicate.Event

EventID applies equality check predicate on the "event_id" field. It's identical to EventIDEQ.

func EventIDContains

func EventIDContains(v string) predicate.Event

EventIDContains applies the Contains predicate on the "event_id" field.

func EventIDContainsFold

func EventIDContainsFold(v string) predicate.Event

EventIDContainsFold applies the ContainsFold predicate on the "event_id" field.

func EventIDEQ

func EventIDEQ(v string) predicate.Event

EventIDEQ applies the EQ predicate on the "event_id" field.

func EventIDEqualFold

func EventIDEqualFold(v string) predicate.Event

EventIDEqualFold applies the EqualFold predicate on the "event_id" field.

func EventIDGT

func EventIDGT(v string) predicate.Event

EventIDGT applies the GT predicate on the "event_id" field.

func EventIDGTE

func EventIDGTE(v string) predicate.Event

EventIDGTE applies the GTE predicate on the "event_id" field.

func EventIDHasPrefix

func EventIDHasPrefix(v string) predicate.Event

EventIDHasPrefix applies the HasPrefix predicate on the "event_id" field.

func EventIDHasSuffix

func EventIDHasSuffix(v string) predicate.Event

EventIDHasSuffix applies the HasSuffix predicate on the "event_id" field.

func EventIDIn

func EventIDIn(vs ...string) predicate.Event

EventIDIn applies the In predicate on the "event_id" field.

func EventIDLT

func EventIDLT(v string) predicate.Event

EventIDLT applies the LT predicate on the "event_id" field.

func EventIDLTE

func EventIDLTE(v string) predicate.Event

EventIDLTE applies the LTE predicate on the "event_id" field.

func EventIDNEQ

func EventIDNEQ(v string) predicate.Event

EventIDNEQ applies the NEQ predicate on the "event_id" field.

func EventIDNotIn

func EventIDNotIn(vs ...string) predicate.Event

EventIDNotIn applies the NotIn predicate on the "event_id" field.

func EventName

func EventName(v string) predicate.Event

EventName applies equality check predicate on the "event_name" field. It's identical to EventNameEQ.

func EventNameContains

func EventNameContains(v string) predicate.Event

EventNameContains applies the Contains predicate on the "event_name" field.

func EventNameContainsFold

func EventNameContainsFold(v string) predicate.Event

EventNameContainsFold applies the ContainsFold predicate on the "event_name" field.

func EventNameEQ

func EventNameEQ(v string) predicate.Event

EventNameEQ applies the EQ predicate on the "event_name" field.

func EventNameEqualFold

func EventNameEqualFold(v string) predicate.Event

EventNameEqualFold applies the EqualFold predicate on the "event_name" field.

func EventNameGT

func EventNameGT(v string) predicate.Event

EventNameGT applies the GT predicate on the "event_name" field.

func EventNameGTE

func EventNameGTE(v string) predicate.Event

EventNameGTE applies the GTE predicate on the "event_name" field.

func EventNameHasPrefix

func EventNameHasPrefix(v string) predicate.Event

EventNameHasPrefix applies the HasPrefix predicate on the "event_name" field.

func EventNameHasSuffix

func EventNameHasSuffix(v string) predicate.Event

EventNameHasSuffix applies the HasSuffix predicate on the "event_name" field.

func EventNameIn

func EventNameIn(vs ...string) predicate.Event

EventNameIn applies the In predicate on the "event_name" field.

func EventNameIsNil

func EventNameIsNil() predicate.Event

EventNameIsNil applies the IsNil predicate on the "event_name" field.

func EventNameLT

func EventNameLT(v string) predicate.Event

EventNameLT applies the LT predicate on the "event_name" field.

func EventNameLTE

func EventNameLTE(v string) predicate.Event

EventNameLTE applies the LTE predicate on the "event_name" field.

func EventNameNEQ

func EventNameNEQ(v string) predicate.Event

EventNameNEQ applies the NEQ predicate on the "event_name" field.

func EventNameNotIn

func EventNameNotIn(vs ...string) predicate.Event

EventNameNotIn applies the NotIn predicate on the "event_name" field.

func EventNameNotNil

func EventNameNotNil() predicate.Event

EventNameNotNil applies the NotNil predicate on the "event_name" field.

func EventTypeEQ

func EventTypeEQ(v EventType) predicate.Event

EventTypeEQ applies the EQ predicate on the "event_type" field.

func EventTypeIn

func EventTypeIn(vs ...EventType) predicate.Event

EventTypeIn applies the In predicate on the "event_type" field.

func EventTypeNEQ

func EventTypeNEQ(v EventType) predicate.Event

EventTypeNEQ applies the NEQ predicate on the "event_type" field.

func EventTypeNotIn

func EventTypeNotIn(vs ...EventType) predicate.Event

EventTypeNotIn applies the NotIn predicate on the "event_type" field.

func EventTypeValidator

func EventTypeValidator(et EventType) error

EventTypeValidator is a validator for the "event_type" field enum values. It is called by the builders before save.

func HasJourney

func HasJourney() predicate.Event

HasJourney applies the HasEdge predicate on the "journey" edge.

func HasJourneyWith

func HasJourneyWith(preds ...predicate.Journey) predicate.Event

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

func HasProject

func HasProject() predicate.Event

HasProject applies the HasEdge predicate on the "project" edge.

func HasProjectWith

func HasProjectWith(preds ...predicate.Project) predicate.Event

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

func ID

func ID(id uuid.UUID) predicate.Event

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id uuid.UUID) predicate.Event

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id uuid.UUID) predicate.Event

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id uuid.UUID) predicate.Event

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.Event

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id uuid.UUID) predicate.Event

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.Event

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.Event

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.Event

IDNotIn applies the NotIn predicate on the ID field.

func JourneyID

func JourneyID(v uuid.UUID) predicate.Event

JourneyID applies equality check predicate on the "journey_id" field. It's identical to JourneyIDEQ.

func JourneyIDEQ

func JourneyIDEQ(v uuid.UUID) predicate.Event

JourneyIDEQ applies the EQ predicate on the "journey_id" field.

func JourneyIDIn

func JourneyIDIn(vs ...uuid.UUID) predicate.Event

JourneyIDIn applies the In predicate on the "journey_id" field.

func JourneyIDIsNil

func JourneyIDIsNil() predicate.Event

JourneyIDIsNil applies the IsNil predicate on the "journey_id" field.

func JourneyIDNEQ

func JourneyIDNEQ(v uuid.UUID) predicate.Event

JourneyIDNEQ applies the NEQ predicate on the "journey_id" field.

func JourneyIDNotIn

func JourneyIDNotIn(vs ...uuid.UUID) predicate.Event

JourneyIDNotIn applies the NotIn predicate on the "journey_id" field.

func JourneyIDNotNil

func JourneyIDNotNil() predicate.Event

JourneyIDNotNil applies the NotNil predicate on the "journey_id" field.

func JourneyStepID

func JourneyStepID(v string) predicate.Event

JourneyStepID applies equality check predicate on the "journey_step_id" field. It's identical to JourneyStepIDEQ.

func JourneyStepIDContains

func JourneyStepIDContains(v string) predicate.Event

JourneyStepIDContains applies the Contains predicate on the "journey_step_id" field.

func JourneyStepIDContainsFold

func JourneyStepIDContainsFold(v string) predicate.Event

JourneyStepIDContainsFold applies the ContainsFold predicate on the "journey_step_id" field.

func JourneyStepIDEQ

func JourneyStepIDEQ(v string) predicate.Event

JourneyStepIDEQ applies the EQ predicate on the "journey_step_id" field.

func JourneyStepIDEqualFold

func JourneyStepIDEqualFold(v string) predicate.Event

JourneyStepIDEqualFold applies the EqualFold predicate on the "journey_step_id" field.

func JourneyStepIDGT

func JourneyStepIDGT(v string) predicate.Event

JourneyStepIDGT applies the GT predicate on the "journey_step_id" field.

func JourneyStepIDGTE

func JourneyStepIDGTE(v string) predicate.Event

JourneyStepIDGTE applies the GTE predicate on the "journey_step_id" field.

func JourneyStepIDHasPrefix

func JourneyStepIDHasPrefix(v string) predicate.Event

JourneyStepIDHasPrefix applies the HasPrefix predicate on the "journey_step_id" field.

func JourneyStepIDHasSuffix

func JourneyStepIDHasSuffix(v string) predicate.Event

JourneyStepIDHasSuffix applies the HasSuffix predicate on the "journey_step_id" field.

func JourneyStepIDIn

func JourneyStepIDIn(vs ...string) predicate.Event

JourneyStepIDIn applies the In predicate on the "journey_step_id" field.

func JourneyStepIDIsNil

func JourneyStepIDIsNil() predicate.Event

JourneyStepIDIsNil applies the IsNil predicate on the "journey_step_id" field.

func JourneyStepIDLT

func JourneyStepIDLT(v string) predicate.Event

JourneyStepIDLT applies the LT predicate on the "journey_step_id" field.

func JourneyStepIDLTE

func JourneyStepIDLTE(v string) predicate.Event

JourneyStepIDLTE applies the LTE predicate on the "journey_step_id" field.

func JourneyStepIDNEQ

func JourneyStepIDNEQ(v string) predicate.Event

JourneyStepIDNEQ applies the NEQ predicate on the "journey_step_id" field.

func JourneyStepIDNotIn

func JourneyStepIDNotIn(vs ...string) predicate.Event

JourneyStepIDNotIn applies the NotIn predicate on the "journey_step_id" field.

func JourneyStepIDNotNil

func JourneyStepIDNotNil() predicate.Event

JourneyStepIDNotNil applies the NotNil predicate on the "journey_step_id" field.

func JourneyStepName

func JourneyStepName(v string) predicate.Event

JourneyStepName applies equality check predicate on the "journey_step_name" field. It's identical to JourneyStepNameEQ.

func JourneyStepNameContains

func JourneyStepNameContains(v string) predicate.Event

JourneyStepNameContains applies the Contains predicate on the "journey_step_name" field.

func JourneyStepNameContainsFold

func JourneyStepNameContainsFold(v string) predicate.Event

JourneyStepNameContainsFold applies the ContainsFold predicate on the "journey_step_name" field.

func JourneyStepNameEQ

func JourneyStepNameEQ(v string) predicate.Event

JourneyStepNameEQ applies the EQ predicate on the "journey_step_name" field.

func JourneyStepNameEqualFold

func JourneyStepNameEqualFold(v string) predicate.Event

JourneyStepNameEqualFold applies the EqualFold predicate on the "journey_step_name" field.

func JourneyStepNameGT

func JourneyStepNameGT(v string) predicate.Event

JourneyStepNameGT applies the GT predicate on the "journey_step_name" field.

func JourneyStepNameGTE

func JourneyStepNameGTE(v string) predicate.Event

JourneyStepNameGTE applies the GTE predicate on the "journey_step_name" field.

func JourneyStepNameHasPrefix

func JourneyStepNameHasPrefix(v string) predicate.Event

JourneyStepNameHasPrefix applies the HasPrefix predicate on the "journey_step_name" field.

func JourneyStepNameHasSuffix

func JourneyStepNameHasSuffix(v string) predicate.Event

JourneyStepNameHasSuffix applies the HasSuffix predicate on the "journey_step_name" field.

func JourneyStepNameIn

func JourneyStepNameIn(vs ...string) predicate.Event

JourneyStepNameIn applies the In predicate on the "journey_step_name" field.

func JourneyStepNameIsNil

func JourneyStepNameIsNil() predicate.Event

JourneyStepNameIsNil applies the IsNil predicate on the "journey_step_name" field.

func JourneyStepNameLT

func JourneyStepNameLT(v string) predicate.Event

JourneyStepNameLT applies the LT predicate on the "journey_step_name" field.

func JourneyStepNameLTE

func JourneyStepNameLTE(v string) predicate.Event

JourneyStepNameLTE applies the LTE predicate on the "journey_step_name" field.

func JourneyStepNameNEQ

func JourneyStepNameNEQ(v string) predicate.Event

JourneyStepNameNEQ applies the NEQ predicate on the "journey_step_name" field.

func JourneyStepNameNotIn

func JourneyStepNameNotIn(vs ...string) predicate.Event

JourneyStepNameNotIn applies the NotIn predicate on the "journey_step_name" field.

func JourneyStepNameNotNil

func JourneyStepNameNotNil() predicate.Event

JourneyStepNameNotNil applies the NotNil predicate on the "journey_step_name" field.

func MetadataIsNil

func MetadataIsNil() predicate.Event

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

func MetadataNotNil

func MetadataNotNil() predicate.Event

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

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.Event) predicate.Event

Or groups predicates with the OR operator between them.

func OrgID

func OrgID(v uuid.UUID) predicate.Event

OrgID applies equality check predicate on the "org_id" field. It's identical to OrgIDEQ.

func OrgIDEQ

func OrgIDEQ(v uuid.UUID) predicate.Event

OrgIDEQ applies the EQ predicate on the "org_id" field.

func OrgIDGT

func OrgIDGT(v uuid.UUID) predicate.Event

OrgIDGT applies the GT predicate on the "org_id" field.

func OrgIDGTE

func OrgIDGTE(v uuid.UUID) predicate.Event

OrgIDGTE applies the GTE predicate on the "org_id" field.

func OrgIDIn

func OrgIDIn(vs ...uuid.UUID) predicate.Event

OrgIDIn applies the In predicate on the "org_id" field.

func OrgIDLT

func OrgIDLT(v uuid.UUID) predicate.Event

OrgIDLT applies the LT predicate on the "org_id" field.

func OrgIDLTE

func OrgIDLTE(v uuid.UUID) predicate.Event

OrgIDLTE applies the LTE predicate on the "org_id" field.

func OrgIDNEQ

func OrgIDNEQ(v uuid.UUID) predicate.Event

OrgIDNEQ applies the NEQ predicate on the "org_id" field.

func OrgIDNotIn

func OrgIDNotIn(vs ...uuid.UUID) predicate.Event

OrgIDNotIn applies the NotIn predicate on the "org_id" field.

func PagePath

func PagePath(v string) predicate.Event

PagePath applies equality check predicate on the "page_path" field. It's identical to PagePathEQ.

func PagePathContains

func PagePathContains(v string) predicate.Event

PagePathContains applies the Contains predicate on the "page_path" field.

func PagePathContainsFold

func PagePathContainsFold(v string) predicate.Event

PagePathContainsFold applies the ContainsFold predicate on the "page_path" field.

func PagePathEQ

func PagePathEQ(v string) predicate.Event

PagePathEQ applies the EQ predicate on the "page_path" field.

func PagePathEqualFold

func PagePathEqualFold(v string) predicate.Event

PagePathEqualFold applies the EqualFold predicate on the "page_path" field.

func PagePathGT

func PagePathGT(v string) predicate.Event

PagePathGT applies the GT predicate on the "page_path" field.

func PagePathGTE

func PagePathGTE(v string) predicate.Event

PagePathGTE applies the GTE predicate on the "page_path" field.

func PagePathHasPrefix

func PagePathHasPrefix(v string) predicate.Event

PagePathHasPrefix applies the HasPrefix predicate on the "page_path" field.

func PagePathHasSuffix

func PagePathHasSuffix(v string) predicate.Event

PagePathHasSuffix applies the HasSuffix predicate on the "page_path" field.

func PagePathIn

func PagePathIn(vs ...string) predicate.Event

PagePathIn applies the In predicate on the "page_path" field.

func PagePathIsNil

func PagePathIsNil() predicate.Event

PagePathIsNil applies the IsNil predicate on the "page_path" field.

func PagePathLT

func PagePathLT(v string) predicate.Event

PagePathLT applies the LT predicate on the "page_path" field.

func PagePathLTE

func PagePathLTE(v string) predicate.Event

PagePathLTE applies the LTE predicate on the "page_path" field.

func PagePathNEQ

func PagePathNEQ(v string) predicate.Event

PagePathNEQ applies the NEQ predicate on the "page_path" field.

func PagePathNotIn

func PagePathNotIn(vs ...string) predicate.Event

PagePathNotIn applies the NotIn predicate on the "page_path" field.

func PagePathNotNil

func PagePathNotNil() predicate.Event

PagePathNotNil applies the NotNil predicate on the "page_path" field.

func PageReferrer

func PageReferrer(v string) predicate.Event

PageReferrer applies equality check predicate on the "page_referrer" field. It's identical to PageReferrerEQ.

func PageReferrerContains

func PageReferrerContains(v string) predicate.Event

PageReferrerContains applies the Contains predicate on the "page_referrer" field.

func PageReferrerContainsFold

func PageReferrerContainsFold(v string) predicate.Event

PageReferrerContainsFold applies the ContainsFold predicate on the "page_referrer" field.

func PageReferrerEQ

func PageReferrerEQ(v string) predicate.Event

PageReferrerEQ applies the EQ predicate on the "page_referrer" field.

func PageReferrerEqualFold

func PageReferrerEqualFold(v string) predicate.Event

PageReferrerEqualFold applies the EqualFold predicate on the "page_referrer" field.

func PageReferrerGT

func PageReferrerGT(v string) predicate.Event

PageReferrerGT applies the GT predicate on the "page_referrer" field.

func PageReferrerGTE

func PageReferrerGTE(v string) predicate.Event

PageReferrerGTE applies the GTE predicate on the "page_referrer" field.

func PageReferrerHasPrefix

func PageReferrerHasPrefix(v string) predicate.Event

PageReferrerHasPrefix applies the HasPrefix predicate on the "page_referrer" field.

func PageReferrerHasSuffix

func PageReferrerHasSuffix(v string) predicate.Event

PageReferrerHasSuffix applies the HasSuffix predicate on the "page_referrer" field.

func PageReferrerIn

func PageReferrerIn(vs ...string) predicate.Event

PageReferrerIn applies the In predicate on the "page_referrer" field.

func PageReferrerIsNil

func PageReferrerIsNil() predicate.Event

PageReferrerIsNil applies the IsNil predicate on the "page_referrer" field.

func PageReferrerLT

func PageReferrerLT(v string) predicate.Event

PageReferrerLT applies the LT predicate on the "page_referrer" field.

func PageReferrerLTE

func PageReferrerLTE(v string) predicate.Event

PageReferrerLTE applies the LTE predicate on the "page_referrer" field.

func PageReferrerNEQ

func PageReferrerNEQ(v string) predicate.Event

PageReferrerNEQ applies the NEQ predicate on the "page_referrer" field.

func PageReferrerNotIn

func PageReferrerNotIn(vs ...string) predicate.Event

PageReferrerNotIn applies the NotIn predicate on the "page_referrer" field.

func PageReferrerNotNil

func PageReferrerNotNil() predicate.Event

PageReferrerNotNil applies the NotNil predicate on the "page_referrer" field.

func PageTitle

func PageTitle(v string) predicate.Event

PageTitle applies equality check predicate on the "page_title" field. It's identical to PageTitleEQ.

func PageTitleContains

func PageTitleContains(v string) predicate.Event

PageTitleContains applies the Contains predicate on the "page_title" field.

func PageTitleContainsFold

func PageTitleContainsFold(v string) predicate.Event

PageTitleContainsFold applies the ContainsFold predicate on the "page_title" field.

func PageTitleEQ

func PageTitleEQ(v string) predicate.Event

PageTitleEQ applies the EQ predicate on the "page_title" field.

func PageTitleEqualFold

func PageTitleEqualFold(v string) predicate.Event

PageTitleEqualFold applies the EqualFold predicate on the "page_title" field.

func PageTitleGT

func PageTitleGT(v string) predicate.Event

PageTitleGT applies the GT predicate on the "page_title" field.

func PageTitleGTE

func PageTitleGTE(v string) predicate.Event

PageTitleGTE applies the GTE predicate on the "page_title" field.

func PageTitleHasPrefix

func PageTitleHasPrefix(v string) predicate.Event

PageTitleHasPrefix applies the HasPrefix predicate on the "page_title" field.

func PageTitleHasSuffix

func PageTitleHasSuffix(v string) predicate.Event

PageTitleHasSuffix applies the HasSuffix predicate on the "page_title" field.

func PageTitleIn

func PageTitleIn(vs ...string) predicate.Event

PageTitleIn applies the In predicate on the "page_title" field.

func PageTitleIsNil

func PageTitleIsNil() predicate.Event

PageTitleIsNil applies the IsNil predicate on the "page_title" field.

func PageTitleLT

func PageTitleLT(v string) predicate.Event

PageTitleLT applies the LT predicate on the "page_title" field.

func PageTitleLTE

func PageTitleLTE(v string) predicate.Event

PageTitleLTE applies the LTE predicate on the "page_title" field.

func PageTitleNEQ

func PageTitleNEQ(v string) predicate.Event

PageTitleNEQ applies the NEQ predicate on the "page_title" field.

func PageTitleNotIn

func PageTitleNotIn(vs ...string) predicate.Event

PageTitleNotIn applies the NotIn predicate on the "page_title" field.

func PageTitleNotNil

func PageTitleNotNil() predicate.Event

PageTitleNotNil applies the NotNil predicate on the "page_title" field.

func PageURL

func PageURL(v string) predicate.Event

PageURL applies equality check predicate on the "page_url" field. It's identical to PageURLEQ.

func PageURLContains

func PageURLContains(v string) predicate.Event

PageURLContains applies the Contains predicate on the "page_url" field.

func PageURLContainsFold

func PageURLContainsFold(v string) predicate.Event

PageURLContainsFold applies the ContainsFold predicate on the "page_url" field.

func PageURLEQ

func PageURLEQ(v string) predicate.Event

PageURLEQ applies the EQ predicate on the "page_url" field.

func PageURLEqualFold

func PageURLEqualFold(v string) predicate.Event

PageURLEqualFold applies the EqualFold predicate on the "page_url" field.

func PageURLGT

func PageURLGT(v string) predicate.Event

PageURLGT applies the GT predicate on the "page_url" field.

func PageURLGTE

func PageURLGTE(v string) predicate.Event

PageURLGTE applies the GTE predicate on the "page_url" field.

func PageURLHasPrefix

func PageURLHasPrefix(v string) predicate.Event

PageURLHasPrefix applies the HasPrefix predicate on the "page_url" field.

func PageURLHasSuffix

func PageURLHasSuffix(v string) predicate.Event

PageURLHasSuffix applies the HasSuffix predicate on the "page_url" field.

func PageURLIn

func PageURLIn(vs ...string) predicate.Event

PageURLIn applies the In predicate on the "page_url" field.

func PageURLIsNil

func PageURLIsNil() predicate.Event

PageURLIsNil applies the IsNil predicate on the "page_url" field.

func PageURLLT

func PageURLLT(v string) predicate.Event

PageURLLT applies the LT predicate on the "page_url" field.

func PageURLLTE

func PageURLLTE(v string) predicate.Event

PageURLLTE applies the LTE predicate on the "page_url" field.

func PageURLNEQ

func PageURLNEQ(v string) predicate.Event

PageURLNEQ applies the NEQ predicate on the "page_url" field.

func PageURLNotIn

func PageURLNotIn(vs ...string) predicate.Event

PageURLNotIn applies the NotIn predicate on the "page_url" field.

func PageURLNotNil

func PageURLNotNil() predicate.Event

PageURLNotNil applies the NotNil predicate on the "page_url" field.

func PerformanceCls

func PerformanceCls(v float64) predicate.Event

PerformanceCls applies equality check predicate on the "performance_cls" field. It's identical to PerformanceClsEQ.

func PerformanceClsEQ

func PerformanceClsEQ(v float64) predicate.Event

PerformanceClsEQ applies the EQ predicate on the "performance_cls" field.

func PerformanceClsGT

func PerformanceClsGT(v float64) predicate.Event

PerformanceClsGT applies the GT predicate on the "performance_cls" field.

func PerformanceClsGTE

func PerformanceClsGTE(v float64) predicate.Event

PerformanceClsGTE applies the GTE predicate on the "performance_cls" field.

func PerformanceClsIn

func PerformanceClsIn(vs ...float64) predicate.Event

PerformanceClsIn applies the In predicate on the "performance_cls" field.

func PerformanceClsIsNil

func PerformanceClsIsNil() predicate.Event

PerformanceClsIsNil applies the IsNil predicate on the "performance_cls" field.

func PerformanceClsLT

func PerformanceClsLT(v float64) predicate.Event

PerformanceClsLT applies the LT predicate on the "performance_cls" field.

func PerformanceClsLTE

func PerformanceClsLTE(v float64) predicate.Event

PerformanceClsLTE applies the LTE predicate on the "performance_cls" field.

func PerformanceClsNEQ

func PerformanceClsNEQ(v float64) predicate.Event

PerformanceClsNEQ applies the NEQ predicate on the "performance_cls" field.

func PerformanceClsNotIn

func PerformanceClsNotIn(vs ...float64) predicate.Event

PerformanceClsNotIn applies the NotIn predicate on the "performance_cls" field.

func PerformanceClsNotNil

func PerformanceClsNotNil() predicate.Event

PerformanceClsNotNil applies the NotNil predicate on the "performance_cls" field.

func PerformanceFidMs

func PerformanceFidMs(v float64) predicate.Event

PerformanceFidMs applies equality check predicate on the "performance_fid_ms" field. It's identical to PerformanceFidMsEQ.

func PerformanceFidMsEQ

func PerformanceFidMsEQ(v float64) predicate.Event

PerformanceFidMsEQ applies the EQ predicate on the "performance_fid_ms" field.

func PerformanceFidMsGT

func PerformanceFidMsGT(v float64) predicate.Event

PerformanceFidMsGT applies the GT predicate on the "performance_fid_ms" field.

func PerformanceFidMsGTE

func PerformanceFidMsGTE(v float64) predicate.Event

PerformanceFidMsGTE applies the GTE predicate on the "performance_fid_ms" field.

func PerformanceFidMsIn

func PerformanceFidMsIn(vs ...float64) predicate.Event

PerformanceFidMsIn applies the In predicate on the "performance_fid_ms" field.

func PerformanceFidMsIsNil

func PerformanceFidMsIsNil() predicate.Event

PerformanceFidMsIsNil applies the IsNil predicate on the "performance_fid_ms" field.

func PerformanceFidMsLT

func PerformanceFidMsLT(v float64) predicate.Event

PerformanceFidMsLT applies the LT predicate on the "performance_fid_ms" field.

func PerformanceFidMsLTE

func PerformanceFidMsLTE(v float64) predicate.Event

PerformanceFidMsLTE applies the LTE predicate on the "performance_fid_ms" field.

func PerformanceFidMsNEQ

func PerformanceFidMsNEQ(v float64) predicate.Event

PerformanceFidMsNEQ applies the NEQ predicate on the "performance_fid_ms" field.

func PerformanceFidMsNotIn

func PerformanceFidMsNotIn(vs ...float64) predicate.Event

PerformanceFidMsNotIn applies the NotIn predicate on the "performance_fid_ms" field.

func PerformanceFidMsNotNil

func PerformanceFidMsNotNil() predicate.Event

PerformanceFidMsNotNil applies the NotNil predicate on the "performance_fid_ms" field.

func PerformanceLcpMs

func PerformanceLcpMs(v float64) predicate.Event

PerformanceLcpMs applies equality check predicate on the "performance_lcp_ms" field. It's identical to PerformanceLcpMsEQ.

func PerformanceLcpMsEQ

func PerformanceLcpMsEQ(v float64) predicate.Event

PerformanceLcpMsEQ applies the EQ predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsGT

func PerformanceLcpMsGT(v float64) predicate.Event

PerformanceLcpMsGT applies the GT predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsGTE

func PerformanceLcpMsGTE(v float64) predicate.Event

PerformanceLcpMsGTE applies the GTE predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsIn

func PerformanceLcpMsIn(vs ...float64) predicate.Event

PerformanceLcpMsIn applies the In predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsIsNil

func PerformanceLcpMsIsNil() predicate.Event

PerformanceLcpMsIsNil applies the IsNil predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsLT

func PerformanceLcpMsLT(v float64) predicate.Event

PerformanceLcpMsLT applies the LT predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsLTE

func PerformanceLcpMsLTE(v float64) predicate.Event

PerformanceLcpMsLTE applies the LTE predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsNEQ

func PerformanceLcpMsNEQ(v float64) predicate.Event

PerformanceLcpMsNEQ applies the NEQ predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsNotIn

func PerformanceLcpMsNotIn(vs ...float64) predicate.Event

PerformanceLcpMsNotIn applies the NotIn predicate on the "performance_lcp_ms" field.

func PerformanceLcpMsNotNil

func PerformanceLcpMsNotNil() predicate.Event

PerformanceLcpMsNotNil applies the NotNil predicate on the "performance_lcp_ms" field.

func PerformanceTtfbMs

func PerformanceTtfbMs(v float64) predicate.Event

PerformanceTtfbMs applies equality check predicate on the "performance_ttfb_ms" field. It's identical to PerformanceTtfbMsEQ.

func PerformanceTtfbMsEQ

func PerformanceTtfbMsEQ(v float64) predicate.Event

PerformanceTtfbMsEQ applies the EQ predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsGT

func PerformanceTtfbMsGT(v float64) predicate.Event

PerformanceTtfbMsGT applies the GT predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsGTE

func PerformanceTtfbMsGTE(v float64) predicate.Event

PerformanceTtfbMsGTE applies the GTE predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsIn

func PerformanceTtfbMsIn(vs ...float64) predicate.Event

PerformanceTtfbMsIn applies the In predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsIsNil

func PerformanceTtfbMsIsNil() predicate.Event

PerformanceTtfbMsIsNil applies the IsNil predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsLT

func PerformanceTtfbMsLT(v float64) predicate.Event

PerformanceTtfbMsLT applies the LT predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsLTE

func PerformanceTtfbMsLTE(v float64) predicate.Event

PerformanceTtfbMsLTE applies the LTE predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsNEQ

func PerformanceTtfbMsNEQ(v float64) predicate.Event

PerformanceTtfbMsNEQ applies the NEQ predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsNotIn

func PerformanceTtfbMsNotIn(vs ...float64) predicate.Event

PerformanceTtfbMsNotIn applies the NotIn predicate on the "performance_ttfb_ms" field.

func PerformanceTtfbMsNotNil

func PerformanceTtfbMsNotNil() predicate.Event

PerformanceTtfbMsNotNil applies the NotNil predicate on the "performance_ttfb_ms" field.

func ProjectID

func ProjectID(v uuid.UUID) predicate.Event

ProjectID applies equality check predicate on the "project_id" field. It's identical to ProjectIDEQ.

func ProjectIDEQ

func ProjectIDEQ(v uuid.UUID) predicate.Event

ProjectIDEQ applies the EQ predicate on the "project_id" field.

func ProjectIDIn

func ProjectIDIn(vs ...uuid.UUID) predicate.Event

ProjectIDIn applies the In predicate on the "project_id" field.

func ProjectIDNEQ

func ProjectIDNEQ(v uuid.UUID) predicate.Event

ProjectIDNEQ applies the NEQ predicate on the "project_id" field.

func ProjectIDNotIn

func ProjectIDNotIn(vs ...uuid.UUID) predicate.Event

ProjectIDNotIn applies the NotIn predicate on the "project_id" field.

func Sequence

func Sequence(v int64) predicate.Event

Sequence applies equality check predicate on the "sequence" field. It's identical to SequenceEQ.

func SequenceEQ

func SequenceEQ(v int64) predicate.Event

SequenceEQ applies the EQ predicate on the "sequence" field.

func SequenceGT

func SequenceGT(v int64) predicate.Event

SequenceGT applies the GT predicate on the "sequence" field.

func SequenceGTE

func SequenceGTE(v int64) predicate.Event

SequenceGTE applies the GTE predicate on the "sequence" field.

func SequenceIn

func SequenceIn(vs ...int64) predicate.Event

SequenceIn applies the In predicate on the "sequence" field.

func SequenceLT

func SequenceLT(v int64) predicate.Event

SequenceLT applies the LT predicate on the "sequence" field.

func SequenceLTE

func SequenceLTE(v int64) predicate.Event

SequenceLTE applies the LTE predicate on the "sequence" field.

func SequenceNEQ

func SequenceNEQ(v int64) predicate.Event

SequenceNEQ applies the NEQ predicate on the "sequence" field.

func SequenceNotIn

func SequenceNotIn(vs ...int64) predicate.Event

SequenceNotIn applies the NotIn predicate on the "sequence" field.

func SessionID

func SessionID(v string) predicate.Event

SessionID applies equality check predicate on the "session_id" field. It's identical to SessionIDEQ.

func SessionIDContains

func SessionIDContains(v string) predicate.Event

SessionIDContains applies the Contains predicate on the "session_id" field.

func SessionIDContainsFold

func SessionIDContainsFold(v string) predicate.Event

SessionIDContainsFold applies the ContainsFold predicate on the "session_id" field.

func SessionIDEQ

func SessionIDEQ(v string) predicate.Event

SessionIDEQ applies the EQ predicate on the "session_id" field.

func SessionIDEqualFold

func SessionIDEqualFold(v string) predicate.Event

SessionIDEqualFold applies the EqualFold predicate on the "session_id" field.

func SessionIDGT

func SessionIDGT(v string) predicate.Event

SessionIDGT applies the GT predicate on the "session_id" field.

func SessionIDGTE

func SessionIDGTE(v string) predicate.Event

SessionIDGTE applies the GTE predicate on the "session_id" field.

func SessionIDHasPrefix

func SessionIDHasPrefix(v string) predicate.Event

SessionIDHasPrefix applies the HasPrefix predicate on the "session_id" field.

func SessionIDHasSuffix

func SessionIDHasSuffix(v string) predicate.Event

SessionIDHasSuffix applies the HasSuffix predicate on the "session_id" field.

func SessionIDIn

func SessionIDIn(vs ...string) predicate.Event

SessionIDIn applies the In predicate on the "session_id" field.

func SessionIDLT

func SessionIDLT(v string) predicate.Event

SessionIDLT applies the LT predicate on the "session_id" field.

func SessionIDLTE

func SessionIDLTE(v string) predicate.Event

SessionIDLTE applies the LTE predicate on the "session_id" field.

func SessionIDNEQ

func SessionIDNEQ(v string) predicate.Event

SessionIDNEQ applies the NEQ predicate on the "session_id" field.

func SessionIDNotIn

func SessionIDNotIn(vs ...string) predicate.Event

SessionIDNotIn applies the NotIn predicate on the "session_id" field.

func SnapshotURL

func SnapshotURL(v string) predicate.Event

SnapshotURL applies equality check predicate on the "snapshot_url" field. It's identical to SnapshotURLEQ.

func SnapshotURLContains

func SnapshotURLContains(v string) predicate.Event

SnapshotURLContains applies the Contains predicate on the "snapshot_url" field.

func SnapshotURLContainsFold

func SnapshotURLContainsFold(v string) predicate.Event

SnapshotURLContainsFold applies the ContainsFold predicate on the "snapshot_url" field.

func SnapshotURLEQ

func SnapshotURLEQ(v string) predicate.Event

SnapshotURLEQ applies the EQ predicate on the "snapshot_url" field.

func SnapshotURLEqualFold

func SnapshotURLEqualFold(v string) predicate.Event

SnapshotURLEqualFold applies the EqualFold predicate on the "snapshot_url" field.

func SnapshotURLGT

func SnapshotURLGT(v string) predicate.Event

SnapshotURLGT applies the GT predicate on the "snapshot_url" field.

func SnapshotURLGTE

func SnapshotURLGTE(v string) predicate.Event

SnapshotURLGTE applies the GTE predicate on the "snapshot_url" field.

func SnapshotURLHasPrefix

func SnapshotURLHasPrefix(v string) predicate.Event

SnapshotURLHasPrefix applies the HasPrefix predicate on the "snapshot_url" field.

func SnapshotURLHasSuffix

func SnapshotURLHasSuffix(v string) predicate.Event

SnapshotURLHasSuffix applies the HasSuffix predicate on the "snapshot_url" field.

func SnapshotURLIn

func SnapshotURLIn(vs ...string) predicate.Event

SnapshotURLIn applies the In predicate on the "snapshot_url" field.

func SnapshotURLIsNil

func SnapshotURLIsNil() predicate.Event

SnapshotURLIsNil applies the IsNil predicate on the "snapshot_url" field.

func SnapshotURLLT

func SnapshotURLLT(v string) predicate.Event

SnapshotURLLT applies the LT predicate on the "snapshot_url" field.

func SnapshotURLLTE

func SnapshotURLLTE(v string) predicate.Event

SnapshotURLLTE applies the LTE predicate on the "snapshot_url" field.

func SnapshotURLNEQ

func SnapshotURLNEQ(v string) predicate.Event

SnapshotURLNEQ applies the NEQ predicate on the "snapshot_url" field.

func SnapshotURLNotIn

func SnapshotURLNotIn(vs ...string) predicate.Event

SnapshotURLNotIn applies the NotIn predicate on the "snapshot_url" field.

func SnapshotURLNotNil

func SnapshotURLNotNil() predicate.Event

SnapshotURLNotNil applies the NotNil predicate on the "snapshot_url" field.

func SnapshotViewport

func SnapshotViewport(v string) predicate.Event

SnapshotViewport applies equality check predicate on the "snapshot_viewport" field. It's identical to SnapshotViewportEQ.

func SnapshotViewportContains

func SnapshotViewportContains(v string) predicate.Event

SnapshotViewportContains applies the Contains predicate on the "snapshot_viewport" field.

func SnapshotViewportContainsFold

func SnapshotViewportContainsFold(v string) predicate.Event

SnapshotViewportContainsFold applies the ContainsFold predicate on the "snapshot_viewport" field.

func SnapshotViewportEQ

func SnapshotViewportEQ(v string) predicate.Event

SnapshotViewportEQ applies the EQ predicate on the "snapshot_viewport" field.

func SnapshotViewportEqualFold

func SnapshotViewportEqualFold(v string) predicate.Event

SnapshotViewportEqualFold applies the EqualFold predicate on the "snapshot_viewport" field.

func SnapshotViewportGT

func SnapshotViewportGT(v string) predicate.Event

SnapshotViewportGT applies the GT predicate on the "snapshot_viewport" field.

func SnapshotViewportGTE

func SnapshotViewportGTE(v string) predicate.Event

SnapshotViewportGTE applies the GTE predicate on the "snapshot_viewport" field.

func SnapshotViewportHasPrefix

func SnapshotViewportHasPrefix(v string) predicate.Event

SnapshotViewportHasPrefix applies the HasPrefix predicate on the "snapshot_viewport" field.

func SnapshotViewportHasSuffix

func SnapshotViewportHasSuffix(v string) predicate.Event

SnapshotViewportHasSuffix applies the HasSuffix predicate on the "snapshot_viewport" field.

func SnapshotViewportIn

func SnapshotViewportIn(vs ...string) predicate.Event

SnapshotViewportIn applies the In predicate on the "snapshot_viewport" field.

func SnapshotViewportIsNil

func SnapshotViewportIsNil() predicate.Event

SnapshotViewportIsNil applies the IsNil predicate on the "snapshot_viewport" field.

func SnapshotViewportLT

func SnapshotViewportLT(v string) predicate.Event

SnapshotViewportLT applies the LT predicate on the "snapshot_viewport" field.

func SnapshotViewportLTE

func SnapshotViewportLTE(v string) predicate.Event

SnapshotViewportLTE applies the LTE predicate on the "snapshot_viewport" field.

func SnapshotViewportNEQ

func SnapshotViewportNEQ(v string) predicate.Event

SnapshotViewportNEQ applies the NEQ predicate on the "snapshot_viewport" field.

func SnapshotViewportNotIn

func SnapshotViewportNotIn(vs ...string) predicate.Event

SnapshotViewportNotIn applies the NotIn predicate on the "snapshot_viewport" field.

func SnapshotViewportNotNil

func SnapshotViewportNotNil() predicate.Event

SnapshotViewportNotNil applies the NotNil predicate on the "snapshot_viewport" field.

func Timestamp

func Timestamp(v time.Time) predicate.Event

Timestamp applies equality check predicate on the "timestamp" field. It's identical to TimestampEQ.

func TimestampEQ

func TimestampEQ(v time.Time) predicate.Event

TimestampEQ applies the EQ predicate on the "timestamp" field.

func TimestampGT

func TimestampGT(v time.Time) predicate.Event

TimestampGT applies the GT predicate on the "timestamp" field.

func TimestampGTE

func TimestampGTE(v time.Time) predicate.Event

TimestampGTE applies the GTE predicate on the "timestamp" field.

func TimestampIn

func TimestampIn(vs ...time.Time) predicate.Event

TimestampIn applies the In predicate on the "timestamp" field.

func TimestampLT

func TimestampLT(v time.Time) predicate.Event

TimestampLT applies the LT predicate on the "timestamp" field.

func TimestampLTE

func TimestampLTE(v time.Time) predicate.Event

TimestampLTE applies the LTE predicate on the "timestamp" field.

func TimestampNEQ

func TimestampNEQ(v time.Time) predicate.Event

TimestampNEQ applies the NEQ predicate on the "timestamp" field.

func TimestampNotIn

func TimestampNotIn(vs ...time.Time) predicate.Event

TimestampNotIn applies the NotIn predicate on the "timestamp" field.

func UIAction

func UIAction(v string) predicate.Event

UIAction applies equality check predicate on the "ui_action" field. It's identical to UIActionEQ.

func UIActionContains

func UIActionContains(v string) predicate.Event

UIActionContains applies the Contains predicate on the "ui_action" field.

func UIActionContainsFold

func UIActionContainsFold(v string) predicate.Event

UIActionContainsFold applies the ContainsFold predicate on the "ui_action" field.

func UIActionEQ

func UIActionEQ(v string) predicate.Event

UIActionEQ applies the EQ predicate on the "ui_action" field.

func UIActionEqualFold

func UIActionEqualFold(v string) predicate.Event

UIActionEqualFold applies the EqualFold predicate on the "ui_action" field.

func UIActionGT

func UIActionGT(v string) predicate.Event

UIActionGT applies the GT predicate on the "ui_action" field.

func UIActionGTE

func UIActionGTE(v string) predicate.Event

UIActionGTE applies the GTE predicate on the "ui_action" field.

func UIActionHasPrefix

func UIActionHasPrefix(v string) predicate.Event

UIActionHasPrefix applies the HasPrefix predicate on the "ui_action" field.

func UIActionHasSuffix

func UIActionHasSuffix(v string) predicate.Event

UIActionHasSuffix applies the HasSuffix predicate on the "ui_action" field.

func UIActionIn

func UIActionIn(vs ...string) predicate.Event

UIActionIn applies the In predicate on the "ui_action" field.

func UIActionIsNil

func UIActionIsNil() predicate.Event

UIActionIsNil applies the IsNil predicate on the "ui_action" field.

func UIActionLT

func UIActionLT(v string) predicate.Event

UIActionLT applies the LT predicate on the "ui_action" field.

func UIActionLTE

func UIActionLTE(v string) predicate.Event

UIActionLTE applies the LTE predicate on the "ui_action" field.

func UIActionNEQ

func UIActionNEQ(v string) predicate.Event

UIActionNEQ applies the NEQ predicate on the "ui_action" field.

func UIActionNotIn

func UIActionNotIn(vs ...string) predicate.Event

UIActionNotIn applies the NotIn predicate on the "ui_action" field.

func UIActionNotNil

func UIActionNotNil() predicate.Event

UIActionNotNil applies the NotNil predicate on the "ui_action" field.

func UIComponentName

func UIComponentName(v string) predicate.Event

UIComponentName applies equality check predicate on the "ui_component_name" field. It's identical to UIComponentNameEQ.

func UIComponentNameContains

func UIComponentNameContains(v string) predicate.Event

UIComponentNameContains applies the Contains predicate on the "ui_component_name" field.

func UIComponentNameContainsFold

func UIComponentNameContainsFold(v string) predicate.Event

UIComponentNameContainsFold applies the ContainsFold predicate on the "ui_component_name" field.

func UIComponentNameEQ

func UIComponentNameEQ(v string) predicate.Event

UIComponentNameEQ applies the EQ predicate on the "ui_component_name" field.

func UIComponentNameEqualFold

func UIComponentNameEqualFold(v string) predicate.Event

UIComponentNameEqualFold applies the EqualFold predicate on the "ui_component_name" field.

func UIComponentNameGT

func UIComponentNameGT(v string) predicate.Event

UIComponentNameGT applies the GT predicate on the "ui_component_name" field.

func UIComponentNameGTE

func UIComponentNameGTE(v string) predicate.Event

UIComponentNameGTE applies the GTE predicate on the "ui_component_name" field.

func UIComponentNameHasPrefix

func UIComponentNameHasPrefix(v string) predicate.Event

UIComponentNameHasPrefix applies the HasPrefix predicate on the "ui_component_name" field.

func UIComponentNameHasSuffix

func UIComponentNameHasSuffix(v string) predicate.Event

UIComponentNameHasSuffix applies the HasSuffix predicate on the "ui_component_name" field.

func UIComponentNameIn

func UIComponentNameIn(vs ...string) predicate.Event

UIComponentNameIn applies the In predicate on the "ui_component_name" field.

func UIComponentNameIsNil

func UIComponentNameIsNil() predicate.Event

UIComponentNameIsNil applies the IsNil predicate on the "ui_component_name" field.

func UIComponentNameLT

func UIComponentNameLT(v string) predicate.Event

UIComponentNameLT applies the LT predicate on the "ui_component_name" field.

func UIComponentNameLTE

func UIComponentNameLTE(v string) predicate.Event

UIComponentNameLTE applies the LTE predicate on the "ui_component_name" field.

func UIComponentNameNEQ

func UIComponentNameNEQ(v string) predicate.Event

UIComponentNameNEQ applies the NEQ predicate on the "ui_component_name" field.

func UIComponentNameNotIn

func UIComponentNameNotIn(vs ...string) predicate.Event

UIComponentNameNotIn applies the NotIn predicate on the "ui_component_name" field.

func UIComponentNameNotNil

func UIComponentNameNotNil() predicate.Event

UIComponentNameNotNil applies the NotNil predicate on the "ui_component_name" field.

func UIComponentPath

func UIComponentPath(v string) predicate.Event

UIComponentPath applies equality check predicate on the "ui_component_path" field. It's identical to UIComponentPathEQ.

func UIComponentPathContains

func UIComponentPathContains(v string) predicate.Event

UIComponentPathContains applies the Contains predicate on the "ui_component_path" field.

func UIComponentPathContainsFold

func UIComponentPathContainsFold(v string) predicate.Event

UIComponentPathContainsFold applies the ContainsFold predicate on the "ui_component_path" field.

func UIComponentPathEQ

func UIComponentPathEQ(v string) predicate.Event

UIComponentPathEQ applies the EQ predicate on the "ui_component_path" field.

func UIComponentPathEqualFold

func UIComponentPathEqualFold(v string) predicate.Event

UIComponentPathEqualFold applies the EqualFold predicate on the "ui_component_path" field.

func UIComponentPathGT

func UIComponentPathGT(v string) predicate.Event

UIComponentPathGT applies the GT predicate on the "ui_component_path" field.

func UIComponentPathGTE

func UIComponentPathGTE(v string) predicate.Event

UIComponentPathGTE applies the GTE predicate on the "ui_component_path" field.

func UIComponentPathHasPrefix

func UIComponentPathHasPrefix(v string) predicate.Event

UIComponentPathHasPrefix applies the HasPrefix predicate on the "ui_component_path" field.

func UIComponentPathHasSuffix

func UIComponentPathHasSuffix(v string) predicate.Event

UIComponentPathHasSuffix applies the HasSuffix predicate on the "ui_component_path" field.

func UIComponentPathIn

func UIComponentPathIn(vs ...string) predicate.Event

UIComponentPathIn applies the In predicate on the "ui_component_path" field.

func UIComponentPathIsNil

func UIComponentPathIsNil() predicate.Event

UIComponentPathIsNil applies the IsNil predicate on the "ui_component_path" field.

func UIComponentPathLT

func UIComponentPathLT(v string) predicate.Event

UIComponentPathLT applies the LT predicate on the "ui_component_path" field.

func UIComponentPathLTE

func UIComponentPathLTE(v string) predicate.Event

UIComponentPathLTE applies the LTE predicate on the "ui_component_path" field.

func UIComponentPathNEQ

func UIComponentPathNEQ(v string) predicate.Event

UIComponentPathNEQ applies the NEQ predicate on the "ui_component_path" field.

func UIComponentPathNotIn

func UIComponentPathNotIn(vs ...string) predicate.Event

UIComponentPathNotIn applies the NotIn predicate on the "ui_component_path" field.

func UIComponentPathNotNil

func UIComponentPathNotNil() predicate.Event

UIComponentPathNotNil applies the NotNil predicate on the "ui_component_path" field.

func UIComponentType

func UIComponentType(v string) predicate.Event

UIComponentType applies equality check predicate on the "ui_component_type" field. It's identical to UIComponentTypeEQ.

func UIComponentTypeContains

func UIComponentTypeContains(v string) predicate.Event

UIComponentTypeContains applies the Contains predicate on the "ui_component_type" field.

func UIComponentTypeContainsFold

func UIComponentTypeContainsFold(v string) predicate.Event

UIComponentTypeContainsFold applies the ContainsFold predicate on the "ui_component_type" field.

func UIComponentTypeEQ

func UIComponentTypeEQ(v string) predicate.Event

UIComponentTypeEQ applies the EQ predicate on the "ui_component_type" field.

func UIComponentTypeEqualFold

func UIComponentTypeEqualFold(v string) predicate.Event

UIComponentTypeEqualFold applies the EqualFold predicate on the "ui_component_type" field.

func UIComponentTypeGT

func UIComponentTypeGT(v string) predicate.Event

UIComponentTypeGT applies the GT predicate on the "ui_component_type" field.

func UIComponentTypeGTE

func UIComponentTypeGTE(v string) predicate.Event

UIComponentTypeGTE applies the GTE predicate on the "ui_component_type" field.

func UIComponentTypeHasPrefix

func UIComponentTypeHasPrefix(v string) predicate.Event

UIComponentTypeHasPrefix applies the HasPrefix predicate on the "ui_component_type" field.

func UIComponentTypeHasSuffix

func UIComponentTypeHasSuffix(v string) predicate.Event

UIComponentTypeHasSuffix applies the HasSuffix predicate on the "ui_component_type" field.

func UIComponentTypeIn

func UIComponentTypeIn(vs ...string) predicate.Event

UIComponentTypeIn applies the In predicate on the "ui_component_type" field.

func UIComponentTypeIsNil

func UIComponentTypeIsNil() predicate.Event

UIComponentTypeIsNil applies the IsNil predicate on the "ui_component_type" field.

func UIComponentTypeLT

func UIComponentTypeLT(v string) predicate.Event

UIComponentTypeLT applies the LT predicate on the "ui_component_type" field.

func UIComponentTypeLTE

func UIComponentTypeLTE(v string) predicate.Event

UIComponentTypeLTE applies the LTE predicate on the "ui_component_type" field.

func UIComponentTypeNEQ

func UIComponentTypeNEQ(v string) predicate.Event

UIComponentTypeNEQ applies the NEQ predicate on the "ui_component_type" field.

func UIComponentTypeNotIn

func UIComponentTypeNotIn(vs ...string) predicate.Event

UIComponentTypeNotIn applies the NotIn predicate on the "ui_component_type" field.

func UIComponentTypeNotNil

func UIComponentTypeNotNil() predicate.Event

UIComponentTypeNotNil applies the NotNil predicate on the "ui_component_type" field.

func UIElement

func UIElement(v string) predicate.Event

UIElement applies equality check predicate on the "ui_element" field. It's identical to UIElementEQ.

func UIElementContains

func UIElementContains(v string) predicate.Event

UIElementContains applies the Contains predicate on the "ui_element" field.

func UIElementContainsFold

func UIElementContainsFold(v string) predicate.Event

UIElementContainsFold applies the ContainsFold predicate on the "ui_element" field.

func UIElementEQ

func UIElementEQ(v string) predicate.Event

UIElementEQ applies the EQ predicate on the "ui_element" field.

func UIElementEqualFold

func UIElementEqualFold(v string) predicate.Event

UIElementEqualFold applies the EqualFold predicate on the "ui_element" field.

func UIElementGT

func UIElementGT(v string) predicate.Event

UIElementGT applies the GT predicate on the "ui_element" field.

func UIElementGTE

func UIElementGTE(v string) predicate.Event

UIElementGTE applies the GTE predicate on the "ui_element" field.

func UIElementHasPrefix

func UIElementHasPrefix(v string) predicate.Event

UIElementHasPrefix applies the HasPrefix predicate on the "ui_element" field.

func UIElementHasSuffix

func UIElementHasSuffix(v string) predicate.Event

UIElementHasSuffix applies the HasSuffix predicate on the "ui_element" field.

func UIElementIn

func UIElementIn(vs ...string) predicate.Event

UIElementIn applies the In predicate on the "ui_element" field.

func UIElementIsNil

func UIElementIsNil() predicate.Event

UIElementIsNil applies the IsNil predicate on the "ui_element" field.

func UIElementLT

func UIElementLT(v string) predicate.Event

UIElementLT applies the LT predicate on the "ui_element" field.

func UIElementLTE

func UIElementLTE(v string) predicate.Event

UIElementLTE applies the LTE predicate on the "ui_element" field.

func UIElementNEQ

func UIElementNEQ(v string) predicate.Event

UIElementNEQ applies the NEQ predicate on the "ui_element" field.

func UIElementNotIn

func UIElementNotIn(vs ...string) predicate.Event

UIElementNotIn applies the NotIn predicate on the "ui_element" field.

func UIElementNotNil

func UIElementNotNil() predicate.Event

UIElementNotNil applies the NotNil predicate on the "ui_element" field.

func UIElementText

func UIElementText(v string) predicate.Event

UIElementText applies equality check predicate on the "ui_element_text" field. It's identical to UIElementTextEQ.

func UIElementTextContains

func UIElementTextContains(v string) predicate.Event

UIElementTextContains applies the Contains predicate on the "ui_element_text" field.

func UIElementTextContainsFold

func UIElementTextContainsFold(v string) predicate.Event

UIElementTextContainsFold applies the ContainsFold predicate on the "ui_element_text" field.

func UIElementTextEQ

func UIElementTextEQ(v string) predicate.Event

UIElementTextEQ applies the EQ predicate on the "ui_element_text" field.

func UIElementTextEqualFold

func UIElementTextEqualFold(v string) predicate.Event

UIElementTextEqualFold applies the EqualFold predicate on the "ui_element_text" field.

func UIElementTextGT

func UIElementTextGT(v string) predicate.Event

UIElementTextGT applies the GT predicate on the "ui_element_text" field.

func UIElementTextGTE

func UIElementTextGTE(v string) predicate.Event

UIElementTextGTE applies the GTE predicate on the "ui_element_text" field.

func UIElementTextHasPrefix

func UIElementTextHasPrefix(v string) predicate.Event

UIElementTextHasPrefix applies the HasPrefix predicate on the "ui_element_text" field.

func UIElementTextHasSuffix

func UIElementTextHasSuffix(v string) predicate.Event

UIElementTextHasSuffix applies the HasSuffix predicate on the "ui_element_text" field.

func UIElementTextIn

func UIElementTextIn(vs ...string) predicate.Event

UIElementTextIn applies the In predicate on the "ui_element_text" field.

func UIElementTextIsNil

func UIElementTextIsNil() predicate.Event

UIElementTextIsNil applies the IsNil predicate on the "ui_element_text" field.

func UIElementTextLT

func UIElementTextLT(v string) predicate.Event

UIElementTextLT applies the LT predicate on the "ui_element_text" field.

func UIElementTextLTE

func UIElementTextLTE(v string) predicate.Event

UIElementTextLTE applies the LTE predicate on the "ui_element_text" field.

func UIElementTextNEQ

func UIElementTextNEQ(v string) predicate.Event

UIElementTextNEQ applies the NEQ predicate on the "ui_element_text" field.

func UIElementTextNotIn

func UIElementTextNotIn(vs ...string) predicate.Event

UIElementTextNotIn applies the NotIn predicate on the "ui_element_text" field.

func UIElementTextNotNil

func UIElementTextNotNil() predicate.Event

UIElementTextNotNil applies the NotNil predicate on the "ui_element_text" field.

func UIScrollPosition

func UIScrollPosition(v float64) predicate.Event

UIScrollPosition applies equality check predicate on the "ui_scroll_position" field. It's identical to UIScrollPositionEQ.

func UIScrollPositionEQ

func UIScrollPositionEQ(v float64) predicate.Event

UIScrollPositionEQ applies the EQ predicate on the "ui_scroll_position" field.

func UIScrollPositionGT

func UIScrollPositionGT(v float64) predicate.Event

UIScrollPositionGT applies the GT predicate on the "ui_scroll_position" field.

func UIScrollPositionGTE

func UIScrollPositionGTE(v float64) predicate.Event

UIScrollPositionGTE applies the GTE predicate on the "ui_scroll_position" field.

func UIScrollPositionIn

func UIScrollPositionIn(vs ...float64) predicate.Event

UIScrollPositionIn applies the In predicate on the "ui_scroll_position" field.

func UIScrollPositionIsNil

func UIScrollPositionIsNil() predicate.Event

UIScrollPositionIsNil applies the IsNil predicate on the "ui_scroll_position" field.

func UIScrollPositionLT

func UIScrollPositionLT(v float64) predicate.Event

UIScrollPositionLT applies the LT predicate on the "ui_scroll_position" field.

func UIScrollPositionLTE

func UIScrollPositionLTE(v float64) predicate.Event

UIScrollPositionLTE applies the LTE predicate on the "ui_scroll_position" field.

func UIScrollPositionNEQ

func UIScrollPositionNEQ(v float64) predicate.Event

UIScrollPositionNEQ applies the NEQ predicate on the "ui_scroll_position" field.

func UIScrollPositionNotIn

func UIScrollPositionNotIn(vs ...float64) predicate.Event

UIScrollPositionNotIn applies the NotIn predicate on the "ui_scroll_position" field.

func UIScrollPositionNotNil

func UIScrollPositionNotNil() predicate.Event

UIScrollPositionNotNil applies the NotNil predicate on the "ui_scroll_position" field.

func UIStateAfter

func UIStateAfter(v string) predicate.Event

UIStateAfter applies equality check predicate on the "ui_state_after" field. It's identical to UIStateAfterEQ.

func UIStateAfterContains

func UIStateAfterContains(v string) predicate.Event

UIStateAfterContains applies the Contains predicate on the "ui_state_after" field.

func UIStateAfterContainsFold

func UIStateAfterContainsFold(v string) predicate.Event

UIStateAfterContainsFold applies the ContainsFold predicate on the "ui_state_after" field.

func UIStateAfterEQ

func UIStateAfterEQ(v string) predicate.Event

UIStateAfterEQ applies the EQ predicate on the "ui_state_after" field.

func UIStateAfterEqualFold

func UIStateAfterEqualFold(v string) predicate.Event

UIStateAfterEqualFold applies the EqualFold predicate on the "ui_state_after" field.

func UIStateAfterGT

func UIStateAfterGT(v string) predicate.Event

UIStateAfterGT applies the GT predicate on the "ui_state_after" field.

func UIStateAfterGTE

func UIStateAfterGTE(v string) predicate.Event

UIStateAfterGTE applies the GTE predicate on the "ui_state_after" field.

func UIStateAfterHasPrefix

func UIStateAfterHasPrefix(v string) predicate.Event

UIStateAfterHasPrefix applies the HasPrefix predicate on the "ui_state_after" field.

func UIStateAfterHasSuffix

func UIStateAfterHasSuffix(v string) predicate.Event

UIStateAfterHasSuffix applies the HasSuffix predicate on the "ui_state_after" field.

func UIStateAfterIn

func UIStateAfterIn(vs ...string) predicate.Event

UIStateAfterIn applies the In predicate on the "ui_state_after" field.

func UIStateAfterIsNil

func UIStateAfterIsNil() predicate.Event

UIStateAfterIsNil applies the IsNil predicate on the "ui_state_after" field.

func UIStateAfterLT

func UIStateAfterLT(v string) predicate.Event

UIStateAfterLT applies the LT predicate on the "ui_state_after" field.

func UIStateAfterLTE

func UIStateAfterLTE(v string) predicate.Event

UIStateAfterLTE applies the LTE predicate on the "ui_state_after" field.

func UIStateAfterNEQ

func UIStateAfterNEQ(v string) predicate.Event

UIStateAfterNEQ applies the NEQ predicate on the "ui_state_after" field.

func UIStateAfterNotIn

func UIStateAfterNotIn(vs ...string) predicate.Event

UIStateAfterNotIn applies the NotIn predicate on the "ui_state_after" field.

func UIStateAfterNotNil

func UIStateAfterNotNil() predicate.Event

UIStateAfterNotNil applies the NotNil predicate on the "ui_state_after" field.

func UIStateBefore

func UIStateBefore(v string) predicate.Event

UIStateBefore applies equality check predicate on the "ui_state_before" field. It's identical to UIStateBeforeEQ.

func UIStateBeforeContains

func UIStateBeforeContains(v string) predicate.Event

UIStateBeforeContains applies the Contains predicate on the "ui_state_before" field.

func UIStateBeforeContainsFold

func UIStateBeforeContainsFold(v string) predicate.Event

UIStateBeforeContainsFold applies the ContainsFold predicate on the "ui_state_before" field.

func UIStateBeforeEQ

func UIStateBeforeEQ(v string) predicate.Event

UIStateBeforeEQ applies the EQ predicate on the "ui_state_before" field.

func UIStateBeforeEqualFold

func UIStateBeforeEqualFold(v string) predicate.Event

UIStateBeforeEqualFold applies the EqualFold predicate on the "ui_state_before" field.

func UIStateBeforeGT

func UIStateBeforeGT(v string) predicate.Event

UIStateBeforeGT applies the GT predicate on the "ui_state_before" field.

func UIStateBeforeGTE

func UIStateBeforeGTE(v string) predicate.Event

UIStateBeforeGTE applies the GTE predicate on the "ui_state_before" field.

func UIStateBeforeHasPrefix

func UIStateBeforeHasPrefix(v string) predicate.Event

UIStateBeforeHasPrefix applies the HasPrefix predicate on the "ui_state_before" field.

func UIStateBeforeHasSuffix

func UIStateBeforeHasSuffix(v string) predicate.Event

UIStateBeforeHasSuffix applies the HasSuffix predicate on the "ui_state_before" field.

func UIStateBeforeIn

func UIStateBeforeIn(vs ...string) predicate.Event

UIStateBeforeIn applies the In predicate on the "ui_state_before" field.

func UIStateBeforeIsNil

func UIStateBeforeIsNil() predicate.Event

UIStateBeforeIsNil applies the IsNil predicate on the "ui_state_before" field.

func UIStateBeforeLT

func UIStateBeforeLT(v string) predicate.Event

UIStateBeforeLT applies the LT predicate on the "ui_state_before" field.

func UIStateBeforeLTE

func UIStateBeforeLTE(v string) predicate.Event

UIStateBeforeLTE applies the LTE predicate on the "ui_state_before" field.

func UIStateBeforeNEQ

func UIStateBeforeNEQ(v string) predicate.Event

UIStateBeforeNEQ applies the NEQ predicate on the "ui_state_before" field.

func UIStateBeforeNotIn

func UIStateBeforeNotIn(vs ...string) predicate.Event

UIStateBeforeNotIn applies the NotIn predicate on the "ui_state_before" field.

func UIStateBeforeNotNil

func UIStateBeforeNotNil() predicate.Event

UIStateBeforeNotNil applies the NotNil predicate on the "ui_state_before" field.

func UIStateChangeType

func UIStateChangeType(v string) predicate.Event

UIStateChangeType applies equality check predicate on the "ui_state_change_type" field. It's identical to UIStateChangeTypeEQ.

func UIStateChangeTypeContains

func UIStateChangeTypeContains(v string) predicate.Event

UIStateChangeTypeContains applies the Contains predicate on the "ui_state_change_type" field.

func UIStateChangeTypeContainsFold

func UIStateChangeTypeContainsFold(v string) predicate.Event

UIStateChangeTypeContainsFold applies the ContainsFold predicate on the "ui_state_change_type" field.

func UIStateChangeTypeEQ

func UIStateChangeTypeEQ(v string) predicate.Event

UIStateChangeTypeEQ applies the EQ predicate on the "ui_state_change_type" field.

func UIStateChangeTypeEqualFold

func UIStateChangeTypeEqualFold(v string) predicate.Event

UIStateChangeTypeEqualFold applies the EqualFold predicate on the "ui_state_change_type" field.

func UIStateChangeTypeGT

func UIStateChangeTypeGT(v string) predicate.Event

UIStateChangeTypeGT applies the GT predicate on the "ui_state_change_type" field.

func UIStateChangeTypeGTE

func UIStateChangeTypeGTE(v string) predicate.Event

UIStateChangeTypeGTE applies the GTE predicate on the "ui_state_change_type" field.

func UIStateChangeTypeHasPrefix

func UIStateChangeTypeHasPrefix(v string) predicate.Event

UIStateChangeTypeHasPrefix applies the HasPrefix predicate on the "ui_state_change_type" field.

func UIStateChangeTypeHasSuffix

func UIStateChangeTypeHasSuffix(v string) predicate.Event

UIStateChangeTypeHasSuffix applies the HasSuffix predicate on the "ui_state_change_type" field.

func UIStateChangeTypeIn

func UIStateChangeTypeIn(vs ...string) predicate.Event

UIStateChangeTypeIn applies the In predicate on the "ui_state_change_type" field.

func UIStateChangeTypeIsNil

func UIStateChangeTypeIsNil() predicate.Event

UIStateChangeTypeIsNil applies the IsNil predicate on the "ui_state_change_type" field.

func UIStateChangeTypeLT

func UIStateChangeTypeLT(v string) predicate.Event

UIStateChangeTypeLT applies the LT predicate on the "ui_state_change_type" field.

func UIStateChangeTypeLTE

func UIStateChangeTypeLTE(v string) predicate.Event

UIStateChangeTypeLTE applies the LTE predicate on the "ui_state_change_type" field.

func UIStateChangeTypeNEQ

func UIStateChangeTypeNEQ(v string) predicate.Event

UIStateChangeTypeNEQ applies the NEQ predicate on the "ui_state_change_type" field.

func UIStateChangeTypeNotIn

func UIStateChangeTypeNotIn(vs ...string) predicate.Event

UIStateChangeTypeNotIn applies the NotIn predicate on the "ui_state_change_type" field.

func UIStateChangeTypeNotNil

func UIStateChangeTypeNotNil() predicate.Event

UIStateChangeTypeNotNil applies the NotNil predicate on the "ui_state_change_type" field.

func UIStateKey

func UIStateKey(v string) predicate.Event

UIStateKey applies equality check predicate on the "ui_state_key" field. It's identical to UIStateKeyEQ.

func UIStateKeyContains

func UIStateKeyContains(v string) predicate.Event

UIStateKeyContains applies the Contains predicate on the "ui_state_key" field.

func UIStateKeyContainsFold

func UIStateKeyContainsFold(v string) predicate.Event

UIStateKeyContainsFold applies the ContainsFold predicate on the "ui_state_key" field.

func UIStateKeyEQ

func UIStateKeyEQ(v string) predicate.Event

UIStateKeyEQ applies the EQ predicate on the "ui_state_key" field.

func UIStateKeyEqualFold

func UIStateKeyEqualFold(v string) predicate.Event

UIStateKeyEqualFold applies the EqualFold predicate on the "ui_state_key" field.

func UIStateKeyGT

func UIStateKeyGT(v string) predicate.Event

UIStateKeyGT applies the GT predicate on the "ui_state_key" field.

func UIStateKeyGTE

func UIStateKeyGTE(v string) predicate.Event

UIStateKeyGTE applies the GTE predicate on the "ui_state_key" field.

func UIStateKeyHasPrefix

func UIStateKeyHasPrefix(v string) predicate.Event

UIStateKeyHasPrefix applies the HasPrefix predicate on the "ui_state_key" field.

func UIStateKeyHasSuffix

func UIStateKeyHasSuffix(v string) predicate.Event

UIStateKeyHasSuffix applies the HasSuffix predicate on the "ui_state_key" field.

func UIStateKeyIn

func UIStateKeyIn(vs ...string) predicate.Event

UIStateKeyIn applies the In predicate on the "ui_state_key" field.

func UIStateKeyIsNil

func UIStateKeyIsNil() predicate.Event

UIStateKeyIsNil applies the IsNil predicate on the "ui_state_key" field.

func UIStateKeyLT

func UIStateKeyLT(v string) predicate.Event

UIStateKeyLT applies the LT predicate on the "ui_state_key" field.

func UIStateKeyLTE

func UIStateKeyLTE(v string) predicate.Event

UIStateKeyLTE applies the LTE predicate on the "ui_state_key" field.

func UIStateKeyNEQ

func UIStateKeyNEQ(v string) predicate.Event

UIStateKeyNEQ applies the NEQ predicate on the "ui_state_key" field.

func UIStateKeyNotIn

func UIStateKeyNotIn(vs ...string) predicate.Event

UIStateKeyNotIn applies the NotIn predicate on the "ui_state_key" field.

func UIStateKeyNotNil

func UIStateKeyNotNil() predicate.Event

UIStateKeyNotNil applies the NotNil predicate on the "ui_state_key" field.

func UIViewport

func UIViewport(v string) predicate.Event

UIViewport applies equality check predicate on the "ui_viewport" field. It's identical to UIViewportEQ.

func UIViewportContains

func UIViewportContains(v string) predicate.Event

UIViewportContains applies the Contains predicate on the "ui_viewport" field.

func UIViewportContainsFold

func UIViewportContainsFold(v string) predicate.Event

UIViewportContainsFold applies the ContainsFold predicate on the "ui_viewport" field.

func UIViewportEQ

func UIViewportEQ(v string) predicate.Event

UIViewportEQ applies the EQ predicate on the "ui_viewport" field.

func UIViewportEqualFold

func UIViewportEqualFold(v string) predicate.Event

UIViewportEqualFold applies the EqualFold predicate on the "ui_viewport" field.

func UIViewportGT

func UIViewportGT(v string) predicate.Event

UIViewportGT applies the GT predicate on the "ui_viewport" field.

func UIViewportGTE

func UIViewportGTE(v string) predicate.Event

UIViewportGTE applies the GTE predicate on the "ui_viewport" field.

func UIViewportHasPrefix

func UIViewportHasPrefix(v string) predicate.Event

UIViewportHasPrefix applies the HasPrefix predicate on the "ui_viewport" field.

func UIViewportHasSuffix

func UIViewportHasSuffix(v string) predicate.Event

UIViewportHasSuffix applies the HasSuffix predicate on the "ui_viewport" field.

func UIViewportIn

func UIViewportIn(vs ...string) predicate.Event

UIViewportIn applies the In predicate on the "ui_viewport" field.

func UIViewportIsNil

func UIViewportIsNil() predicate.Event

UIViewportIsNil applies the IsNil predicate on the "ui_viewport" field.

func UIViewportLT

func UIViewportLT(v string) predicate.Event

UIViewportLT applies the LT predicate on the "ui_viewport" field.

func UIViewportLTE

func UIViewportLTE(v string) predicate.Event

UIViewportLTE applies the LTE predicate on the "ui_viewport" field.

func UIViewportNEQ

func UIViewportNEQ(v string) predicate.Event

UIViewportNEQ applies the NEQ predicate on the "ui_viewport" field.

func UIViewportNotIn

func UIViewportNotIn(vs ...string) predicate.Event

UIViewportNotIn applies the NotIn predicate on the "ui_viewport" field.

func UIViewportNotNil

func UIViewportNotNil() predicate.Event

UIViewportNotNil applies the NotNil predicate on the "ui_viewport" field.

func UserID

func UserID(v string) predicate.Event

UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.

func UserIDContains

func UserIDContains(v string) predicate.Event

UserIDContains applies the Contains predicate on the "user_id" field.

func UserIDContainsFold

func UserIDContainsFold(v string) predicate.Event

UserIDContainsFold applies the ContainsFold predicate on the "user_id" field.

func UserIDEQ

func UserIDEQ(v string) predicate.Event

UserIDEQ applies the EQ predicate on the "user_id" field.

func UserIDEqualFold

func UserIDEqualFold(v string) predicate.Event

UserIDEqualFold applies the EqualFold predicate on the "user_id" field.

func UserIDGT

func UserIDGT(v string) predicate.Event

UserIDGT applies the GT predicate on the "user_id" field.

func UserIDGTE

func UserIDGTE(v string) predicate.Event

UserIDGTE applies the GTE predicate on the "user_id" field.

func UserIDHasPrefix

func UserIDHasPrefix(v string) predicate.Event

UserIDHasPrefix applies the HasPrefix predicate on the "user_id" field.

func UserIDHasSuffix

func UserIDHasSuffix(v string) predicate.Event

UserIDHasSuffix applies the HasSuffix predicate on the "user_id" field.

func UserIDIn

func UserIDIn(vs ...string) predicate.Event

UserIDIn applies the In predicate on the "user_id" field.

func UserIDIsNil

func UserIDIsNil() predicate.Event

UserIDIsNil applies the IsNil predicate on the "user_id" field.

func UserIDLT

func UserIDLT(v string) predicate.Event

UserIDLT applies the LT predicate on the "user_id" field.

func UserIDLTE

func UserIDLTE(v string) predicate.Event

UserIDLTE applies the LTE predicate on the "user_id" field.

func UserIDNEQ

func UserIDNEQ(v string) predicate.Event

UserIDNEQ applies the NEQ predicate on the "user_id" field.

func UserIDNotIn

func UserIDNotIn(vs ...string) predicate.Event

UserIDNotIn applies the NotIn predicate on the "user_id" field.

func UserIDNotNil

func UserIDNotNil() predicate.Event

UserIDNotNil applies the NotNil predicate on the "user_id" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

type EventType

type EventType string

EventType defines the type for the "event_type" enum field.

const (
	EventTypePageView    EventType = "page_view"
	EventTypePageLeave   EventType = "page_leave"
	EventTypeUIClick     EventType = "ui_click"
	EventTypeUIInput     EventType = "ui_input"
	EventTypeUIScroll    EventType = "ui_scroll"
	EventTypeUIFocus     EventType = "ui_focus"
	EventTypeUIBlur      EventType = "ui_blur"
	EventTypeUISubmit    EventType = "ui_submit"
	EventTypeStateChange EventType = "state_change"
	EventTypeAPIRequest  EventType = "api_request"
	EventTypeAPIResponse EventType = "api_response"
	EventTypeJourneyStep EventType = "journey_step"
	EventTypeError       EventType = "error"
	EventTypePerformance EventType = "performance"
	EventTypeCustom      EventType = "custom"
)

EventType values.

func (EventType) String

func (et EventType) String() string

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the Event queries.

func ByAPIDurationMs

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

ByAPIDurationMs orders the results by the api_duration_ms field.

func ByAPIMethod

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

ByAPIMethod orders the results by the api_method field.

func ByAPIPath

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

ByAPIPath orders the results by the api_path field.

func ByAPIStatusCode

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

ByAPIStatusCode orders the results by the api_status_code field.

func ByConversionStatus

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

ByConversionStatus orders the results by the conversion_status field.

func ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDurationMs

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

ByDurationMs orders the results by the duration_ms field.

func ByErrorComponent

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

ByErrorComponent orders the results by the error_component field.

func ByErrorMessage

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

ByErrorMessage orders the results by the error_message field.

func ByErrorStack

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

ByErrorStack orders the results by the error_stack field.

func ByErrorType

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

ByErrorType orders the results by the error_type field.

func ByEventID

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

ByEventID orders the results by the event_id field.

func ByEventName

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

ByEventName orders the results by the event_name field.

func ByEventType

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

ByEventType orders the results by the event_type field.

func ByID

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

ByID orders the results by the id field.

func ByJourneyField

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

ByJourneyField orders the results by journey field.

func ByJourneyID

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

ByJourneyID orders the results by the journey_id field.

func ByJourneyStepID

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

ByJourneyStepID orders the results by the journey_step_id field.

func ByJourneyStepName

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

ByJourneyStepName orders the results by the journey_step_name field.

func ByOrgID

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

ByOrgID orders the results by the org_id field.

func ByPagePath

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

ByPagePath orders the results by the page_path field.

func ByPageReferrer

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

ByPageReferrer orders the results by the page_referrer field.

func ByPageTitle

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

ByPageTitle orders the results by the page_title field.

func ByPageURL

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

ByPageURL orders the results by the page_url field.

func ByPerformanceCls

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

ByPerformanceCls orders the results by the performance_cls field.

func ByPerformanceFidMs

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

ByPerformanceFidMs orders the results by the performance_fid_ms field.

func ByPerformanceLcpMs

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

ByPerformanceLcpMs orders the results by the performance_lcp_ms field.

func ByPerformanceTtfbMs

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

ByPerformanceTtfbMs orders the results by the performance_ttfb_ms field.

func ByProjectField

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

ByProjectField orders the results by project field.

func ByProjectID

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

ByProjectID orders the results by the project_id field.

func BySequence

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

BySequence orders the results by the sequence field.

func BySessionID

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

BySessionID orders the results by the session_id field.

func BySnapshotURL

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

BySnapshotURL orders the results by the snapshot_url field.

func BySnapshotViewport

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

BySnapshotViewport orders the results by the snapshot_viewport field.

func ByTimestamp

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

ByTimestamp orders the results by the timestamp field.

func ByUIAction

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

ByUIAction orders the results by the ui_action field.

func ByUIComponentName

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

ByUIComponentName orders the results by the ui_component_name field.

func ByUIComponentPath

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

ByUIComponentPath orders the results by the ui_component_path field.

func ByUIComponentType

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

ByUIComponentType orders the results by the ui_component_type field.

func ByUIElement

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

ByUIElement orders the results by the ui_element field.

func ByUIElementText

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

ByUIElementText orders the results by the ui_element_text field.

func ByUIScrollPosition

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

ByUIScrollPosition orders the results by the ui_scroll_position field.

func ByUIStateAfter

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

ByUIStateAfter orders the results by the ui_state_after field.

func ByUIStateBefore

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

ByUIStateBefore orders the results by the ui_state_before field.

func ByUIStateChangeType

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

ByUIStateChangeType orders the results by the ui_state_change_type field.

func ByUIStateKey

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

ByUIStateKey orders the results by the ui_state_key field.

func ByUIViewport

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

ByUIViewport orders the results by the ui_viewport field.

func ByUserID

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

ByUserID orders the results by the user_id field.

Jump to

Keyboard shortcuts

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