commerce/framework/vendure/lib/queries/get-collections-query.ts

22 lines
324 B
TypeScript

export const getCollectionsQuery = /* GraphQL */ `
query getCollections {
collections {
items {
id
name
description
slug
productVariants {
totalItems
}
parent {
id
}
children {
id
}
}
}
}
`