add schema getGameTypeTagMetrics
All checks were successful
Tests / Tests (pull_request) Successful in 10s
All checks were successful
Tests / Tests (pull_request) Successful in 10s
This commit is contained in:
@@ -2191,6 +2191,26 @@ export type FloatRangeFilter = {
|
||||
lessThanInclusive?: Scalars["Boolean"]["input"];
|
||||
};
|
||||
|
||||
export type GameTypeTagMetric = {
|
||||
__typename?: "GameTypeTagMetric";
|
||||
madeShots: Scalars["Int"]["output"];
|
||||
makeRate: Scalars["Float"]["output"];
|
||||
shotCount: Scalars["Int"]["output"];
|
||||
tableSize?: Maybe<Scalars["Float"]["output"]>;
|
||||
tagLabel: Scalars["String"]["output"];
|
||||
tagName: Scalars["String"]["output"];
|
||||
};
|
||||
|
||||
export type GameTypeTagMetricsInput = {
|
||||
createdAt?: InputMaybe<DateRangeFilter>;
|
||||
groupByTableSize?: Scalars["Boolean"]["input"];
|
||||
includePrivate?: IncludePrivateEnum;
|
||||
includeUnknown?: Scalars["Boolean"]["input"];
|
||||
maxTags?: InputMaybe<Scalars["Int"]["input"]>;
|
||||
tagClass?: InputMaybe<Scalars["String"]["input"]>;
|
||||
userId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type GetProfileUploadLinkErrors = {
|
||||
__typename?: "GetProfileUploadLinkErrors";
|
||||
error: TooManyProfileImageUploadsErr;
|
||||
@@ -2732,6 +2752,7 @@ export type Query = {
|
||||
getBucketSet?: Maybe<BucketSetGql>;
|
||||
getDeployedConfig: DeployedConfigGql;
|
||||
getFeedVideos: VideoHistoryGql;
|
||||
getGameTypeTagMetrics: Array<GameTypeTagMetric>;
|
||||
getLoggedInUser?: Maybe<UserGql>;
|
||||
getLongestRunsLeaderboard: RunLeaderboardGql;
|
||||
getMakesLeaderboard: CountLeaderboardGql;
|
||||
@@ -2799,6 +2820,10 @@ export type QueryGetFeedVideosArgs = {
|
||||
limit?: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type QueryGetGameTypeTagMetricsArgs = {
|
||||
input: GameTypeTagMetricsInput;
|
||||
};
|
||||
|
||||
export type QueryGetLongestRunsLeaderboardArgs = {
|
||||
interval?: InputMaybe<TimeInterval>;
|
||||
limit?: Scalars["Int"]["input"];
|
||||
|
||||
Reference in New Issue
Block a user