1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-12 12:47:50 +00:00

9 lines
214 B
TypeScript

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