Documentation ¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.Event) predicate.Event
- func Channel(v string) predicate.Event
- func ChannelContains(v string) predicate.Event
- func ChannelContainsFold(v string) predicate.Event
- func ChannelEQ(v string) predicate.Event
- func ChannelEqualFold(v string) predicate.Event
- func ChannelGT(v string) predicate.Event
- func ChannelGTE(v string) predicate.Event
- func ChannelHasPrefix(v string) predicate.Event
- func ChannelHasSuffix(v string) predicate.Event
- func ChannelIn(vs ...string) predicate.Event
- func ChannelIsNil() predicate.Event
- func ChannelLT(v string) predicate.Event
- func ChannelLTE(v string) predicate.Event
- func ChannelNEQ(v string) predicate.Event
- func ChannelNotIn(vs ...string) predicate.Event
- func ChannelNotNil() predicate.Event
- func EventEQ(v Event) predicate.Event
- func EventIn(vs ...Event) predicate.Event
- func EventNEQ(v Event) predicate.Event
- func EventNotIn(vs ...Event) predicate.Event
- func EventValidator(e Event) error
- func HasAction() predicate.Event
- func HasActionWith(preds ...predicate.Action) predicate.Event
- func HasAlias() predicate.Event
- func HasAliasWith(preds ...predicate.Alias) predicate.Event
- func HasApp() predicate.Event
- func HasAppWith(preds ...predicate.App) predicate.Event
- func HasBrowser() predicate.Event
- func HasBrowserWith(preds ...predicate.Browser) predicate.Event
- func HasCampaign() predicate.Event
- func HasCampaignWith(preds ...predicate.Campaign) predicate.Event
- func HasConnectivity() predicate.Event
- func HasConnectivityWith(preds ...predicate.Connectivity) predicate.Event
- func HasDevice() predicate.Event
- func HasDeviceWith(preds ...predicate.Device) predicate.Event
- func HasExtra() predicate.Event
- func HasExtraWith(preds ...predicate.Extra) predicate.Event
- func HasGroup() predicate.Event
- func HasGroupWith(preds ...predicate.Group) predicate.Event
- func HasLibrary() predicate.Event
- func HasLibraryWith(preds ...predicate.Library) predicate.Event
- func HasLocation() predicate.Event
- func HasLocationWith(preds ...predicate.Location) predicate.Event
- func HasNetwork() predicate.Event
- func HasNetworkWith(preds ...predicate.Network) predicate.Event
- func HasOs() predicate.Event
- func HasOsWith(preds ...predicate.OSContext) predicate.Event
- func HasPage() predicate.Event
- func HasPageWith(preds ...predicate.Page) predicate.Event
- func HasReferrer() predicate.Event
- func HasReferrerWith(preds ...predicate.Referrer) predicate.Event
- func HasScreen() predicate.Event
- func HasScreenWith(preds ...predicate.Screen) predicate.Event
- func HasSession() predicate.Event
- func HasSessionWith(preds ...predicate.Session) predicate.Event
- func HasTiming() predicate.Event
- func HasTimingWith(preds ...predicate.Timing) predicate.Event
- func HasUser() predicate.Event
- func HasUserWith(preds ...predicate.User) predicate.Event
- func HasViewport() predicate.Event
- func HasViewportWith(preds ...predicate.Viewport) predicate.Event
- func ID(id uuid.UUID) predicate.Event
- func IDEQ(id uuid.UUID) predicate.Event
- func IDGT(id uuid.UUID) predicate.Event
- func IDGTE(id uuid.UUID) predicate.Event
- func IDIn(ids ...uuid.UUID) predicate.Event
- func IDLT(id uuid.UUID) predicate.Event
- func IDLTE(id uuid.UUID) predicate.Event
- func IDNEQ(id uuid.UUID) predicate.Event
- func IDNotIn(ids ...uuid.UUID) predicate.Event
- func NonInteractive(v bool) predicate.Event
- func NonInteractiveEQ(v bool) predicate.Event
- func NonInteractiveNEQ(v bool) predicate.Event
- func Not(p predicate.Event) predicate.Event
- func Or(predicates ...predicate.Event) predicate.Event
- func Platform(v string) predicate.Event
- func PlatformContains(v string) predicate.Event
- func PlatformContainsFold(v string) predicate.Event
- func PlatformEQ(v string) predicate.Event
- func PlatformEqualFold(v string) predicate.Event
- func PlatformGT(v string) predicate.Event
- func PlatformGTE(v string) predicate.Event
- func PlatformHasPrefix(v string) predicate.Event
- func PlatformHasSuffix(v string) predicate.Event
- func PlatformIn(vs ...string) predicate.Event
- func PlatformIsNil() predicate.Event
- func PlatformLT(v string) predicate.Event
- func PlatformLTE(v string) predicate.Event
- func PlatformNEQ(v string) predicate.Event
- func PlatformNotIn(vs ...string) predicate.Event
- func PlatformNotNil() predicate.Event
- func PropertiesIsNil() predicate.Event
- func PropertiesNotNil() predicate.Event
- func Timestamp(v time.Time) predicate.Event
- func TimestampEQ(v time.Time) predicate.Event
- func TimestampGT(v time.Time) predicate.Event
- func TimestampGTE(v time.Time) predicate.Event
- func TimestampIn(vs ...time.Time) predicate.Event
- func TimestampLT(v time.Time) predicate.Event
- func TimestampLTE(v time.Time) predicate.Event
- func TimestampNEQ(v time.Time) predicate.Event
- func TimestampNotIn(vs ...time.Time) predicate.Event
- func TrackingID(v string) predicate.Event
- func TrackingIDContains(v string) predicate.Event
- func TrackingIDContainsFold(v string) predicate.Event
- func TrackingIDEQ(v string) predicate.Event
- func TrackingIDEqualFold(v string) predicate.Event
- func TrackingIDGT(v string) predicate.Event
- func TrackingIDGTE(v string) predicate.Event
- func TrackingIDHasPrefix(v string) predicate.Event
- func TrackingIDHasSuffix(v string) predicate.Event
- func TrackingIDIn(vs ...string) predicate.Event
- func TrackingIDLT(v string) predicate.Event
- func TrackingIDLTE(v string) predicate.Event
- func TrackingIDNEQ(v string) predicate.Event
- func TrackingIDNotIn(vs ...string) predicate.Event
- type Event
Constants ¶
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" // FieldTrackingID holds the string denoting the tracking_id field in the database. FieldTrackingID = "tracking_id" // FieldEvent holds the string denoting the event field in the database. FieldEvent = "event" // FieldNonInteractive holds the string denoting the non_interactive field in the database. FieldNonInteractive = "non_interactive" // FieldChannel holds the string denoting the channel field in the database. FieldChannel = "channel" // FieldPlatform holds the string denoting the platform field in the database. FieldPlatform = "platform" // FieldProperties holds the string denoting the properties field in the database. FieldProperties = "properties" // FieldTimestamp holds the string denoting the timestamp field in the database. FieldTimestamp = "timestamp" // EdgeAction holds the string denoting the action edge name in mutations. EdgeAction = "action" // EdgeAlias holds the string denoting the alias edge name in mutations. EdgeAlias = "alias" // EdgeApp holds the string denoting the app edge name in mutations. EdgeApp = "app" // EdgeBrowser holds the string denoting the browser edge name in mutations. EdgeBrowser = "browser" // EdgeCampaign holds the string denoting the campaign edge name in mutations. EdgeCampaign = "campaign" // EdgeConnectivity holds the string denoting the connectivity edge name in mutations. EdgeConnectivity = "connectivity" // EdgeDevice holds the string denoting the device edge name in mutations. EdgeDevice = "device" // EdgeExtra holds the string denoting the extra edge name in mutations. EdgeExtra = "extra" // EdgeGroup holds the string denoting the group edge name in mutations. EdgeGroup = "group" // EdgeLibrary holds the string denoting the library edge name in mutations. EdgeLibrary = "library" // EdgeLocation holds the string denoting the location edge name in mutations. EdgeLocation = "location" // EdgeNetwork holds the string denoting the network edge name in mutations. EdgeNetwork = "network" // EdgeOs holds the string denoting the os edge name in mutations. EdgeOs = "os" // EdgePage holds the string denoting the page edge name in mutations. EdgePage = "page" // EdgeReferrer holds the string denoting the referrer edge name in mutations. EdgeReferrer = "referrer" // EdgeScreen holds the string denoting the screen edge name in mutations. EdgeScreen = "screen" // EdgeSession holds the string denoting the session edge name in mutations. EdgeSession = "session" // EdgeTiming holds the string denoting the timing edge name in mutations. EdgeTiming = "timing" // EdgeViewport holds the string denoting the viewport edge name in mutations. EdgeViewport = "viewport" // EdgeUser holds the string denoting the user edge name in mutations. EdgeUser = "user" // Table holds the table name of the event in the database. Table = "events" // ActionTable is the table the holds the action relation/edge. ActionTable = "actions" // ActionInverseTable is the table name for the Action entity. // It exists in this package in order to avoid circular dependency with the "action" package. ActionInverseTable = "actions" // ActionColumn is the table column denoting the action relation/edge. ActionColumn = "event_action" // AliasTable is the table the holds the alias relation/edge. AliasTable = "alias" // AliasInverseTable is the table name for the Alias entity. // It exists in this package in order to avoid circular dependency with the "alias" package. AliasInverseTable = "alias" // AliasColumn is the table column denoting the alias relation/edge. AliasColumn = "event_alias" // AppTable is the table the holds the app relation/edge. AppTable = "events" // AppInverseTable is the table name for the App entity. // It exists in this package in order to avoid circular dependency with the "app" package. AppInverseTable = "apps" // AppColumn is the table column denoting the app relation/edge. AppColumn = "event_app" // BrowserTable is the table the holds the browser relation/edge. BrowserTable = "browsers" // BrowserInverseTable is the table name for the Browser entity. // It exists in this package in order to avoid circular dependency with the "browser" package. BrowserInverseTable = "browsers" // BrowserColumn is the table column denoting the browser relation/edge. BrowserColumn = "event_browser" // CampaignTable is the table the holds the campaign relation/edge. CampaignTable = "events" // CampaignInverseTable is the table name for the Campaign entity. // It exists in this package in order to avoid circular dependency with the "campaign" package. CampaignInverseTable = "campaigns" // CampaignColumn is the table column denoting the campaign relation/edge. CampaignColumn = "event_campaign" // ConnectivityTable is the table the holds the connectivity relation/edge. ConnectivityTable = "connectivities" // ConnectivityInverseTable is the table name for the Connectivity entity. // It exists in this package in order to avoid circular dependency with the "connectivity" package. ConnectivityInverseTable = "connectivities" // ConnectivityColumn is the table column denoting the connectivity relation/edge. ConnectivityColumn = "event_connectivity" // DeviceTable is the table the holds the device relation/edge. DeviceTable = "events" // DeviceInverseTable is the table name for the Device entity. // It exists in this package in order to avoid circular dependency with the "device" package. DeviceInverseTable = "devices" // DeviceColumn is the table column denoting the device relation/edge. DeviceColumn = "event_device" // ExtraTable is the table the holds the extra relation/edge. ExtraTable = "events" // ExtraInverseTable is the table name for the Extra entity. // It exists in this package in order to avoid circular dependency with the "extra" package. ExtraInverseTable = "extras" // ExtraColumn is the table column denoting the extra relation/edge. ExtraColumn = "event_extra" // GroupTable is the table the holds the group relation/edge. GroupTable = "events" // GroupInverseTable is the table name for the Group entity. // It exists in this package in order to avoid circular dependency with the "group" package. GroupInverseTable = "groups" // GroupColumn is the table column denoting the group relation/edge. GroupColumn = "event_group" // LibraryTable is the table the holds the library relation/edge. LibraryTable = "events" // LibraryInverseTable is the table name for the Library entity. // It exists in this package in order to avoid circular dependency with the "library" package. LibraryInverseTable = "libraries" // LibraryColumn is the table column denoting the library relation/edge. LibraryColumn = "event_library" // LocationTable is the table the holds the location relation/edge. LocationTable = "events" // LocationInverseTable is the table name for the Location entity. // It exists in this package in order to avoid circular dependency with the "location" package. LocationInverseTable = "locations" // LocationColumn is the table column denoting the location relation/edge. LocationColumn = "event_location" // NetworkTable is the table the holds the network relation/edge. NetworkTable = "events" // NetworkInverseTable is the table name for the Network entity. // It exists in this package in order to avoid circular dependency with the "network" package. NetworkInverseTable = "networks" // NetworkColumn is the table column denoting the network relation/edge. NetworkColumn = "event_network" // OsTable is the table the holds the os relation/edge. OsTable = "events" // OsInverseTable is the table name for the OSContext entity. // It exists in this package in order to avoid circular dependency with the "oscontext" package. OsInverseTable = "os" // OsColumn is the table column denoting the os relation/edge. OsColumn = "event_os" // PageTable is the table the holds the page relation/edge. PageTable = "events" // PageInverseTable is the table name for the Page entity. // It exists in this package in order to avoid circular dependency with the "page" package. PageInverseTable = "pages" // PageColumn is the table column denoting the page relation/edge. PageColumn = "event_page" // ReferrerTable is the table the holds the referrer relation/edge. ReferrerTable = "events" // ReferrerInverseTable is the table name for the Referrer entity. // It exists in this package in order to avoid circular dependency with the "referrer" package. ReferrerInverseTable = "referrers" // ReferrerColumn is the table column denoting the referrer relation/edge. ReferrerColumn = "event_referrer" // ScreenTable is the table the holds the screen relation/edge. ScreenTable = "events" // ScreenInverseTable is the table name for the Screen entity. // It exists in this package in order to avoid circular dependency with the "screen" package. ScreenInverseTable = "screens" // ScreenColumn is the table column denoting the screen relation/edge. ScreenColumn = "event_screen" // SessionTable is the table the holds the session relation/edge. SessionTable = "events" // SessionInverseTable is the table name for the Session entity. // It exists in this package in order to avoid circular dependency with the "session" package. SessionInverseTable = "sessions" // SessionColumn is the table column denoting the session relation/edge. SessionColumn = "event_session" // TimingTable is the table the holds the timing relation/edge. TimingTable = "events" // TimingInverseTable is the table name for the Timing entity. // It exists in this package in order to avoid circular dependency with the "timing" package. TimingInverseTable = "timings" // TimingColumn is the table column denoting the timing relation/edge. TimingColumn = "event_timing" // ViewportTable is the table the holds the viewport relation/edge. ViewportTable = "events" // ViewportInverseTable is the table name for the Viewport entity. // It exists in this package in order to avoid circular dependency with the "viewport" package. ViewportInverseTable = "viewports" // ViewportColumn is the table column denoting the viewport relation/edge. ViewportColumn = "event_viewport" // UserTable is the table the holds the user relation/edge. UserTable = "events" // UserInverseTable is the table name for the User entity. // It exists in this package in order to avoid circular dependency with the "user" package. UserInverseTable = "users" // UserColumn is the table column denoting the user relation/edge. UserColumn = "event_user" )
Variables ¶
var Columns = []string{ FieldID, FieldTrackingID, FieldEvent, FieldNonInteractive, FieldChannel, FieldPlatform, FieldProperties, FieldTimestamp, }
Columns holds all SQL columns for event fields.
var ForeignKeys = []string{
"event_app",
"event_campaign",
"event_device",
"event_extra",
"event_group",
"event_library",
"event_location",
"event_network",
"event_os",
"event_page",
"event_referrer",
"event_screen",
"event_session",
"event_timing",
"event_viewport",
"event_user",
}
ForeignKeys holds the SQL foreign-keys that are owned by the Event type.
Functions ¶
func Channel ¶
Channel applies equality check predicate on the "channel" field. It's identical to ChannelEQ.
func ChannelContains ¶
ChannelContains applies the Contains predicate on the "channel" field.
func ChannelContainsFold ¶
ChannelContainsFold applies the ContainsFold predicate on the "channel" field.
func ChannelEqualFold ¶
ChannelEqualFold applies the EqualFold predicate on the "channel" field.
func ChannelGTE ¶
ChannelGTE applies the GTE predicate on the "channel" field.
func ChannelHasPrefix ¶
ChannelHasPrefix applies the HasPrefix predicate on the "channel" field.
func ChannelHasSuffix ¶
ChannelHasSuffix applies the HasSuffix predicate on the "channel" field.
func ChannelIsNil ¶
ChannelIsNil applies the IsNil predicate on the "channel" field.
func ChannelLTE ¶
ChannelLTE applies the LTE predicate on the "channel" field.
func ChannelNEQ ¶
ChannelNEQ applies the NEQ predicate on the "channel" field.
func ChannelNotIn ¶
ChannelNotIn applies the NotIn predicate on the "channel" field.
func ChannelNotNil ¶
ChannelNotNil applies the NotNil predicate on the "channel" field.
func EventNotIn ¶
EventNotIn applies the NotIn predicate on the "event" field.
func EventValidator ¶
EventValidator is a validator for the "event" field enum values. It is called by the builders before save.
func HasActionWith ¶
HasActionWith applies the HasEdge predicate on the "action" edge with a given conditions (other predicates).
func HasAliasWith ¶
HasAliasWith applies the HasEdge predicate on the "alias" edge with a given conditions (other predicates).
func HasAppWith ¶
HasAppWith applies the HasEdge predicate on the "app" edge with a given conditions (other predicates).
func HasBrowser ¶
HasBrowser applies the HasEdge predicate on the "browser" edge.
func HasBrowserWith ¶
HasBrowserWith applies the HasEdge predicate on the "browser" edge with a given conditions (other predicates).
func HasCampaign ¶
HasCampaign applies the HasEdge predicate on the "campaign" edge.
func HasCampaignWith ¶
HasCampaignWith applies the HasEdge predicate on the "campaign" edge with a given conditions (other predicates).
func HasConnectivity ¶
HasConnectivity applies the HasEdge predicate on the "connectivity" edge.
func HasConnectivityWith ¶
func HasConnectivityWith(preds ...predicate.Connectivity) predicate.Event
HasConnectivityWith applies the HasEdge predicate on the "connectivity" edge with a given conditions (other predicates).
func HasDeviceWith ¶
HasDeviceWith applies the HasEdge predicate on the "device" edge with a given conditions (other predicates).
func HasExtraWith ¶
HasExtraWith applies the HasEdge predicate on the "extra" edge with a given conditions (other predicates).
func HasGroupWith ¶
HasGroupWith applies the HasEdge predicate on the "group" edge with a given conditions (other predicates).
func HasLibrary ¶
HasLibrary applies the HasEdge predicate on the "library" edge.
func HasLibraryWith ¶
HasLibraryWith applies the HasEdge predicate on the "library" edge with a given conditions (other predicates).
func HasLocation ¶
HasLocation applies the HasEdge predicate on the "location" edge.
func HasLocationWith ¶
HasLocationWith applies the HasEdge predicate on the "location" edge with a given conditions (other predicates).
func HasNetwork ¶
HasNetwork applies the HasEdge predicate on the "network" edge.
func HasNetworkWith ¶
HasNetworkWith applies the HasEdge predicate on the "network" edge with a given conditions (other predicates).
func HasOsWith ¶
HasOsWith applies the HasEdge predicate on the "os" edge with a given conditions (other predicates).
func HasPageWith ¶
HasPageWith applies the HasEdge predicate on the "page" edge with a given conditions (other predicates).
func HasReferrer ¶
HasReferrer applies the HasEdge predicate on the "referrer" edge.
func HasReferrerWith ¶
HasReferrerWith applies the HasEdge predicate on the "referrer" edge with a given conditions (other predicates).
func HasScreenWith ¶
HasScreenWith applies the HasEdge predicate on the "screen" edge with a given conditions (other predicates).
func HasSession ¶
HasSession applies the HasEdge predicate on the "session" edge.
func HasSessionWith ¶
HasSessionWith applies the HasEdge predicate on the "session" edge with a given conditions (other predicates).
func HasTimingWith ¶
HasTimingWith applies the HasEdge predicate on the "timing" edge with a given conditions (other predicates).
func HasUserWith ¶
HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
func HasViewport ¶
HasViewport applies the HasEdge predicate on the "viewport" edge.
func HasViewportWith ¶
HasViewportWith applies the HasEdge predicate on the "viewport" edge with a given conditions (other predicates).
func NonInteractive ¶
NonInteractive applies equality check predicate on the "non_interactive" field. It's identical to NonInteractiveEQ.
func NonInteractiveEQ ¶
NonInteractiveEQ applies the EQ predicate on the "non_interactive" field.
func NonInteractiveNEQ ¶
NonInteractiveNEQ applies the NEQ predicate on the "non_interactive" field.
func Platform ¶
Platform applies equality check predicate on the "platform" field. It's identical to PlatformEQ.
func PlatformContains ¶
PlatformContains applies the Contains predicate on the "platform" field.
func PlatformContainsFold ¶
PlatformContainsFold applies the ContainsFold predicate on the "platform" field.
func PlatformEQ ¶
PlatformEQ applies the EQ predicate on the "platform" field.
func PlatformEqualFold ¶
PlatformEqualFold applies the EqualFold predicate on the "platform" field.
func PlatformGT ¶
PlatformGT applies the GT predicate on the "platform" field.
func PlatformGTE ¶
PlatformGTE applies the GTE predicate on the "platform" field.
func PlatformHasPrefix ¶
PlatformHasPrefix applies the HasPrefix predicate on the "platform" field.
func PlatformHasSuffix ¶
PlatformHasSuffix applies the HasSuffix predicate on the "platform" field.
func PlatformIn ¶
PlatformIn applies the In predicate on the "platform" field.
func PlatformIsNil ¶
PlatformIsNil applies the IsNil predicate on the "platform" field.
func PlatformLT ¶
PlatformLT applies the LT predicate on the "platform" field.
func PlatformLTE ¶
PlatformLTE applies the LTE predicate on the "platform" field.
func PlatformNEQ ¶
PlatformNEQ applies the NEQ predicate on the "platform" field.
func PlatformNotIn ¶
PlatformNotIn applies the NotIn predicate on the "platform" field.
func PlatformNotNil ¶
PlatformNotNil applies the NotNil predicate on the "platform" field.
func PropertiesIsNil ¶
PropertiesIsNil applies the IsNil predicate on the "properties" field.
func PropertiesNotNil ¶
PropertiesNotNil applies the NotNil predicate on the "properties" field.
func Timestamp ¶
Timestamp applies equality check predicate on the "timestamp" field. It's identical to TimestampEQ.
func TimestampEQ ¶
TimestampEQ applies the EQ predicate on the "timestamp" field.
func TimestampGT ¶
TimestampGT applies the GT predicate on the "timestamp" field.
func TimestampGTE ¶
TimestampGTE applies the GTE predicate on the "timestamp" field.
func TimestampIn ¶
TimestampIn applies the In predicate on the "timestamp" field.
func TimestampLT ¶
TimestampLT applies the LT predicate on the "timestamp" field.
func TimestampLTE ¶
TimestampLTE applies the LTE predicate on the "timestamp" field.
func TimestampNEQ ¶
TimestampNEQ applies the NEQ predicate on the "timestamp" field.
func TimestampNotIn ¶
TimestampNotIn applies the NotIn predicate on the "timestamp" field.
func TrackingID ¶
TrackingID applies equality check predicate on the "tracking_id" field. It's identical to TrackingIDEQ.
func TrackingIDContains ¶
TrackingIDContains applies the Contains predicate on the "tracking_id" field.
func TrackingIDContainsFold ¶
TrackingIDContainsFold applies the ContainsFold predicate on the "tracking_id" field.
func TrackingIDEQ ¶
TrackingIDEQ applies the EQ predicate on the "tracking_id" field.
func TrackingIDEqualFold ¶
TrackingIDEqualFold applies the EqualFold predicate on the "tracking_id" field.
func TrackingIDGT ¶
TrackingIDGT applies the GT predicate on the "tracking_id" field.
func TrackingIDGTE ¶
TrackingIDGTE applies the GTE predicate on the "tracking_id" field.
func TrackingIDHasPrefix ¶
TrackingIDHasPrefix applies the HasPrefix predicate on the "tracking_id" field.
func TrackingIDHasSuffix ¶
TrackingIDHasSuffix applies the HasSuffix predicate on the "tracking_id" field.
func TrackingIDIn ¶
TrackingIDIn applies the In predicate on the "tracking_id" field.
func TrackingIDLT ¶
TrackingIDLT applies the LT predicate on the "tracking_id" field.
func TrackingIDLTE ¶
TrackingIDLTE applies the LTE predicate on the "tracking_id" field.
func TrackingIDNEQ ¶
TrackingIDNEQ applies the NEQ predicate on the "tracking_id" field.
func TrackingIDNotIn ¶
TrackingIDNotIn applies the NotIn predicate on the "tracking_id" field.
Types ¶
type Event ¶
type Event string
Event defines the type for the event enum field.
const ( EventAction Event = "action" EventAlias Event = "alias" EventGroup Event = "group" EventIdentify Event = "identify" EventPageview Event = "pageview" EventScreenview Event = "screenview" EventSession Event = "session" EventTiming Event = "timing" EventTransaction Event = "transaction" )
Event values.