mirror of
https://github.com/vercel/commerce.git
synced 2025-08-18 23:01:23 +00:00
.vscode
assets
components
config
framework
bigcommerce
api
definitions
endpoints
fragments
category-tree.ts
product.ts
operations
utils
index.ts
auth
cart
customer
lib
product
scripts
types
wishlist
.env.template
README.md
commerce.config.json
fetcher.ts
index.tsx
next.config.js
provider.ts
schema.d.ts
schema.graphql
commerce
shopify
swell
vendure
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
.prettierrc
README.md
codegen.json
commerce.config.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
export const categoryTreeItemFragment = /* GraphQL */ `
|
|
fragment categoryTreeItem on CategoryTreeItem {
|
|
entityId
|
|
name
|
|
path
|
|
description
|
|
productCount
|
|
}
|
|
`
|