Remove float feature
This commit is contained in:
parent
9bd0e237ea
commit
a1b524ab9d
@ -352,17 +352,9 @@ export type StreamErrorGql = {
|
|||||||
message: Scalars["String"]["output"];
|
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 = {
|
export type TargetMetricGql = {
|
||||||
__typename?: "TargetMetricGQL";
|
__typename?: "TargetMetricGQL";
|
||||||
count?: Maybe<Scalars["Int"]["output"]>;
|
count?: Maybe<Scalars["Int"]["output"]>;
|
||||||
floatFeature?: Maybe<TargetFloatFeatureGql>;
|
|
||||||
makePercentage?: Maybe<Scalars["Float"]["output"]>;
|
makePercentage?: Maybe<Scalars["Float"]["output"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -488,12 +480,6 @@ export type GetAggregatedShotMetricsQuery = {
|
|||||||
__typename?: "TargetMetricGQL";
|
__typename?: "TargetMetricGQL";
|
||||||
count?: number | null;
|
count?: number | null;
|
||||||
makePercentage?: 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 {
|
targetMetrics {
|
||||||
count
|
count
|
||||||
makePercentage
|
makePercentage
|
||||||
floatFeature {
|
|
||||||
featureName
|
|
||||||
average
|
|
||||||
median
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,11 +7,6 @@ query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
|||||||
targetMetrics {
|
targetMetrics {
|
||||||
count
|
count
|
||||||
makePercentage
|
makePercentage
|
||||||
floatFeature {
|
|
||||||
featureName
|
|
||||||
average
|
|
||||||
median
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,13 +29,6 @@ type BucketGQL {
|
|||||||
type TargetMetricGQL {
|
type TargetMetricGQL {
|
||||||
count: Int
|
count: Int
|
||||||
makePercentage: Float
|
makePercentage: Float
|
||||||
floatFeature: TargetFloatFeatureGQL
|
|
||||||
}
|
|
||||||
|
|
||||||
type TargetFloatFeatureGQL {
|
|
||||||
featureName: String!
|
|
||||||
average: Float
|
|
||||||
median: Float
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input AggregateInputGQL {
|
input AggregateInputGQL {
|
||||||
|
Loading…
Reference in New Issue
Block a user