Compare commits
1 Commits
master
...
dean/drill
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb5217e070 |
@@ -393,6 +393,16 @@ export type DoesNotOwnShotErrOtherErrorNeedsNote =
|
|||||||
| DoesNotOwnShotErr
|
| DoesNotOwnShotErr
|
||||||
| OtherErrorNeedsNote;
|
| OtherErrorNeedsNote;
|
||||||
|
|
||||||
|
export type DrillResultGql = {
|
||||||
|
__typename?: "DrillResultGQL";
|
||||||
|
attemptCount: Scalars["Int"]["output"];
|
||||||
|
drillTag: Scalars["String"]["output"];
|
||||||
|
isPersonalBest: Scalars["Boolean"]["output"];
|
||||||
|
longestRun: Scalars["Int"]["output"];
|
||||||
|
longestRunId?: Maybe<Scalars["Int"]["output"]>;
|
||||||
|
prRank: Scalars["Int"]["output"];
|
||||||
|
};
|
||||||
|
|
||||||
export type DrillRunLeaderboardGql = {
|
export type DrillRunLeaderboardGql = {
|
||||||
__typename?: "DrillRunLeaderboardGQL";
|
__typename?: "DrillRunLeaderboardGQL";
|
||||||
entries: Array<RunGql>;
|
entries: Array<RunGql>;
|
||||||
@@ -4155,6 +4165,7 @@ export type VideoGql = {
|
|||||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||||
currentHomography?: Maybe<HomographyInfoGql>;
|
currentHomography?: Maybe<HomographyInfoGql>;
|
||||||
currentProcessing?: Maybe<VideoProcessingGql>;
|
currentProcessing?: Maybe<VideoProcessingGql>;
|
||||||
|
drillResult?: Maybe<DrillResultGql>;
|
||||||
elapsedTime?: Maybe<Scalars["Float"]["output"]>;
|
elapsedTime?: Maybe<Scalars["Float"]["output"]>;
|
||||||
endTime?: Maybe<Scalars["DateTime"]["output"]>;
|
endTime?: Maybe<Scalars["DateTime"]["output"]>;
|
||||||
framesPerSecond: Scalars["Float"]["output"];
|
framesPerSecond: Scalars["Float"]["output"];
|
||||||
@@ -4795,6 +4806,15 @@ export type GetFeedQuery = {
|
|||||||
name: string;
|
name: string;
|
||||||
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
||||||
}>;
|
}>;
|
||||||
|
drillResult?: {
|
||||||
|
__typename?: "DrillResultGQL";
|
||||||
|
drillTag: string;
|
||||||
|
longestRun: number;
|
||||||
|
longestRunId?: number | null;
|
||||||
|
prRank: number;
|
||||||
|
isPersonalBest: boolean;
|
||||||
|
attemptCount: number;
|
||||||
|
} | null;
|
||||||
playerSummaries: Array<{
|
playerSummaries: Array<{
|
||||||
__typename?: "PlayerSummaryGQL";
|
__typename?: "PlayerSummaryGQL";
|
||||||
clusterId: number;
|
clusterId: number;
|
||||||
@@ -4910,6 +4930,15 @@ export type VideoCardFieldsFragment = {
|
|||||||
name: string;
|
name: string;
|
||||||
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
||||||
}>;
|
}>;
|
||||||
|
drillResult?: {
|
||||||
|
__typename?: "DrillResultGQL";
|
||||||
|
drillTag: string;
|
||||||
|
longestRun: number;
|
||||||
|
longestRunId?: number | null;
|
||||||
|
prRank: number;
|
||||||
|
isPersonalBest: boolean;
|
||||||
|
attemptCount: number;
|
||||||
|
} | null;
|
||||||
playerSummaries: Array<{
|
playerSummaries: Array<{
|
||||||
__typename?: "PlayerSummaryGQL";
|
__typename?: "PlayerSummaryGQL";
|
||||||
clusterId: number;
|
clusterId: number;
|
||||||
@@ -5058,6 +5087,15 @@ export type GetVideoFeedQuery = {
|
|||||||
name: string;
|
name: string;
|
||||||
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
||||||
}>;
|
}>;
|
||||||
|
drillResult?: {
|
||||||
|
__typename?: "DrillResultGQL";
|
||||||
|
drillTag: string;
|
||||||
|
longestRun: number;
|
||||||
|
longestRunId?: number | null;
|
||||||
|
prRank: number;
|
||||||
|
isPersonalBest: boolean;
|
||||||
|
attemptCount: number;
|
||||||
|
} | null;
|
||||||
playerSummaries: Array<{
|
playerSummaries: Array<{
|
||||||
__typename?: "PlayerSummaryGQL";
|
__typename?: "PlayerSummaryGQL";
|
||||||
clusterId: number;
|
clusterId: number;
|
||||||
@@ -8207,6 +8245,15 @@ export type GetVideoCardQuery = {
|
|||||||
name: string;
|
name: string;
|
||||||
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
tagClasses: Array<{ __typename?: "VideoTagClass"; name: string }>;
|
||||||
}>;
|
}>;
|
||||||
|
drillResult?: {
|
||||||
|
__typename?: "DrillResultGQL";
|
||||||
|
drillTag: string;
|
||||||
|
longestRun: number;
|
||||||
|
longestRunId?: number | null;
|
||||||
|
prRank: number;
|
||||||
|
isPersonalBest: boolean;
|
||||||
|
attemptCount: number;
|
||||||
|
} | null;
|
||||||
playerSummaries: Array<{
|
playerSummaries: Array<{
|
||||||
__typename?: "PlayerSummaryGQL";
|
__typename?: "PlayerSummaryGQL";
|
||||||
clusterId: number;
|
clusterId: number;
|
||||||
@@ -9038,6 +9085,14 @@ export const VideoCardFieldsFragmentDoc = gql`
|
|||||||
name
|
name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
drillResult {
|
||||||
|
drillTag
|
||||||
|
longestRun
|
||||||
|
longestRunId
|
||||||
|
prRank
|
||||||
|
isPersonalBest
|
||||||
|
attemptCount
|
||||||
|
}
|
||||||
playerSummaries {
|
playerSummaries {
|
||||||
...PlayerSummaryFields
|
...PlayerSummaryFields
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,6 +55,14 @@ fragment VideoCardFields on VideoGQL {
|
|||||||
name
|
name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
drillResult {
|
||||||
|
drillTag
|
||||||
|
longestRun
|
||||||
|
longestRunId
|
||||||
|
prRank
|
||||||
|
isPersonalBest
|
||||||
|
attemptCount
|
||||||
|
}
|
||||||
playerSummaries {
|
playerSummaries {
|
||||||
...PlayerSummaryFields
|
...PlayerSummaryFields
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -438,6 +438,7 @@ type VideoGQL {
|
|||||||
reactions: [ReactionGQL!]!
|
reactions: [ReactionGQL!]!
|
||||||
comments: [CommentGQL!]!
|
comments: [CommentGQL!]!
|
||||||
playerSummaries: [PlayerSummaryGQL!]!
|
playerSummaries: [PlayerSummaryGQL!]!
|
||||||
|
drillResult: DrillResultGQL
|
||||||
}
|
}
|
||||||
|
|
||||||
type ShotGQL {
|
type ShotGQL {
|
||||||
@@ -721,6 +722,15 @@ type SpinTypeBreakdownGQL {
|
|||||||
follow: Int!
|
follow: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type DrillResultGQL {
|
||||||
|
drillTag: String!
|
||||||
|
longestRun: Int!
|
||||||
|
longestRunId: Int
|
||||||
|
prRank: Int!
|
||||||
|
isPersonalBest: Boolean!
|
||||||
|
attemptCount: Int!
|
||||||
|
}
|
||||||
|
|
||||||
type DeployedConfigGQL {
|
type DeployedConfigGQL {
|
||||||
allowNewUsers: Boolean!
|
allowNewUsers: Boolean!
|
||||||
firebase: Boolean!
|
firebase: Boolean!
|
||||||
|
|||||||
Reference in New Issue
Block a user