commerce/lib/saleor/queries/GetCollections.graphql
2023-05-01 19:29:46 +02:00

12 lines
161 B
GraphQL

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