Compare commits
4 Commits
ivan/manua
...
loewy/add-
| Author | SHA1 | Date | |
|---|---|---|---|
| 88afcc38cc | |||
| cd3ecdfba4 | |||
| 27a0c08cd5 | |||
| 99f0913fd8 |
@@ -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"];
|
||||
@@ -6425,6 +6450,7 @@ export type UploadStreamWithDetailsFragment = {
|
||||
lastIntendedSegmentBound?: number | null;
|
||||
uploadCompletionCursor: number;
|
||||
uploadsCompleted: number;
|
||||
initPlaylistUploadStatus?: InitPlaylistUploadStatusEnum | null;
|
||||
} | null;
|
||||
};
|
||||
|
||||
@@ -6449,6 +6475,7 @@ export type GetUploadStreamsWithDetailsQuery = {
|
||||
lastIntendedSegmentBound?: number | null;
|
||||
uploadCompletionCursor: number;
|
||||
uploadsCompleted: number;
|
||||
initPlaylistUploadStatus?: InitPlaylistUploadStatusEnum | null;
|
||||
} | null;
|
||||
}>;
|
||||
pageInfo: {
|
||||
@@ -6791,6 +6818,7 @@ export const UploadStreamWithDetailsFragmentDoc = gql`
|
||||
lastIntendedSegmentBound
|
||||
uploadCompletionCursor
|
||||
uploadsCompleted
|
||||
initPlaylistUploadStatus
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -117,6 +117,7 @@ fragment UploadStreamWithDetails on VideoGQL {
|
||||
lastIntendedSegmentBound
|
||||
uploadCompletionCursor
|
||||
uploadsCompleted
|
||||
initPlaylistUploadStatus
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -106,6 +106,7 @@ type Query {
|
||||
filters: VideoFilterInput = null
|
||||
): VideoHistoryGQL!
|
||||
getUserTags(includeRetiredTags: Boolean = false): [TagGQL!]!
|
||||
getGameTypeTagMetrics(input: GameTypeTagMetricsInput!): [GameTypeTagMetric!]!
|
||||
getVideo(videoId: Int!, debuggingJson: JSON = null): VideoGQL!
|
||||
getVideos(videoIds: [Int!]!): [VideoGQL!]!
|
||||
}
|
||||
@@ -1017,6 +1018,25 @@ type TagClassGQL {
|
||||
name: String!
|
||||
}
|
||||
|
||||
type GameTypeTagMetric {
|
||||
tagName: String!
|
||||
tagLabel: String!
|
||||
tableSize: Float
|
||||
shotCount: Int!
|
||||
madeShots: Int!
|
||||
makeRate: Float!
|
||||
}
|
||||
|
||||
input GameTypeTagMetricsInput {
|
||||
userId: Int!
|
||||
createdAt: DateRangeFilter = null
|
||||
maxTags: Int = null
|
||||
groupByTableSize: Boolean! = true
|
||||
includeUnknown: Boolean! = true
|
||||
tagClass: String = "game_type"
|
||||
includePrivate: IncludePrivateEnum! = MINE
|
||||
}
|
||||
|
||||
"""
|
||||
The `JSON` scalar type represents JSON values as specified by [ECMA-404](https://ecma-international.org/wp-content/uploads/ECMA-404_2nd_edition_december_2017.pdf).
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user