1234567891011121314151617181920212223242526 |
- import { type Checklist } from '#shared/graphql/types.ts'
- import { convertToGraphQLId } from '#shared/graphql/utils.ts'
- import type { DeepPartial } from '#shared/types/utils.ts'
- export default (): DeepPartial<Checklist> => {
- return {
- __typename: 'Checklist',
- id: convertToGraphQLId('Checklist', 999),
- name: 'Test checklist',
- complete: 0,
- completed: false,
- incomplete: 1,
- total: 1,
-
-
-
-
-
-
-
-
-
- }
- }
|