Add disjoint activated segment to cohorts for stacking
All checks were successful
Tests / Tests (pull_request) Successful in 10s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Dean Wenstrand
2026-07-11 17:45:01 -07:00
parent 40c4b82a59
commit 35c7c23ba9
3 changed files with 5 additions and 0 deletions

View File

@@ -263,6 +263,7 @@ export type ClusterAssignmentInput = {
export type CohortStatsGql = { export type CohortStatsGql = {
__typename?: "CohortStatsGQL"; __typename?: "CohortStatsGQL";
activated7d: Scalars["Int"]["output"]; activated7d: Scalars["Int"]["output"];
activatedNotPaid7d: Scalars["Int"]["output"];
paid7d: Scalars["Int"]["output"]; paid7d: Scalars["Int"]["output"];
signups: Scalars["Int"]["output"]; signups: Scalars["Int"]["output"];
weekStart: Scalars["Date"]["output"]; weekStart: Scalars["Date"]["output"];
@@ -7490,6 +7491,7 @@ export type GetUsageStatsQuery = {
signups: number; signups: number;
activated7d: number; activated7d: number;
paid7d: number; paid7d: number;
activatedNotPaid7d: number;
}>; }>;
windows: Array<{ windows: Array<{
__typename?: "UsageStatsWindowGQL"; __typename?: "UsageStatsWindowGQL";
@@ -15809,6 +15811,7 @@ export const GetUsageStatsDocument = gql`
signups signups
activated7d activated7d
paid7d paid7d
activatedNotPaid7d
} }
totalUsers totalUsers
totalVideos totalVideos

View File

@@ -17,6 +17,7 @@ query getUsageStats($days: Int! = 30) {
signups signups
activated7d activated7d
paid7d paid7d
activatedNotPaid7d
} }
totalUsers totalUsers
totalVideos totalVideos

View File

@@ -1199,6 +1199,7 @@ type CohortStatsGQL {
signups: Int! signups: Int!
activated7d: Int! activated7d: Int!
paid7d: Int! paid7d: Int!
activatedNotPaid7d: Int!
} }
type UsageStatsWindowGQL { type UsageStatsWindowGQL {