Compare commits
4 Commits
f40c223dfc
...
dean/usage
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6f356f9535 | ||
|
|
5c0ff8c31b | ||
|
|
582c20170d | ||
| ef4782fc14 |
19917
src/index.tsx
19917
src/index.tsx
File diff suppressed because it is too large
Load Diff
@@ -9,6 +9,9 @@ query GetTableState(
|
|||||||
useHomography: $useHomography
|
useHomography: $useHomography
|
||||||
) {
|
) {
|
||||||
identifierToPosition
|
identifierToPosition
|
||||||
|
identifierToColor {
|
||||||
|
hex
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -18,6 +21,9 @@ query GetLiveTableState($videoId: Int!) {
|
|||||||
frameIndex
|
frameIndex
|
||||||
tableState {
|
tableState {
|
||||||
identifierToPosition
|
identifierToPosition
|
||||||
|
identifierToColor {
|
||||||
|
hex
|
||||||
|
}
|
||||||
homography {
|
homography {
|
||||||
...HomographyInfo
|
...HomographyInfo
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,17 @@
|
|||||||
query getUsageStats($days: Int! = 30) {
|
query getUsageStats($days: Int! = 30) {
|
||||||
getUsageStats(days: $days) {
|
getUsageStats(days: $days) {
|
||||||
|
funnel {
|
||||||
|
freemiumEpoch
|
||||||
|
eraSignups
|
||||||
|
eraPaying
|
||||||
|
activationCohort
|
||||||
|
activationActivated
|
||||||
|
payingUsers
|
||||||
|
newPaid7d
|
||||||
|
newPaid30d
|
||||||
|
retentionPrevActive
|
||||||
|
retentionReturned
|
||||||
|
}
|
||||||
totalUsers
|
totalUsers
|
||||||
totalVideos
|
totalVideos
|
||||||
totalShots
|
totalShots
|
||||||
|
|||||||
@@ -1170,6 +1170,7 @@ input CreatedAfter @oneOf {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type UsageStatsGQL {
|
type UsageStatsGQL {
|
||||||
|
funnel: FunnelStatsGQL!
|
||||||
totalUsers: Int!
|
totalUsers: Int!
|
||||||
totalVideos: Int!
|
totalVideos: Int!
|
||||||
totalShots: Int!
|
totalShots: Int!
|
||||||
@@ -1179,6 +1180,19 @@ type UsageStatsGQL {
|
|||||||
processingLast24h: [ProcessingStatusCountGQL!]!
|
processingLast24h: [ProcessingStatusCountGQL!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type FunnelStatsGQL {
|
||||||
|
freemiumEpoch: Date!
|
||||||
|
eraSignups: Int!
|
||||||
|
eraPaying: Int!
|
||||||
|
activationCohort: Int!
|
||||||
|
activationActivated: Int!
|
||||||
|
payingUsers: Int!
|
||||||
|
newPaid7d: Int!
|
||||||
|
newPaid30d: Int!
|
||||||
|
retentionPrevActive: Int!
|
||||||
|
retentionReturned: Int!
|
||||||
|
}
|
||||||
|
|
||||||
type UsageStatsWindowGQL {
|
type UsageStatsWindowGQL {
|
||||||
label: String!
|
label: String!
|
||||||
newUsers: Int!
|
newUsers: Int!
|
||||||
|
|||||||
Reference in New Issue
Block a user