commerce/framework/commercetools/utils/queries/get-customer-query.ts
2021-06-30 12:47:15 -03:00

12 lines
183 B
TypeScript

/* GraphQL */
const getCustomerQuery = `query ($id: String!) {
customer(id: $id) {
id
firstName
lastName
email
}
}`
export default getCustomerQuery