4
0
forked from crowetic/commerce

Added op to get the logged in customer

This commit is contained in:
Luis Alvarez
2020-10-21 09:53:19 -05:00
parent 377015ceac
commit 2aae613f1b
5 changed files with 83 additions and 95 deletions

View File

@@ -1653,6 +1653,30 @@ export enum CurrencyCode {
Zwr = 'ZWR',
}
export type GetLoggedInCustomerQueryVariables = Exact<{ [key: string]: never }>
export type GetLoggedInCustomerQuery = { __typename?: 'Query' } & {
customer?: Maybe<
{ __typename?: 'Customer' } & Pick<
Customer,
| 'entityId'
| 'firstName'
| 'lastName'
| 'email'
| 'company'
| 'customerGroupId'
| 'notes'
| 'phone'
| 'addressCount'
| 'attributeCount'
> & {
storeCredit: Array<
{ __typename?: 'Money' } & Pick<Money, 'value' | 'currencyCode'>
>
}
>
}
export type CategoryTreeItemFragment = {
__typename?: 'CategoryTreeItem'
} & Pick<