commerce/framework/kibocommerce/api/queries/get-customer-account-query.ts
2021-08-26 15:53:34 +05:30

12 lines
210 B
TypeScript

export const getCustomerAccountQuery = `
query getUser {
customerAccount:getCurrentAccount {
id
firstName
lastName
emailAddress
userName
isAnonymous
}
}
`