Files
commerce/framework/woocommerce/wp/queries/get-customer-query.ts
2021-09-18 00:52:28 +03:00

13 lines
199 B
TypeScript

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