// Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ import { type KnowledgeBaseCategory } from '#shared/graphql/types.ts' import { convertToGraphQLId } from '#shared/graphql/utils.ts' import type { DeepPartial } from '#shared/types/utils.ts' export default (): DeepPartial => { return { __typename: 'KnowledgeBaseCategory', id: convertToGraphQLId('KnowledgeBase::Category', 999), parent: null, } }