mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Port graphql query for snapshot to hapijs * fix type * Remove graphql from node details. * Use boom for error handling. * Remove unused imports * Remove dead code. Merge types * Fix tests * Remove unused import * Rename types * Go all in on io-ts. Cleanup types * Fix typecheck
19 lines
679 B
TypeScript
19 lines
679 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
import { rootSchema } from '../../common/graphql/root/schema.gql';
|
|
import { sharedSchema } from '../../common/graphql/shared/schema.gql';
|
|
import { logEntriesSchema } from './log_entries/schema.gql';
|
|
import { sourceStatusSchema } from './source_status/schema.gql';
|
|
import { sourcesSchema } from './sources/schema.gql';
|
|
|
|
export const schemas = [
|
|
rootSchema,
|
|
sharedSchema,
|
|
logEntriesSchema,
|
|
sourcesSchema,
|
|
sourceStatusSchema,
|
|
];
|