@hasura/metadata-api
Version:
Hasura GraphQL Engine Metadata API types
9 lines (8 loc) • 379 B
TypeScript
import type { GraphQLName } from './GraphQLName';
import type { RemoteFieldCustomization } from './RemoteFieldCustomization';
import type { RemoteTypeCustomization } from './RemoteTypeCustomization';
export type RemoteSchemaCustomization = {
field_names?: Array<RemoteFieldCustomization>;
root_fields_namespace?: GraphQLName;
type_names?: RemoteTypeCustomization;
};