diff --git a/src/index.tsx b/src/index.tsx index 166e1a7..f6137e7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -352,17 +352,9 @@ export type StreamErrorGql = { message: Scalars["String"]["output"]; }; -export type TargetFloatFeatureGql = { - __typename?: "TargetFloatFeatureGQL"; - average?: Maybe; - featureName: Scalars["String"]["output"]; - median?: Maybe; -}; - export type TargetMetricGql = { __typename?: "TargetMetricGQL"; count?: Maybe; - floatFeature?: Maybe; makePercentage?: Maybe; }; @@ -488,12 +480,6 @@ export type GetAggregatedShotMetricsQuery = { __typename?: "TargetMetricGQL"; count?: number | null; makePercentage?: number | null; - floatFeature?: { - __typename?: "TargetFloatFeatureGQL"; - featureName: string; - average?: number | null; - median?: number | null; - } | null; }; }>; }; @@ -800,11 +786,6 @@ export const GetAggregatedShotMetricsDocument = gql` targetMetrics { count makePercentage - floatFeature { - featureName - average - median - } } } } diff --git a/src/operations/aggregate.gql b/src/operations/aggregate.gql index 4de1121..2069efb 100644 --- a/src/operations/aggregate.gql +++ b/src/operations/aggregate.gql @@ -7,11 +7,6 @@ query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) { targetMetrics { count makePercentage - floatFeature { - featureName - average - median - } } } } diff --git a/src/schema.gql b/src/schema.gql index a1bfe9e..017c318 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -29,13 +29,6 @@ type BucketGQL { type TargetMetricGQL { count: Int makePercentage: Float - floatFeature: TargetFloatFeatureGQL -} - -type TargetFloatFeatureGQL { - featureName: String! - average: Float - median: Float } input AggregateInputGQL {