zammad/app/frontend/shared/server/apollo/utils/getErrorContext.ts
2026-01-02 15:41:09 +02:00

15 lines
536 B
TypeScript

// Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
import type { ClientErrorContext } from '#shared/types/server/apollo/client.ts'
import type { Operation } from '@apollo/client/core'
export default function getErrorContext(operation: Operation): ClientErrorContext {
const defaultErrorContext: ClientErrorContext = {
logLevel: 'error',
}
const context = operation.getContext()
const error: Partial<ClientErrorContext> = context.error || {}
return Object.assign(defaultErrorContext, error)
}