13 lines
290 B
GraphQL
13 lines
290 B
GraphQL
mutation($id: Int!, $destinationPath: String!, $destinationLocale: String!) {
|
|
pages {
|
|
move(id: $id, destinationPath: $destinationPath, destinationLocale: $destinationLocale) {
|
|
responseResult {
|
|
succeeded
|
|
errorCode
|
|
slug
|
|
message
|
|
}
|
|
}
|
|
}
|
|
}
|