Add spin type counts
This commit is contained in:
parent
7b48a5b6e2
commit
647ef3049b
@ -1490,6 +1490,14 @@ export type ShotGql = {
|
|||||||
videoId: Scalars["Int"]["output"];
|
videoId: Scalars["Int"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type SpinTypeCountsGql = {
|
||||||
|
__typename?: "SpinTypeCountsGQL";
|
||||||
|
center: Scalars["Int"]["output"];
|
||||||
|
draw: Scalars["Int"]["output"];
|
||||||
|
follow: Scalars["Int"]["output"];
|
||||||
|
unknown: Scalars["Int"]["output"];
|
||||||
|
};
|
||||||
|
|
||||||
export enum SpinTypeEnum {
|
export enum SpinTypeEnum {
|
||||||
Center = "CENTER",
|
Center = "CENTER",
|
||||||
Draw = "DRAW",
|
Draw = "DRAW",
|
||||||
@ -1528,6 +1536,7 @@ export type TargetMetricsGql = {
|
|||||||
averageDifficulty?: Maybe<Scalars["Float"]["output"]>;
|
averageDifficulty?: Maybe<Scalars["Float"]["output"]>;
|
||||||
count: Scalars["Int"]["output"];
|
count: Scalars["Int"]["output"];
|
||||||
makePercentage?: Maybe<Scalars["Float"]["output"]>;
|
makePercentage?: Maybe<Scalars["Float"]["output"]>;
|
||||||
|
spinTypeCounts?: Maybe<SpinTypeCountsGql>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type TimeInterval = {
|
export type TimeInterval = {
|
||||||
|
@ -53,6 +53,14 @@ type TargetMetricsGQL {
|
|||||||
count: Int!
|
count: Int!
|
||||||
makePercentage: Float
|
makePercentage: Float
|
||||||
averageDifficulty: Float
|
averageDifficulty: Float
|
||||||
|
spinTypeCounts: SpinTypeCountsGQL
|
||||||
|
}
|
||||||
|
|
||||||
|
type SpinTypeCountsGQL {
|
||||||
|
follow: Int!
|
||||||
|
draw: Int!
|
||||||
|
center: Int!
|
||||||
|
unknown: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
input AggregateInputGQL {
|
input AggregateInputGQL {
|
||||||
|
Loading…
Reference in New Issue
Block a user