mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 06:01:21 +00:00
12 lines
183 B
TypeScript
12 lines
183 B
TypeScript
/* GraphQL */
|
|
const getCustomerQuery = `query ($id: String!) {
|
|
customer(id: $id) {
|
|
id
|
|
firstName
|
|
lastName
|
|
email
|
|
}
|
|
}`
|
|
|
|
export default getCustomerQuery
|