schlechtenburg/packages/example-site/queries/createPage.gql

15 lines
204 B
Plaintext
Raw Normal View History

2022-12-28 18:46:51 +00:00
mutation createPage($data: PageInput!) {
createPage(data: $data) {
data {
id
attributes {
title
path
block
public
publishedAt
}
}
}
}