mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
11 lines
179 B
GraphQL
11 lines
179 B
GraphQL
query GetCollectionBySlug($slug: String!) {
|
|
collection(channel: "default-channel", slug: $slug) {
|
|
id
|
|
name
|
|
slug
|
|
description
|
|
seoTitle
|
|
seoDescription
|
|
}
|
|
}
|