mansi@neondigital.media
Profile owner · ← all owners
Brands owned
21
Distinct users
1
Active days
26
Sessions
711
Active hours
9.20
Brands
| Brand | Users | Sessions | Active hours |
|---|---|---|---|
| Native Fab | 1 | 192 | 2.69 |
| GoBiotix | 1 | 151 | 2.12 |
| DR Vitamins | 1 | 78 | 0.93 |
| InSimple Living | 1 | 68 | 0.76 |
| PureGrubs | 1 | 42 | 0.61 |
| HolidayTraditions | 1 | 38 | 0.48 |
| Factory Standard AMS | 1 | 29 | 0.31 |
| Caden Lane Baby | 1 | 15 | 0.27 |
| trtl travel | 1 | 21 | 0.23 |
| WrenchIt | 1 | 14 | 0.16 |
| Skout Organic | 1 | 12 | 0.16 |
| Amadurra | 1 | 14 | 0.13 |
| BÆRSkin Tactical Supply Co. | 1 | 7 | 0.12 |
| Sandhu Products Inc. | 1 | 8 | 0.06 |
| Heirloom Comfort | 1 | 5 | 0.05 |
| Amazing Parts Warehouse | 1 | 5 | 0.05 |
| COCONIQ EU | 1 | 4 | 0.03 |
| COCONIQ | 1 | 4 | 0.02 |
| Blissy Brand | 1 | 2 | 0.02 |
| Softopia Cotton | 1 | 1 | 0.01 |
| Ray Squad | 1 | 1 | 0.00 |
2 queries · scanned 10.85 MB · cost $0.000065 · 2.95s
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-05-26' AND DATE '2026-06-25'
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-05-26' AND DATE '2026-06-25'
GROUP BY brand_group
ORDER BY active_hours DESC