feat: toggle wishlist

This commit is contained in:
Quangnhankie
2021-10-10 22:06:14 +07:00
parent 1126030abc
commit 391bba5d31
3 changed files with 18 additions and 8 deletions

View File

@@ -3198,10 +3198,15 @@ export type ActiveCustomerQuery = { __typename?: 'Query' } & {
activeCustomer?: Maybe<
{ __typename?: 'Customer' } & Pick<
Customer,
'id' | 'firstName' | 'lastName' | 'emailAddress'
>
'id' | 'firstName' | 'lastName' | 'emailAddress' | 'favorites'
>,
>
}
export type FavoriteList = {
items: [Favorite!]!
totalItems: Int!
}
export type GetAllProductPathsQueryVariables = Exact<{
first?: Maybe<Scalars['Int']>