mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 07:56:59 +00:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
export const viewerQuery = /* GraphQL */ `
|
|
query getCustomerId($customerAccessToken: String!) {
|
|
customer(customerAccessToken: $customerAccessToken) {
|
|
id
|
|
}
|
|
}
|
|
`
|
|
export default viewerQuery
|