Remove float feature

This commit is contained in:
Ivan Malison 2024-03-28 05:02:44 +00:00
parent 9bd0e237ea
commit a1b524ab9d
3 changed files with 0 additions and 31 deletions

View File

@ -352,17 +352,9 @@ export type StreamErrorGql = {
message: Scalars["String"]["output"];
};
export type TargetFloatFeatureGql = {
__typename?: "TargetFloatFeatureGQL";
average?: Maybe<Scalars["Float"]["output"]>;
featureName: Scalars["String"]["output"];
median?: Maybe<Scalars["Float"]["output"]>;
};
export type TargetMetricGql = {
__typename?: "TargetMetricGQL";
count?: Maybe<Scalars["Int"]["output"]>;
floatFeature?: Maybe<TargetFloatFeatureGql>;
makePercentage?: Maybe<Scalars["Float"]["output"]>;
};
@ -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
}
}
}
}

View File

@ -7,11 +7,6 @@ query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
targetMetrics {
count
makePercentage
floatFeature {
featureName
average
median
}
}
}
}

View File

@ -29,13 +29,6 @@ type BucketGQL {
type TargetMetricGQL {
count: Int
makePercentage: Float
floatFeature: TargetFloatFeatureGQL
}
type TargetFloatFeatureGQL {
featureName: String!
average: Float
median: Float
}
input AggregateInputGQL {