mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
12 lines
148 B
GraphQL
12 lines
148 B
GraphQL
query GetPageBySlug($slug: String!) {
|
|
page(slug: $slug) {
|
|
id
|
|
title
|
|
slug
|
|
content
|
|
seoTitle
|
|
seoDescription
|
|
created
|
|
}
|
|
}
|