import { OperationContext } from '@commerce/api/operations' import { Provider, VendureConfig } from '../' export default function getCustomerWishlistOperation({ commerce, }: OperationContext) { async function getCustomerWishlist({ config: cfg, variables, includeProducts, }: { url?: string variables: any config?: Partial includeProducts?: boolean }): Promise { // Not implemented as Vendure does not ship with wishlist functionality at present const config = commerce.getConfig(cfg) return { wishlist: {} } } return getCustomerWishlist }