From 90d643147e85dfbbbcf08f190d55105a683cbb23 Mon Sep 17 00:00:00 2001 From: Jason Rhodes Date: Mon, 22 Jul 2019 07:50:45 -0400 Subject: [PATCH] Uses core FieldType instead of custom type --- .../legacy/plugins/infra/public/graphql/types.ts | 14 ++++---------- .../pages/infrastructure/snapshot/toolbar.tsx | 2 +- .../legacy/plugins/infra/server/graphql/types.ts | 13 +++---------- 3 files changed, 8 insertions(+), 21 deletions(-) diff --git a/x-pack/legacy/plugins/infra/public/graphql/types.ts b/x-pack/legacy/plugins/infra/public/graphql/types.ts index 5f085f67e73fa..fe300de0aa76a 100644 --- a/x-pack/legacy/plugins/infra/public/graphql/types.ts +++ b/x-pack/legacy/plugins/infra/public/graphql/types.ts @@ -8,6 +8,8 @@ // Types // ==================================================== +import { FieldType } from 'ui/index_patterns'; + export interface Query { /** Get an infrastructure data source by id.The resolution order for the source configuration attributes is as followswith the first defined value winning:1. The attributes of the saved object with the given 'id'.2. The attributes defined in the static Kibana configuration key'xpack.infra.sources.default'.3. The hard-coded default values.As a consequence, querying a source that doesn't exist doesn't error out,but returns the configured or hardcoded defaults. */ source: InfraSource; @@ -122,16 +124,8 @@ export interface InfraSourceStatus { indexFields: InfraIndexField[]; } /** A descriptor of a field in an index */ -export interface InfraIndexField { - /** The name of the field */ - name: string; - /** The type of the field's values as recognized by Kibana */ - type: string; - /** Whether the field's values can be efficiently searched for */ - searchable: boolean; - /** Whether the field's values can be aggregated */ - aggregatable: boolean; -} +export interface InfraIndexField extends FieldType {} + /** One metadata entry for a node. */ export interface InfraNodeMetadata { id: string; diff --git a/x-pack/legacy/plugins/infra/public/pages/infrastructure/snapshot/toolbar.tsx b/x-pack/legacy/plugins/infra/public/pages/infrastructure/snapshot/toolbar.tsx index dd8f9d4098b77..e70e79a18a66a 100644 --- a/x-pack/legacy/plugins/infra/public/pages/infrastructure/snapshot/toolbar.tsx +++ b/x-pack/legacy/plugins/infra/public/pages/infrastructure/snapshot/toolbar.tsx @@ -106,7 +106,7 @@ export const SnapshotToolbar = injectI18n(({ intl }) => ( groupBy={groupBy} nodeType={nodeType} onChange={changeGroupBy} - fields={derivedIndexPattern.fields as any} + fields={derivedIndexPattern.fields} onChangeCustomOptions={changeCustomOptions} customOptions={customOptions} /> diff --git a/x-pack/legacy/plugins/infra/server/graphql/types.ts b/x-pack/legacy/plugins/infra/server/graphql/types.ts index d161dfac59f31..6624de544ca66 100644 --- a/x-pack/legacy/plugins/infra/server/graphql/types.ts +++ b/x-pack/legacy/plugins/infra/server/graphql/types.ts @@ -1,6 +1,7 @@ /* tslint:disable */ import { InfraContext } from '../lib/infra_types'; import { GraphQLResolveInfo } from 'graphql'; +import { FieldType } from 'ui/index_patterns'; export type Resolver = ( parent: Parent, @@ -150,16 +151,8 @@ export interface InfraSourceStatus { indexFields: InfraIndexField[]; } /** A descriptor of a field in an index */ -export interface InfraIndexField { - /** The name of the field */ - name: string; - /** The type of the field's values as recognized by Kibana */ - type: string; - /** Whether the field's values can be efficiently searched for */ - searchable: boolean; - /** Whether the field's values can be aggregated */ - aggregatable: boolean; -} +export interface InfraIndexField extends FieldType {} + /** One metadata entry for a node. */ export interface InfraNodeMetadata { id: string;