Fixed event data queries.

This commit is contained in:
Mike Cao 2023-08-04 15:21:14 -07:00
parent 0fd57aa7cf
commit e11766ca1c
6 changed files with 44 additions and 38 deletions

View file

@ -48,12 +48,12 @@ export const FILTER_COLUMNS = {
referrer: 'referrer_domain',
title: 'page_title',
query: 'url_query',
event: 'event_name',
region: 'subdivision1',
type: 'event_type',
eventType: 'event_type',
eventName: 'event_name',
};
export const IGNORED_FILTERS = ['startDate', 'endDate', 'timezone', 'unit', 'eventType'];
export const IGNORED_FILTERS = ['startDate', 'endDate', 'timezone', 'unit'];
export const COLLECTION_TYPE = {
event: 'event',

View file

@ -153,4 +153,5 @@ export interface QueryFilters {
export interface QueryOptions {
joinSession?: boolean;
ignoreFilters?: string[];
}