wikijs-fork/client/graph/common/common-pages-mutation-move.gql

13 lines
290 B
Plaintext
Raw Normal View History

2019-10-13 23:59:50 +00:00
mutation($id: Int!, $destinationPath: String!, $destinationLocale: String!) {
pages {
move(id: $id, destinationPath: $destinationPath, destinationLocale: $destinationLocale) {
responseResult {
succeeded
errorCode
slug
message
}
}
}
}