Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions generated/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -926,9 +926,58 @@ type TelemetryStats {
online: Int!
runtimes: [TelemetryRuntimeCount!]!
totals: TelemetryFleetTotals!
utility: TelemetryUtilityTotals!
utilitySources: [TelemetryUtilitySourceCount!]!
utilityTypes: [TelemetryUtilityTypeCount!]!
versions: [TelemetryVersionCount!]!
}

type TelemetryUtilitySourceCount {
lineups: Int!
source: String!
}

type TelemetryUtilityTotals {
archived: Int!
attempts: Int!
authors: Int!
collections: Int!
demoThrows: Int!
demosMined: Int!
driftFlagged: Int!
driftScans: Int!
favorites: Int!
hosts: Int!
lineups: Int!
maps: Int!
mastered: Int!
metaLineups: Int!
month: Int!
pendingReview: Int!
playbookSteps: Int!
playbooks: Int!
practicing: Int!
previews: Int!
private: Int!
public: Int!
repairs: Int!
reported: Int!
sessions: Int!
sessionsFailed: Int!
sessionsMonth: Int!
sessionsWeek: Int!
successes: Int!
team: Int!
verified: Int!
votes: Int!
week: Int!
}

type TelemetryUtilityTypeCount {
lineups: Int!
type: String!
}

type TelemetryVersionCount {
installs: Int!
rank: Int!
Expand Down
131 changes: 131 additions & 0 deletions generated/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -863,10 +863,62 @@ export interface TelemetryStats {
online: Scalars['Int']
runtimes: TelemetryRuntimeCount[]
totals: TelemetryFleetTotals
utility: TelemetryUtilityTotals
utilitySources: TelemetryUtilitySourceCount[]
utilityTypes: TelemetryUtilityTypeCount[]
versions: TelemetryVersionCount[]
__typename: 'TelemetryStats'
}

export interface TelemetryUtilitySourceCount {
lineups: Scalars['Int']
source: Scalars['String']
__typename: 'TelemetryUtilitySourceCount'
}

export interface TelemetryUtilityTotals {
archived: Scalars['Int']
attempts: Scalars['Int']
authors: Scalars['Int']
collections: Scalars['Int']
demoThrows: Scalars['Int']
demosMined: Scalars['Int']
driftFlagged: Scalars['Int']
driftScans: Scalars['Int']
favorites: Scalars['Int']
hosts: Scalars['Int']
lineups: Scalars['Int']
maps: Scalars['Int']
mastered: Scalars['Int']
metaLineups: Scalars['Int']
month: Scalars['Int']
pendingReview: Scalars['Int']
playbookSteps: Scalars['Int']
playbooks: Scalars['Int']
practicing: Scalars['Int']
previews: Scalars['Int']
private: Scalars['Int']
public: Scalars['Int']
repairs: Scalars['Int']
reported: Scalars['Int']
sessions: Scalars['Int']
sessionsFailed: Scalars['Int']
sessionsMonth: Scalars['Int']
sessionsWeek: Scalars['Int']
successes: Scalars['Int']
team: Scalars['Int']
verified: Scalars['Int']
votes: Scalars['Int']
week: Scalars['Int']
__typename: 'TelemetryUtilityTotals'
}

export interface TelemetryUtilityTypeCount {
lineups: Scalars['Int']
type: Scalars['String']
__typename: 'TelemetryUtilityTypeCount'
}

export interface TelemetryVersionCount {
installs: Scalars['Int']
rank: Scalars['Int']
Expand Down Expand Up @@ -44391,11 +44443,66 @@ export interface TelemetryStatsGenqlSelection{
online?: boolean | number
runtimes?: TelemetryRuntimeCountGenqlSelection
totals?: TelemetryFleetTotalsGenqlSelection
utility?: TelemetryUtilityTotalsGenqlSelection
utilitySources?: TelemetryUtilitySourceCountGenqlSelection
utilityTypes?: TelemetryUtilityTypeCountGenqlSelection
versions?: TelemetryVersionCountGenqlSelection
__typename?: boolean | number
__scalar?: boolean | number
}

export interface TelemetryUtilitySourceCountGenqlSelection{
lineups?: boolean | number
source?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}

export interface TelemetryUtilityTotalsGenqlSelection{
archived?: boolean | number
attempts?: boolean | number
authors?: boolean | number
collections?: boolean | number
demoThrows?: boolean | number
demosMined?: boolean | number
driftFlagged?: boolean | number
driftScans?: boolean | number
favorites?: boolean | number
hosts?: boolean | number
lineups?: boolean | number
maps?: boolean | number
mastered?: boolean | number
metaLineups?: boolean | number
month?: boolean | number
pendingReview?: boolean | number
playbookSteps?: boolean | number
playbooks?: boolean | number
practicing?: boolean | number
previews?: boolean | number
private?: boolean | number
public?: boolean | number
repairs?: boolean | number
reported?: boolean | number
sessions?: boolean | number
sessionsFailed?: boolean | number
sessionsMonth?: boolean | number
sessionsWeek?: boolean | number
successes?: boolean | number
team?: boolean | number
verified?: boolean | number
votes?: boolean | number
week?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}

export interface TelemetryUtilityTypeCountGenqlSelection{
lineups?: boolean | number
type?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}

export interface TelemetryVersionCountGenqlSelection{
installs?: boolean | number
rank?: boolean | number
Expand Down Expand Up @@ -121831,6 +121938,30 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection



const TelemetryUtilitySourceCount_possibleTypes: string[] = ['TelemetryUtilitySourceCount']
export const isTelemetryUtilitySourceCount = (obj?: { __typename?: any } | null): obj is TelemetryUtilitySourceCount => {
if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilitySourceCount"')
return TelemetryUtilitySourceCount_possibleTypes.includes(obj.__typename)
}



const TelemetryUtilityTotals_possibleTypes: string[] = ['TelemetryUtilityTotals']
export const isTelemetryUtilityTotals = (obj?: { __typename?: any } | null): obj is TelemetryUtilityTotals => {
if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilityTotals"')
return TelemetryUtilityTotals_possibleTypes.includes(obj.__typename)
}



const TelemetryUtilityTypeCount_possibleTypes: string[] = ['TelemetryUtilityTypeCount']
export const isTelemetryUtilityTypeCount = (obj?: { __typename?: any } | null): obj is TelemetryUtilityTypeCount => {
if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryUtilityTypeCount"')
return TelemetryUtilityTypeCount_possibleTypes.includes(obj.__typename)
}



const TelemetryVersionCount_possibleTypes: string[] = ['TelemetryVersionCount']
export const isTelemetryVersionCount = (obj?: { __typename?: any } | null): obj is TelemetryVersionCount => {
if (!obj?.__typename) throw new Error('__typename is missing in "isTelemetryVersionCount"')
Expand Down
Loading
Loading