2026-01-02 13:41:09 +00:00
|
|
|
// Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
2025-02-07 06:33:33 +00:00
|
|
|
|
2026-03-18 14:00:24 +00:00
|
|
|
import registerIncomingQueryMerge from '#shared/server/apollo/cache/utils/registerIncomingQueryMerge.ts'
|
2025-02-07 06:33:33 +00:00
|
|
|
|
|
|
|
|
import type { InMemoryCacheConfig } from '@apollo/client/cache/inmemory/types'
|
|
|
|
|
|
2025-06-11 17:45:28 +00:00
|
|
|
export default function register(config: InMemoryCacheConfig): InMemoryCacheConfig {
|
2026-03-18 14:00:24 +00:00
|
|
|
return registerIncomingQueryMerge(config, 'ticketOverviews')
|
2025-02-07 06:33:33 +00:00
|
|
|
}
|