mahadevvanshi@neondigital.media

Profile owner · ← all owners

Brands owned
23
Distinct users
1
Active days
5
Sessions
305
Active hours
2.33

Brands

BrandUsersSessionsActive hours
Beauty by Earth 1 63 0.35
Amadurra 1 12 0.25
InSimple Living 1 18 0.22
COCONIQ 1 19 0.20
GoBiotix 1 11 0.19
Beauty by Earth Products 1 34 0.18
Native Fab 1 9 0.15
SaiTech IT 1 18 0.13
SB SOX 1 52 0.13
Factory Standard AMS 1 11 0.11
PureGrubs 1 13 0.10
Caden Lane Baby 1 8 0.10
BÆRSkin Tactical Supply Co. 1 6 0.07
COCONIQ EU 1 7 0.04
WrenchIt 1 4 0.02
Blissy Brand 1 4 0.02
INSPIRED NUTRITION LLC 1 2 0.02
Sprig & Sprouts LLC 1 2 0.02
LJ Distribution 1 3 0.01
Great River Milling 1 2 0.01
Amazing Parts Warehouse 1 4 0.01
HomweStore 1 2 0.01
DALT Brands INC 1 1 0.00
2 queries · scanned 2.88 MB · cost $0.000017 · 2.95s
Query 1 · 1 rows · 1.44 MB · $0.000009 · 1.60s
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('mahadevvanshi@neondigital.media')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY profile_owner_email
Query 2 · 23 rows · 1.44 MB · $0.000009 · 1.34s
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('mahadevvanshi@neondigital.media')
  AND day BETWEEN DATE '2026-06-17' AND DATE '2026-06-24'
GROUP BY brand_group
ORDER BY active_hours DESC