currentUserUpdates.mocks.ts 407 B

123456789
  1. import * as Types from '#shared/graphql/types.ts';
  2. import * as Mocks from '#tests/graphql/builders/mocks.ts'
  3. import * as Operations from './currentUserUpdates.api.ts'
  4. import * as ErrorTypes from '#shared/types/error.ts'
  5. export function getCurrentUserUpdatesSubscriptionHandler() {
  6. return Mocks.getGraphQLSubscriptionHandler<Types.CurrentUserUpdatesSubscription>(Operations.CurrentUserUpdatesDocument)
  7. }