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

29 lines
429 B
TypeScript

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