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

18 lines
240 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
2022-12-29 02:47:45 +00:00
slug
2022-12-28 18:46:51 +00:00
block
2022-12-29 02:47:45 +00:00
parent {
data {
id
}
}
2022-12-28 18:46:51 +00:00
}
}
}
}