mirror of
https://github.com/vercel/commerce.git
synced 2025-09-03 06:20:15 +00:00
.github
.vscode
app
components
contexts
fonts
hooks
lib
shopify
fragments
mutations
queries
cart.ts
collection.ts
customer.ts
menu.ts
metaobject.ts
node.ts
order.ts
orders.ts
page.ts
product.ts
auth.ts
index.ts
types.ts
constants.ts
styles.ts
type-guards.ts
utils.ts
public
.env.example
.eslintrc.js
.gitignore
.nvmrc
.prettierignore
README.md
license.md
middleware.ts
next.config.js
package.json
pnpm-lock.yaml
postcss.config.js
prettier.config.js
tailwind.config.js
tsconfig.json
15 lines
261 B
TypeScript
15 lines
261 B
TypeScript
//https://shopify.dev/docs/api/customer/2024-01/queries/customer
|
|
export const getCustomerQuery = /* GraphQL */ `
|
|
query customer {
|
|
customer {
|
|
id
|
|
emailAddress {
|
|
emailAddress
|
|
}
|
|
firstName
|
|
lastName
|
|
tags
|
|
}
|
|
}
|
|
`;
|