Add filtering support to aggregate gql

This commit is contained in:
2024-03-09 10:21:43 -07:00
parent 19628736c1
commit fd30ae04bf
3 changed files with 115 additions and 103 deletions

View File

@@ -0,0 +1,17 @@
query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
getAggregatedShotMetrics(aggregateInput: $aggregateInput) {
featureBuckets {
rangeKey
lowerBound
}
targetMetrics {
count
makePercentage
floatFeature {
featureName
average
median
}
}
}
}