mansi@neondigital.media
Profile owner · ← all owners
Brands owned
17
Distinct users
1
Active days
7
Sessions
246
Active hours
2.94
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| Native Fab | 1 | 129 | 1.84 |
| GoBiotix | 1 | 37 | 0.42 |
| Caden Lane Baby | 1 | 12 | 0.14 |
| Factory Standard AMS | 1 | 15 | 0.11 |
| Amadurra | 1 | 11 | 0.11 |
| InSimple Living | 1 | 14 | 0.07 |
| trtl travel | 1 | 4 | 0.06 |
| HolidayTraditions | 1 | 2 | 0.04 |
| COCONIQ EU | 1 | 4 | 0.03 |
| Skout Organic | 1 | 2 | 0.03 |
| Heirloom Comfort | 1 | 2 | 0.02 |
| PureGrubs | 1 | 3 | 0.02 |
| COCONIQ | 1 | 4 | 0.02 |
| Blissy Brand | 1 | 2 | 0.02 |
| Softopia Cotton | 1 | 1 | 0.01 |
| Sandhu Products Inc. | 1 | 1 | 0.01 |
| DR Vitamins | 1 | 3 | 0.01 |
2 queries · scanned 2.60 MB · cost $0.000015 · 2.87s
SELECT
profile_owner_email,
COUNT(DISTINCT brand_group) AS brands_owned,
COUNT(DISTINCT email) AS distinct_users,
SUM(sessions) AS sessions,
ROUND(SUM(active_seconds)/3600.0, 2) AS active_hours,
COUNT(DISTINCT day) AS active_days
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(profile_owner_email) = LOWER('mansi@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY profile_owner_email
SELECT brand_group,
COUNT(DISTINCT email) AS distinct_users,
SUM(sessions) AS sessions,
ROUND(SUM(active_seconds)/3600.0, 2) AS active_hours
FROM `amazoneast.customerio_data.fact_sessions_daily`
WHERE LOWER(profile_owner_email) = LOWER('mansi@neondigital.media')
AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_hours DESC