import type { LocalConfig, Provider } from '..' import type { OperationContext } from '@commerce/api/operations' import { GetAllProductPathsOperation } from '../../types/product' export default function getAllProductPathsOperation({ commerce, }: OperationContext) { async function getAllProductPaths({ query, config, variables, }: { query?: string config?: LocalConfig variables?: T['variables'] } = {}): Promise { return { products: [ { path: `/hank`, }, ], } } return getAllProductPaths }