1
0
mirror of https://github.com/vercel/commerce.git synced 2025-08-18 23:01:23 +00:00
Files
.vscode
framework
ordercloud
saleor
shopify
spree
swell
vendure
api
auth
cart
checkout
customer
product
types
utils
fragments
mutations
queries
active-customer-query.ts
get-all-product-paths-query.ts
get-all-products-query.ts
get-cart-query.ts
get-collections-query.ts
get-product-query.ts
search-query.ts
array-to-tree.ts
normalize.ts
wishlist
.env.template
README.md
codegen.json
commerce.config.json
fetcher.ts
index.tsx
next.config.js
provider.ts
schema.d.ts
schema.graphql
packages
site
.editorconfig
.gitignore
.prettierignore
.prettierrc
README.md
license.md
package-copy.json
package-lock.json
package.json
commerce/framework/vendure/utils/queries/active-customer-query.ts
2021-06-02 11:46:38 -03:00

11 lines
168 B
TypeScript

export const activeCustomerQuery = /* GraphQL */ `
query activeCustomer {
activeCustomer {
id
firstName
lastName
emailAddress
}
}
`