Files
commerce/framework/woocommerce/wp/queries/get-customer-query.ts
2021-09-26 17:09:41 +03:00

13 lines
199 B
TypeScript

export const getCustomerQuery = /* GraphQL */ `
query getCustomer {
customer {
id
firstName
lastName
displayName
email
}
}
`
export default getCustomerQuery