Skip to main content

MOCKS

Admin Docs


Variable: MOCKS

const MOCKS: ({ request: { query: DocumentNode; variables: { actionItemCategoryId: undefined; isDisabled: undefined; name: undefined; orderBy: string; organizationId: string; where: { is_disabled: undefined; name_contains: string; }; }; }; result: { data: { actionItemCategoriesByOrganization: object[]; createActionItemCategory: undefined; updateActionItemCategory: undefined; }; }; } | { request: { query: DocumentNode; variables: { actionItemCategoryId: undefined; isDisabled: undefined; name: undefined; orderBy: string; organizationId: string; where: { is_disabled: boolean; name_contains: string; }; }; }; result: { data: { actionItemCategoriesByOrganization: object[]; createActionItemCategory: undefined; updateActionItemCategory: undefined; }; }; } | { request: { query: DocumentNode; variables: { actionItemCategoryId: undefined; isDisabled: boolean; name: string; orderBy: undefined; organizationId: string; where: undefined; }; }; result: { data: { actionItemCategoriesByOrganization: undefined; createActionItemCategory: { _id: string; }; updateActionItemCategory: undefined; }; }; } | { request: { query: DocumentNode; variables: { actionItemCategoryId: string; isDisabled: boolean; name: string; orderBy: undefined; organizationId: undefined; where: undefined; }; }; result: { data: { actionItemCategoriesByOrganization: undefined; createActionItemCategory: undefined; updateActionItemCategory: { _id: string; }; }; }; })[]

Defined in: src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:8