Add shot direction counts #57

Merged
countablecloud merged 1 commits from shot-direction-counts into master 2024-09-19 12:02:52 -06:00
2 changed files with 15 additions and 0 deletions
Showing only changes of commit 85a2da4b5c - Show all commits

View File

@ -1466,6 +1466,13 @@ export type ShotAnnotationTypeGql = {
name: Scalars["String"]["output"];
};
export type ShotDirectionCountsGql = {
__typename?: "ShotDirectionCountsGQL";
left: Scalars["Int"]["output"];
right: Scalars["Int"]["output"];
straight: Scalars["Int"]["output"];
};
export enum ShotDirectionEnum {
Left = "LEFT",
Right = "RIGHT",
@ -1536,6 +1543,7 @@ export type TargetMetricsGql = {
averageDifficulty?: Maybe<Scalars["Float"]["output"]>;
count: Scalars["Int"]["output"];
makePercentage?: Maybe<Scalars["Float"]["output"]>;
shotDirectionCounts?: Maybe<ShotDirectionCountsGql>;
spinTypeCounts?: Maybe<SpinTypeCountsGql>;
};

View File

@ -54,6 +54,7 @@ type TargetMetricsGQL {
makePercentage: Float
averageDifficulty: Float
spinTypeCounts: SpinTypeCountsGQL
shotDirectionCounts: ShotDirectionCountsGQL
}
type SpinTypeCountsGQL {
@ -63,6 +64,12 @@ type SpinTypeCountsGQL {
unknown: Int!
}
type ShotDirectionCountsGQL {
left: Int!
right: Int!
straight: Int!
}
input AggregateInputGQL {
aggregations: [AggregationInput!]!
filterInput: FilterInput