commerce/framework/saleor/utils/queries/get-customer-query.ts
2021-06-09 17:02:07 +02:00

17 lines
335 B
TypeScript

export const getCustomerQuery = /* GraphQL */ `
query getCustomer($customerAccessToken: String!) {
customer(customerAccessToken: $customerAccessToken) {
id
firstName
lastName
displayName
email
phone
tags
acceptsMarketing
createdAt
}
}
`
export default getCustomerQuery