commerce/lib/saleor/queries/GetCollections.graphql
Michal Miszczyszyn a8e49ee3f4
Saleor
2023-05-02 00:32:20 +02:00

15 lines
221 B
GraphQL

query GetCollections {
collections(channel: "default-channel", first: 100) {
edges {
node {
id
name
slug
description
seoTitle
seoDescription
}
}
}
}