ChecklistItem.ts 494 B

123456789101112131415
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. import { type ChecklistItem } from '#shared/graphql/types.ts'
  3. import { convertToGraphQLId } from '#shared/graphql/utils.ts'
  4. import type { DeepPartial } from '#shared/types/utils.ts'
  5. export default (): DeepPartial<ChecklistItem> => {
  6. return {
  7. __typename: 'ChecklistItem',
  8. id: convertToGraphQLId('Checklist::Item', 999),
  9. text: 'Test checklist item',
  10. checked: false,
  11. ticketReference: null,
  12. }
  13. }