add difficulty field to aggregate shot metrics operation
All checks were successful
Tests / Tests (pull_request) Successful in 22s

This commit is contained in:
2025-11-13 11:10:58 -08:00
parent f14e117416
commit beeba9207c
2 changed files with 3 additions and 0 deletions

View File

@@ -3395,6 +3395,7 @@ export type GetAggregatedShotMetricsQuery = {
__typename?: "TargetMetricsGQL";
count: number;
makePercentage?: number | null;
averageDifficulty?: number | null;
};
}>;
};
@@ -6147,6 +6148,7 @@ export const GetAggregatedShotMetricsDocument = gql`
targetMetrics {
count
makePercentage
averageDifficulty
}
}
}

View File

@@ -7,6 +7,7 @@ query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
targetMetrics {
count
makePercentage
averageDifficulty
}
}
}