forked from crowetic/commerce
9 lines
214 B
TypeScript
9 lines
214 B
TypeScript
export const getCustomerQuery = /* GraphQL */ `
|
|
query getCustomerId($customerAccessToken: String!) {
|
|
customer(customerAccessToken: $customerAccessToken) {
|
|
id
|
|
}
|
|
}
|
|
`
|
|
export default getCustomerQuery
|