import { OperationContext } from '@commerce/api/operations' import { Provider, CommercetoolsConfig } from '@framework/api' export default function getCustomerWishlistOperation({ commerce, }: OperationContext) { async function getCustomerWishlist({ config: cfg, variables, includeProducts, }: { url?: string variables: any config?: Partial includeProducts?: boolean }): Promise { // Not implemented yet const config = commerce.getConfig(cfg) return { wishlist: {} } } return getCustomerWishlist }