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 SynchronizeLinkAssociationsMutationVariables = Types.Exact<{ input?: Types.InputMaybe; }>; export type SynchronizeLinkAssociationsMutation = { __typename?: 'Mutation', compass?: { __typename?: 'CompassCatalogMutationApi', synchronizeLinkAssociations?: { __typename?: 'CompassSynchronizeLinkAssociationsPayload', success: boolean, errors?: Array<{ __typename?: 'MutationError', message?: string | null }> | null } | null } | null }; export const SynchronizeLinkAssociations = ` mutation synchronizeLinkAssociations($input: CompassSynchronizeLinkAssociationsInput) { compass { synchronizeLinkAssociations(input: $input) { success errors { message } } } } `;