mirror of
https://github.com/vercel/commerce.git
synced 2025-06-19 13:41:22 +00:00
19 lines
417 B
TypeScript
19 lines
417 B
TypeScript
import { getConfig, VendureConfig } from '../api'
|
|
|
|
async function getCustomerWishlist({
|
|
config,
|
|
variables,
|
|
includeProducts,
|
|
}: {
|
|
url?: string
|
|
variables: any
|
|
config?: VendureConfig
|
|
includeProducts?: boolean
|
|
}): Promise<any> {
|
|
// Not implemented as Vendure does not ship with wishlist functionality at present
|
|
config = getConfig(config)
|
|
return { wishlist: {} }
|
|
}
|
|
|
|
export default getCustomerWishlist
|