import * as Types from '../graphql-types'; //============================================================== /* tslint:disable */ /* eslint-disable */ /* prettier-ignore */ // @generated // This file was automatically generated and should not be edited. //============================================================== export type InsertMetricValueMutationVariables = Types.Exact<{ input: Types.CompassInsertMetricValueInput; }>; export type InsertMetricValueMutation = { __typename?: 'Mutation', compass?: { __typename?: 'CompassCatalogMutationApi', insertMetricValue?: { __typename?: 'CompassInsertMetricValuePayload', success: boolean, errors?: Array<{ __typename?: 'MutationError', message?: string | null }> | null } | null } | null }; export const InsertMetricValue = ` mutation InsertMetricValue($input: CompassInsertMetricValueInput!) { compass { insertMetricValue(input: $input) { success errors { message } } } } `;