OnlineNotificationConnection.ts 435 B

1234567891011121314
  1. // Copyright (C) 2012-2025 Zammad Foundation, https://zammad-foundation.org/
  2. import { type OnlineNotificationConnection } from '#shared/graphql/types.ts'
  3. import type { DeepPartial } from '#shared/types/utils.ts'
  4. export default (): DeepPartial<OnlineNotificationConnection> => ({
  5. __typename: 'OnlineNotificationConnection',
  6. edges: [],
  7. pageInfo: {
  8. __typename: 'PageInfo',
  9. endCursor: null,
  10. hasNextPage: false,
  11. },
  12. })