mirror of
https://github.com/vercel/commerce.git
synced 2025-07-26 03:31:23 +00:00
feat: create toggle product wishlist
This commit is contained in:
10
framework/vendure/schema.d.ts
vendored
10
framework/vendure/schema.d.ts
vendored
@@ -3198,15 +3198,23 @@ export type ActiveCustomerQuery = { __typename?: 'Query' } & {
|
||||
activeCustomer?: Maybe<
|
||||
{ __typename?: 'Customer' } & Pick<
|
||||
Customer,
|
||||
FavoriteList,
|
||||
'id' | 'firstName' | 'lastName' | 'emailAddress' | 'favorites'
|
||||
>,
|
||||
>
|
||||
}
|
||||
export type FavoriteList = {
|
||||
export type FavoriteList = PaginatedList & {
|
||||
items: [Favorite!]!
|
||||
totalItems: Int!
|
||||
}
|
||||
|
||||
type Favorite = Node & {
|
||||
id: ID!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
product: Product
|
||||
customer: Customer!
|
||||
}
|
||||
|
||||
export type GetAllProductPathsQueryVariables = Exact<{
|
||||
first?: Maybe<Scalars['Int']>
|
||||
|
Reference in New Issue
Block a user